/* Scrollbar width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track (background) */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }
  
  /* Handle (thumb) */
  ::-webkit-scrollbar-thumb {
    background: #1e5493;
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #326da8;
  }
  
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #78afe5;
  }
  
  .navbar {
    background-color: #326da8;
    color: white;
    padding: 15px;
    width: 80%;
    margin: 20px auto;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
  }
  
  .logo-container img {
    width: 60px;
    height: 40px;
    margin-right: 10px;
  }
  
  .logo-container h2 {
    margin: 0;
    font-size: 20px;
  }
  
  .navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    font-family: Argentum Sans;
    font-weight: 400;
  }
  
  .navbar ul li {
    margin: 0 15px;
  }
  
  .navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
  }
  
  .navbar ul li a:hover {
    text-decoration: none;
  }
  
  /* Media Query for Navbar */
  @media screen and (max-width: 768px) {
    .navbar {
      flex-direction: column; /* Stack the navbar items vertically */
      align-items: center; /* Center align the items */
      padding: 15px 10px;
    }
  
    .navbar ul {
      flex-direction: column; /* Stack menu items vertically */
      align-items: center; /* Center the list items */
      width: 100%; /* Full width */
      padding: 0;
    }
  
    .navbar ul li {
      margin: 10px 0; /* Add space between menu items */
    }
  
    .navbar ul li a {
      padding: 10px 15px;
      font-size: 16px; /* Adjust font size for smaller screens */
    }
  }
  
  .about-section {
    text-align: center;
    width: 80%;
    margin: 30px auto;
    padding: 20px;
    background: #78afe5;
    border-radius: 10px;
  }
  
  .about-section h1 {
    font-size: 36px;
    margin-bottom: 35px;
    color: white;
    font-weight: bolder;
    font-family: "Anton", serif;
    font-weight: 400;
  }
  
  .about-section h2 {
    font-size: 24px;
    color: #1e5493;
    margin: 5px 0;
    font-weight: bold;
    font-family: Argentum Sans;
    font-weight: 600;
  }
  
  .about-section p {
    font-size: 22px;
    color: #1e5493;
    line-height: 1.4;
    font-family: Argentum Sans;
    font-weight: 400;
  }
  
  .button-container {
    text-align: center;
    margin-top: 20px;
  }
  
  .btn {
    background-color: white;
    color: #326da8;
    font-weight: bold;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin: 0 10px;
    margin-bottom: 40px;
  }
  
  .btn:hover {
    background-color: #326da8;
    color: white;
  }
  
  .below-buttons-img {
    display: block;
    margin: 20px auto 0 auto; /* Center the image and add spacing */
    max-width: 100%; /* Ensure the image is responsive */
    height: auto;
    border-radius: 10px; /* Optional: Rounded corners */
  }
  /* Form and Image Container */
  .form-and-image-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    width: 80%;
    margin: 30px auto;
  }
  
  /* Form Section */
  /* Form and Image Container */
  .form-and-image-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Ensures both items stretch to the same height */
    gap: 20px;
    width: 80%;
    margin: 30px auto;
  }
  
  /* Form Section */
  .form-container {
    flex: 1;
    background: #78afe5;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    font-family: Argentum Sans, sans-serif;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content vertically */
  }
  
  /* Image Section */
  .image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .image-container img {
    width: 100%;
    height: 80%; /* Matches the height of the form */
    object-fit: cover; /* Ensures the image scales proportionally */
    border-radius: 10px;
  }
  
  @media (max-width: 768px) {
    .form-and-image-container {
      flex-direction: column;
    }
  
    .image-container img {
      max-width: 100%;
    }
  }
  
  /* Form Group Styling */
  .form-group {
    margin-bottom: 20px;
  }
  .form-group ::placeholder {
    color: white;
  }
  
  /* Labels */
  .form-group label {
    font-size: 16px;
    font-weight: bold;
    color: white;
    display: block;
    margin-bottom: 5px;
  }
  
  /* Input Fields */
  .form-group input:not([type="checkbox"]),
  .form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid white;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #78afe5;
    color: #1e5493;
  }
  
  .form-group input:not([type="checkbox"]):focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #326da8;
    box-shadow: 0 0 5px #326da8;
    color: #1e5493;
  }
  
  /* Checkbox Styling */
  .form-group.checkbox-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .checkbox-group label {
    margin: 0;
    cursor: pointer;
  }
  
  /* Submit Button */
  .submit-btn {
    background-color: white;
    color: #326da8;
    font-weight: bold;
    padding: 12px 40px;
    font-size: 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    display: block;
    margin: 20px auto 0 auto;
    width: fit-content;
  }
  
  .submit-btn:hover {
    background-color: #326da8;
    color: white;
  }
  
  /* Responsive Form */
  @media screen and (max-width: 768px) {
    .form-container {
      width: 90%; /* Make the form occupy more width on smaller screens */
      padding: 15px; /* Adjust padding */
    }
  
    .form-group input:not([type="checkbox"]),
    .form-group textarea {
      width: 100%; /* Ensure input and textarea take full width */
      font-size: 14px; /* Adjust font size for smaller screens */
    }
  
    .form-group textarea {
      height: 150px; /* Reduce height of the message textarea */
    }
  
    .form-group label {
      font-size: 14px; /* Adjust label font size */
    }
  
    .submit-btn {
      font-size: 14px; /* Adjust button font size */
      padding: 10px 30px; /* Adjust padding for the button */
    }
  
    .form-container img {
      width: 100%; /* Make the image responsive */
      height: auto; /* Maintain aspect ratio */
    }
  }
  
    
@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
    width: 90%;
    padding: 10px;
  }

  .text-section,
  .head_text {
    width: 100%;
    padding: 10px;
    font-size: 18px;
  }

  .image-section,
  .head_image {
    width: 100%;
    padding: 10px;
  }

  .image-section img,
  .h_img {
    width: 100%;
    border-radius: 10px;
  }

  .center_imgs {
    flex-direction: column;
    align-items: center;
    width: 90%;
    padding: 10px;
  }

  .cntr_img,
  .cntr_img_1 {
    width: 90%;
    margin: 10px 0;
  }

  .about-section {
    width: 90%;
    padding: 10px;
  }

  .about-section h1 {
    font-size: 28px;
  }

  .about-section p {
    font-size: 18px;
  }

  .button-container {
    flex-direction: column;
    align-items: center;
  }

  .button-container .btn {
    width: 100%;
    margin: 10px 0;
  }

  .below-buttons-img {
    width: 100%;
    margin-top: 20px;
  }
}
    
    
    
    
    
    
    
    

  /*About Page*/

  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 20px auto;
    background: #78afe5;
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  }
  
  .text-section {
    font-size: 20px;
    width: 70%;
    padding: 0 20px;
    color: #1e5493;
    font-family: Argentum Sans;
    font-weight: 400;
    line-height: 1.4;
  }
  
  .text-section h2 {
    font-family: "Anton", serif;
    font-weight: 400;
    color: white;
  }
  
  .image-section {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-style: 5px solid #326da8
  }
  
  .image-section img {
    width: 100%;
    border-radius: 10px;
    border: 5px solid #1e5493;
  }




  /*Contact Page*/

  .contactform-container {
    width: 50%;
    margin: 30px auto;
    background: #78afe5;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    margin-bottom: 100px;
    font-family: Argentum Sans;
    font-weight: 400;
  }

  @media (max-width: 768px) {
    .form-and-image-container {
      flex-direction: column;
    }
  }



  /*Projects Page*/

  .projects-section {
    text-align: center;
    width: 80%;
    margin: 30px auto;
    padding: 20px;
    background: #78afe5;
    border-radius: 10px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  }
  
  .projects-section h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: white;
    font-weight: bolder;
    font-family: "Anton", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .projects-section p {
    font-size: 22px;
    color: #1e5493;
    line-height: 1.4;
    font-family: Argentum Sans;
    font-weight: 400;
  }

  .project-head h1 {
    font-family: "Anton", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 36px;
    margin-bottom: 10px;
    color: white;
    text-align: center;
  }

  .text-section a {
    text-decoration: none;
  }
  
  .text-section p {
    font-family: Argentum Sans;
    font-weight: 400;
    line-height: 1.4;
  }


@media (max-width: 768px) {
  .container {
    flex-direction: column;
    width: 90%;
    padding: 10px;
  }

  .text-section {
    width: 100%;
    padding: 10px 0;
    font-size: 18px;
    order: 1; /* Ensure text-section appears first */
  }

  .image-section {
    width: 100%;
    padding: 10px 0;
    order: 2; /* Ensure image-section appears second */
  }

  .image-section img {
    width: 100%;
  }
}




  /*Project 1*/

  .head_image {
    width: 40%;
    padding: 20px;
  }
  
  .h_img {
    width: 100%;
    border-radius: 25px;
    border: 5px solid #1e5493;
  }
  
  .head_text {
    width: 60%;
    padding: 0 20px;
    font-size: 22px;
    color: #1e5493;
    line-height: 1.4;
    font-family: Argentum Sans;
    font-weight: 400;
  }
  
  .cfsi {
    width: 80%;
    margin: auto;
    line-height: 1.5;
    font-size: 22px;
    color: #1e5493;
    line-height: 1.4;
    font-family: Argentum Sans;
    font-weight: 400;
  }
  
  .center_imgs {
    display: flex;
    width: 80%;
    justify-content: space-between;
    margin: 20px auto;
    align-items: center;
    padding: 20px;
  }
  
  .cntr_img {
    width: 50%;
    border-radius: 25px;
    margin: 10px;
    border: 5px solid #1e5493;
  }
  
  .btm_sec {
    width: 80%;
    margin: auto;
    line-height: 1.5;
    font-size: 22px;
    color: #1e5493;
    line-height: 1.4;
    font-family: Argentum Sans;
    font-weight: 400;
    padding: 20px;
  }
  
  .pro_head{
  font-size: 36px;
  margin-bottom: 10px;
  color: white;
  font-weight: normal;
  font-family: "Anton", serif;
  font-style: normal;
  text-align: center;
  }  
  
  @media (max-width: 768px) {
  .container {
    flex-direction: column;
    width: 90%;
    padding: 10px;
  }

  .head_image,
  .head_text {
    width: 100%;
    padding: 10px 0;
  }

  .head_text {
    font-size: 18px;
  }

  .h_img {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .center_imgs {
    flex-direction: column;
    width: 90%;
    padding: 10px;
  }

  .cntr_img {
    width: 100%;
    margin: 10px 0;
  }
}
  
  
  

  /*Project 2*/

  .cntr_img_1 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    border-radius: 25px;
    border: 5px solid #1e5493;
  }


    @media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }

  .head_image {
    width: 100%;
    padding: 10px 0;
  }

  .h_img {
    width: 100%;
  }

  .head_text {
    width: 100%;
    padding: 10px 0;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .center_imgs {
    flex-direction: column;
    width: 90%;
    padding: 10px;
  }

  .cntr_img,
  .cntr_img_1 {
    width: 100%;
    margin: 10px 0;
  }
}






  /*Project 3*/

  .head_text a {
    text-decoration: none;
  }

    @media (max-width: 768px) {
  .container {
    flex-direction: column;
    width: 90%;
    padding: 10px;
  }

  .head_image,
  .head_text {
    width: 100%;
    padding: 10px 0;
  }

  .head_text {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .center_imgs {
    flex-direction: column;
    width: 90%;
    padding: 10px;
  }

  .cntr_img,
  .cntr_img_1 {
    width: 100%;
    margin: 10px 0;
  }
}


  
  
  /*Privacy Policy*/

  /*Terms of Service*/

  /*Cookie Settings*/






  .footer {
    background-color: #326da8;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 30px;
  }
  
  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .footer-logo img {
    width: 50px;
    height: 30px;
  }
  
  .footer-logo h2 {
    margin: 10px 0 0;
    font-size: 20px;
  }
  
  .footer-links {
    margin-top: 10px;
    font-family: Argentum Sans;
    font-weight: 400;
  }
  
  .footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
  }
  
  .footer-links a:hover {
    text-decoration: none;
  }
  
  .divider {
    width: 80%;
    height: 1px;
    background-color: white;
    margin: 50px auto 10px auto;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: auto;
    font-size: 14px;
  }
  
  .footer-bottom a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
  }
  
  .footer-bottom a:hover {
    text-decoration: underline;
  }
  
  
  @media screen and (max-width: 768px) {
  .footer {
    padding: 20px;
  }

  .footer-logo {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo img {
    width: 40px;
    height: 25px;
  }

  .footer-logo h2 {
    font-size: 18px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }

  .footer-links a {
    margin: 10px 0;
    font-size: 14px;
  }

  .divider {
    width: 90%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .footer-bottom p {
    margin-bottom: 10px;
  }

  .footer-bottom a {
    margin: 5px;
    font-size: 12px;
  }
}
