
/* footer start */
body{
  margin: 0;
}
.active{
    text-decoration: none;
}
.icon {
    height: 50px;
    align-self: center;
    padding: 10px;
  }
  
  .info_section {
    background-color: #094574;
    color: #ffffff;
    padding: 45px 0 15px 0;
  }
  
  .info_section h4 {
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .info_section .info_col {
    margin: 25px;
    width:300px;
  }
  
  .info_section .info_contact .contact_link_box {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  
  .info_section .info_contact .contact_link_box a {
    margin: 5px 0;
    color: #ffffff;
  }
  
  .info_section .info_contact .contact_link_box a i {
    margin-right: 5px;
  }
  
  .info_section .info_contact .contact_link_box a:hover {
    color: #0a97b0;
  }
  
  .info_section .info_social {
   
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .row {
    display: flex;
  
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  
  .info_section .info_social a {
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #ffffff;
    border-radius: 100%;
    margin-right: 10px;
    font-size: 24px;
  }
  
  .info_section .info_social a:hover {
    color: #0a97b0;
  }
  
  .info_section .info_links {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  .info_section .info_links a {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
    color: #ffffff;
  }
  
  .info_section .info_links a:hover {
    color: #0a97b0;
  }
  
  .info_section form input {
    border: none;
    border-bottom: 1px solid #ffffff;
    background-color: transparent;
    width: 100%;
    height: 45px;
    color: #ffffff;
    outline: none;
  }
  
  .info_section form input::-webkit-input-placeholder {
    color: #ffffff;
  }
  
  .info_section form input:-ms-input-placeholder {
    color: #ffffff;
  }
  
  .info_section form input::-ms-input-placeholder {
    color: #ffffff;
  }
  
  .info_section form input::placeholder {
    color: #ffffff;
  }
  
  .info_section form button {
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 10px 55px;
    background-color: #0a97b0;
    color: #ffffff;
    border-radius: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: none;
    margin-top: 15px;
  }
  
  .info_section form button:hover {
    background-color: #065968;
  }
  footer {
    background-color: #094574;
  }
  #icons {
    display: flex;
  }
  
  .icon-contaner {
    width: 500px;
    padding: 10px;
  }
  .icon-heading,
  .icon-containt {
    color: white;
  }
  
  /* Define styles for the copyright section */
  #copyright {
    display: flex;
    justify-content: space-between; /* Distribute content horizontally */
    align-items: center; /* Align content vertically */
    background-color: #fff;
    padding: 1rem; /* Add some padding for aesthetics */
  }
  
  /* Target both .copyright and .gateway elements for consistent styling */
  .copyright,
  .gateway {
    font-size: 0.8rem; /* Adjust font size for readability */
    color: #333; /* Use a darker color for better contrast */
  }
  
  /* Style the gateway image container */
  .gateway-img {
    width: auto; /* Allow image to adjust to its natural width */
    height: auto; /* Allow image to adjust to its natural height */
    margin-left: 1rem; /* Adjust margin based on content */
  }
  
  .gateway-img img {
    display: block; /* Ensure image fills available space */
    max-width: 100%; /* Prevent image from overflowing container */
  }
   .info_section {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  
  .container {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  
  .row {
    margin: 0;
    padding: 0;
  }
  
   /* Floating Accessibility Button */
    .accessibility-btn {
        position: fixed;
        bottom: 50px;
        right: 50px;
        width: 60px;
        height: 60px;
        background-color: #007BFF;
        color: white;
        border: none;
        border-radius: 50%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        font-size: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menu-options {
        position: fixed;
        bottom: 120px;
        right: 50px;
        display: none;
        flex-direction: column;
        gap: 10px;
    }

    .menu-option {
        background-color: #007BFF;
        color: white;
        border: none;
        border-radius: 20px;
        padding: 10px 20px;
        cursor: pointer;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .menu-option:hover {
        background-color: #0056b3;
    }

    /* Reading Mode */
    .reading-mode-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(245, 245, 220);
        pointer-events: none;
        z-index: 1000;
        display: none;
    }

    /* Feedback Dialog */
    .feedback-dialog {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        padding: 20px;
        width: 300px;
        display: none;
    }

    .feedback-dialog textarea {
        width: 90%;
        height: 100px;
        margin-bottom: 10px;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        resize: none;
    }

    .feedback-dialog button {
        background-color: #007BFF;
        color: white;
        border: none;
        border-radius: 5px;
        padding: 10px;
        width: 100%;
        cursor: pointer;
    }

    .feedback-dialog button:hover {
        background-color: #0056b3;
    }

    .feedback-message {
        margin-top: 10px;
        color: green;
        font-size: 14px;
        display: none;
    }

    /* Dark Mode */
    .dark-mode {
        background-color: #333;
        color: #fff;
    }
  
  #element749{
       background-color: red;
    width: 14%;
    float: inline-end;   
  }
   .custom-calculator {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 40%;
      background-color: #2e2f44;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

      z-index: 1000;
  }

  .custom-calculator-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
  }

  .custom-calculator-header h3 {
          color: white;
    padding: 5px;
    margin: 5px;
      font-size: 18px;
  }

  .custom-close-btn {
      background: none;
      border: none;
      font-size: 18px;
      cursor: pointer;
      background-color: red;
      border-radius: 5px;
      padding: 5px;
      margin: 5px;
  }

  .custom-draggable {
      touch-action: none;
      /* Ensures touch drag works */
  }
  
  /* Calculator Container */
  .calculator {
      display: none;
      background: linear-gradient(135deg, #3a3b50, #484a63);
      border-radius: 20px;
      box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
      padding: 20px;
      width: 30%;
      max-width: 500px;
      display: flex;
      flex-direction: column;
      gap: 15px;
  }

  /* Display Input Field */
  #display {
      width: 90%;
      height: 80px;
      border: none;
      border-radius: 10px;
      padding: 15px;
      font-size: 2rem;
      text-align: right;
      background: #2e2f44;
      color: #fff;
      outline: none;
  }

  /* Button Grid */
  .buttons {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
      padding: 10px;
  }

  /* Button Styles */
  .btn375 {
      background: linear-gradient(135deg, #4e54c8, #8f94fb);
      border: none;
      border-radius: 10px;
      color: #fff;
      font-size: 1.5rem;
      font-weight: bold;
      cursor: pointer;
      padding: 20px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  /* Operator Button Styling */
  .button537 {
      background: linear-gradient(135deg, #4e54c8, #8f94fb);
      border: none;
      border-radius: 10px;
      color: #fff;
      font-size: 1.5rem;
      font-weight: bold;
      cursor: pointer;
      padding: 20px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  /* Equal Button Styling */
  .btn345 {
      grid-column: span 4;
      font-size: 2rem;
      background: linear-gradient(135deg, #42e695, #3bb2b8);
      width: 100%;
  }

  .button537:hover {
      transform: scale(1.05);
      box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.3);
  }

  .button537:active {
      transform: scale(0.95);
  }

  /* Hover and Active Effects */
  .btn375:hover {
      transform: scale(1.05);
      box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.3);
  }

  .btn375:active {
      transform: scale(0.95);
  }

  .btn345 {
      font-size: 1.2rem;
  }

  .calculator {


      border: 1px solid #ccc;
      padding: 10px;
      background-color: #fff;
      z-index: 1000;
      width: 90%;
      right: 0;
      margin: auto;
  }
  @media only screen and (max-width: 480px) {
        .custom-calculator {
      width: 50%;
    }
    .btn375 {
     
      padding: 5px;
    }
    .button537 {
      padding: 5px;
    }
    #display {
     height: 40px; 
     width: 85%;
    }
    
.accessibility-btn {
right: 25px;
}

       .icons{
        display:none;
    }
  .info_section {
    padding: 20px 0;
  }
  .info_section .info_col {
    margin: 15px;
    width: 200px;
    margin-left: 30px;
  }
  .info_section .info_contact .contact_link_box {
   
  } 
  .info_section .info_social {
    margin-top: 10px;
   
  }
 
  .info_section form input {
    height: 30px;
  }
  .info_section form button {
    padding: 5px 20px;
  }
 
  .icon-contaner {
    width: 100%;
    padding: 0;
  }
  #icons{
   display:none;   
  }
.row{
      display:flex;
  }
  .container{
      
  }
  footer{
      width:100%;
     
  }
  header{
      width:100%;
  }
  
}


@media only screen and (min-width: 481px) and (max-width: 768px) {
      .custom-calculator {
      width: 50%;
    }
    .btn375 {
     
      padding: 5px;
    }
    .button537 {
      padding: 5px;
    }
    #display {
     height: 40px; 
     width: 85%;
    }
    
.accessibility-btn {
right: 25px;
}

    .icons{
        display:none;
    }

  
  .info_section {
    padding: 20px 0;
  }
  .info_section .info_col {
    margin: 15px;
    width: 150px;
    margin-left: 30px;
  }
  .info_section .info_contact .contact_link_box {
   
  } 
  .info_section .info_social {
    margin-top: 10px;
   
  }
 
  .info_section form input {
    height: 30px;
  }
  .info_section form button {
    padding: 5px 20px;
  }
 
  .icon-contaner {
    width: 100%;
    padding: 0;
  }
  #icons{
   display:none;   
  }
.row{
      display:flex;
  }
  .container{
      
  }
  footer{
      width:100%;
     
  }
  header{
      width:100%;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
     .icons{
        display:none;
    }

  
  .info_section {
    padding: 20px 0;
  }
  .info_section .info_col {
    margin: 15px;
    width: 150px;
    margin-left: 30px;
  }
  .info_section .info_contact .contact_link_box {
   
  } 
  .info_section .info_social {
    margin-top: 10px;
   
  }
 
  .info_section form input {
    height: 30px;
  }
  .info_section form button {
    padding: 5px 20px;
  }
 
  .icon-contaner {
    width: 100%;
    padding: 0;
  }
 
.row{
      display:flex;
  }
  .container{
      
  }
  footer{
      width:100%;
     
  }
  header{
      width:100%;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1440px){

  
  .info_section {
    padding: 20px 0;
  }
  .info_section .info_col {
    margin: 15px;
    width: 150px;
    margin-left: 30px;
  }
  .info_section .info_contact .contact_link_box {
   
  } 
  .info_section .info_social {
    margin-top: 10px;
    
  }
 
 
  .info_section form input {
    height: 30px;
  }
  .info_section form button {
    padding: 5px 20px;
  }
 
  .icon-contaner {
    width: 100%;
    padding: 0;
  }

.row{
      display:flex;
  }
  .container{
      
  }
  footer{
      width:100%;
     
  }
  header{
      width:100%;
  }
}

@media (min-width: 1441px) and (max-width: 1920px) {
  
  .info_section {
    padding: 20px 0;
  }
  .info_section .info_col {
    margin: 15px;
    width: 230px;
    margin-left: 30px;
  }
  .info_section .info_contact .contact_link_box {
   
  } 
  .info_section .info_social {
    margin-top: 10px;
   
  }
 
 
  .info_section form input {
    height: 30px;
  }
  .info_section form button {
    padding: 5px 20px;
  }
 
  .icon-contaner {
    width: 100%;
    padding: 0;
  }

.row{
      display:flex;
  }
  .container{
      
  }
  footer{
      width:100%;
     
  }
  header{
      width:100%;
  }
}
