/* Set a background image for the whole page */
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient(to bottom, #d13532, #d56c6f, #de3b38);
}




#converter1{width:94%;padding:20px;background:#f2f2f2;margin:11px auto;
    border:2px solid #ddd;
    
}

@keyframes blink {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

hr.blinking-line {
    height: 3px; /* Set your desired height */
    background-color: #AFACA4; /* Set your desired color */
    border: none;
    animation: blink 2s infinite; /* Adjust animation duration as needed */
    width:40%;
    margin:0 auto;
    margin-bottom:10px;
}

.stylish-text {
    font-size: 36px; /* Set your desired font size */
    font-weight: bold; /* Set your desired font weight */
    background: linear-gradient(45deg, #d13532, #33333b, #d56c6f, #de3b38);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.stylish-text1 {
    font-size: 22px; /* Set your desired font size */
    font-weight: normal; /* Set your desired font weight */
    background: linear-gradient(45deg, #fff, #fff, #fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    display: inline-block;
    margin-right: 20px;
}

.footer-menu li:last-child {
    margin-right: 0;
}

.footer-menu a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
}

/* Responsive Styles */
@media only screen and (max-width: 768px) {
    .footer-menu li {
        display: block;
        margin-bottom: 10px;
    }
}
.post{
    width:92%;
    padding:30px;
    border:2px solid #ddd;
    border-radius:5px;
    margin:21px auto;
    text-align:left;
    background:#fff;
}
.center{text-align:center;}

/*Navigation bar */
.navbar {
    background: #fff;
    color: black;
    padding: 10px 0;
    box-shadow: 0 3.5px 38px 3.5px #5e5e5e3d;
}
.navbar .navbar-brand{
    color: #1c1460;
    font-size: 2em;
    font-family: 'elmessiri-bold';
}
.navbar a:hover{
    color: #09033b;
}
.navbar .nav-link{
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
    height: 37px;
    margin-right: 10px;
    position: relative;
}
.navbar .nav-link::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  margin-top: 1em;
  background-color: #145070;
  bottom: -2px;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}
.navbar .nav-link:hover::before{
  transform-origin: left;
  transform: scaleX(1);
}
.title{
    text-align: center;
    margin: 0em 0 0em 0;
    height:350px;
    padding-top:100px;
}

.title1{
    text-align: center;
    margin: 0em 0 0em 0;
    height:250px;
    padding-top:100px;
}

.py-20{
    padding-bottom: 20px;
    padding-top: 10px;
    background: #fff;
}
/* Scroll Down */
.scroll-down{
    text-align: -webkit-center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #1c1460;
    margin-top:-199px;
}
.scrolldown {
    --color: #fff !important;
    --sizeX: 30px;
    --sizeY: 30px;
    position: relative;
    width: var(--sizeX);
    height: var(--sizeY);
    margin-left: var(sizeX / 2);
    border: calc(var(--sizeX) / 10) solid var(--color);
    border-radius: 50px;
    box-sizing: border-box;
    margin-bottom: 0px;
    cursor: pointer;
  }
  .scrolldown::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background-color: var(--color);
    border-radius: 100%;
    animation: scrolldown-anim 2s infinite;
    box-sizing: border-box;
    box-shadow: 0px -5px 3px 1px #2a547066;
  }
  @keyframes scrolldown-anim {
    0% {
      opacity: 0;
      height: 6px;
    }
    40% {
      opacity: 1;
      height: 10px;
    }
    80% {
      transform: translate(0, 20px);
      height: 10px;
      opacity: 0;
    }
    100% {
      height: 3px;
      opacity: 0;
    }
  }
  #backToTopBtn {
    display: none; /* Initially hidden */
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #d13532;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;  /* Ensures a perfect circle */
    height: 50px; /* Ensures a perfect circle */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 8px #33333b; /* Adds a nice shadow */
}

#backToTopBtn::before {
    content: '\2191'; /* Unicode for a straight up arrow */
    font-size: 22px; /* Adjust the size for better fit */
    color: white;
    line-height: 1; /* Ensures the arrow doesn't shift vertically */
}

#backToTopBtn:hover {
    background-color: #d56c6f;
    transform: scale(1.1); /* Slight zoom effect on hover */
}

  .ads{
      margin:20px auto;
  }
  .tool{
      width:100%;
      margin:0px auto;
      border:2px dashed #BEBEBE;
      background:#fff;
      padding:22px;
      
      
  }
  .chevrons {
    padding: 6px 0 0 0;
    margin-left: -3px;
    margin-top: 48px;
    width: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .chevrondown {
    margin-top: -6px;
    position: relative;
    border: solid var(--color);
    border-width: 0 3px 3px 0;
    display: inline-block;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
  }
  .chevrondown:nth-child(odd) {
    animation: pulse54012 500ms ease infinite alternate;
  }
  .chevrondown:nth-child(even) {
    animation: pulse54012 500ms ease infinite alternate 250ms;
  }
  @keyframes pulse54012 {
    from {
      opacity: 0;
    }
    to {
      opacity: 0.5;
    }
  }
  /* Section Card */
.islamic-card{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 1em;
}
.title{
  text-align: right;
  font-family:  'rabar';
  font-weight: 600;
}
/* Card Downloader Page */
#card{
    box-shadow: 0 0 5px rgb(0,0,0,0.5);
}
#card:hover{
    transform: scale(0.95);
    transition: .5s all
}
/* Footer */
.footer-basic {
  padding: 3em 0;
  background-color:#f2f2f2;
  color:#4b4c4d;
  margin-top:-22px;
 
  
}
.footer-basic .social {
  text-align:center;
  padding-bottom: 27px;
}
.footer-basic .social > a {
  font-size: 24px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  display: inline-block;
  text-align: center;
  border-radius: 0%;
  margin: 0 8px;
  opacity: 0.75;
}
.footer-basic .social > a:hover {
  opacity: 1;
  transform: scale(1.1);
  transition: .5s;
}
.footer-basic .copyright {
  text-align:center;
  font-size:15px;
  color:#787878;
  margin-bottom:0;
}
.copyright:hover{
  font-size: 16px;
  color: #3b3b3b;
  transition: .3s all ease-in-out;
}

@media (max-width: 992px){
    .navbar .navbar-nav{
      padding-top: 10px;
    }
    .navbar .nav-link{
        color: #052050;
        padding: 19px 10px;
        font-size: 18px;
        position: relative;
    }
    .navbar .nav-link::before{
      content: '';
      position: absolute;
      width: 100%;
      height: 4px;
      border-radius: 4px;
      margin-top: 1em;
      background-color: #04273a;
      bottom: -10px;
      left: 0;
      transform-origin: right;
      transform: scaleX(0);
      transition: transform .3s ease-in-out;
    }
    .LinksDad h1{
      padding: 0 1em;
    }
}

#results {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        .stream {
            width: 300px;
            margin: 10px;
            border: 1px solid #ddd;
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s ease-in-out;
        }
        .stream:hover {
            transform: scale(1.05);
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
        }
        th, td {
            border: 1px solid #ddd;
            padding: 10px;
            text-align: left;
        }
        th {
            background-color: #f2f2f2;
        }
        .watch-button {
            display: block;
            width: 100%;
            padding: 8px;
            text-align: center;
            background-color: #4CAF50;
            color: white;
            text-decoration: none;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        .watch-button:hover {
            background-color: #45a049;
        }
    



input[type=file]::file-selector-button {
  display: inline-block;
  padding: 1.2rem 1.7rem;
  font-size: 1.125rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 11px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  font-family: 'Rubik', sans-serif;
  width:100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  margin-bottom:25px;
  border:10px double #00008B;
}

input[type=file]::file-selector-button:hover {
  background-color: #1A81F3;
}

input[type=file]::file-selector-button:active {
  background-color: #4a41ad;
}

input[type=file]::file-selector-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #6c63ff;
}

input[type=file]::file-selector-button::before {
  content: "Select File";
}

input[type=file]::file-selector-button::before,
input[type=file]::file-selector-button::before {
  content: "\2193 Browse Files";
}


input[type="file"] {
  display: yes;
}
/* Stylish CSS for input[type="text"] */
input[type="text"], input[type="url"], #phone{
  
    flex: 1;
    width: 90%;
    border-radius: 5px;
    border: 2px solid #ccc;
    height: 45px;
    padding: 0 27px;
    font-size: 19px;
    font-weight: 500;
    color: black;
    margin:11px auto;
}
 

/* Add a hover effect */
input[type="text"]:hover, input[type="url"]:hover {
  border-color: #666;
}

/* Add focus styles */
input[type="text"]:focus, input[type="url"]:focus {
  outline: none;
  border-color: #3f51b5;
  box-shadow: 0 0 5px rgba(63, 81, 181, 0.5);
}


button, a, input, textarea {
    outline: 0 !important;
}



select {
   flex: 1;
    width: 40%;
    border-radius: 5px;
    border: 1px solid #1D6FEA;
    height: 45px;
    padding: 0 27px;
    font-size: 19px;
    font-weight: 500;
    color: black;
    margin:10px auto;
}

textarea {
  width: 80%;
  height: 200px;
  padding: 10px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  background:#fff;
  border-radius: 5px;
   border:2px solid #ddd;
  transition: all 0.2s ease-in-out;
  
  margin:10px auto;
}

textarea:hover {
  border-color: #06c;
  box-shadow: none;
}

textarea:focus {
  outline: none;
  border-color: #55555e;
  box-shadow: none;
}

canvas, #image-container, .img, #img, image, .image, #image, #convertedImage, #preview-image {
  border: 0px solid;
  
  border-image-slice: 1;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  background:white;
  width:50%;
  margin:20px auto;padding:15px;

}

#image-container img {
  max-width: 100%;
  }

pre, #result, output, #output, .output,#output-text {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  
  color: #333;
  
  white-space: pre-wrap;
   width: 80%;
  height: 200%;
  padding: 20px;
  font-size: 20px;
  background:#fff;
  border-radius: 5px;
   border:2px solid #ddd;
  transition: all 0.2s ease-in-out;
  
  margin:15px auto;

}


input[type="range"] {
  -webkit-appearance: none;
  width: 80%;
  background: transparent;
  height: 10px;
  border-radius: 5px;
  outline: none;
  padding: 0;
  margin: 0;
  box-shadow: inset 0 0 5px #333;
  transition: box-shadow 0.2s;
  margin-top:10px;

}

input[type="range"]:focus {
  box-shadow: inset 0 0 5px #888;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
  transition: background 0.2s;
  margin-top:-5px;
}

input[type="range"]::-webkit-slider-thumb:hover {
  background: #3e8e41;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 10px;
  background: #ddd;
  border-radius: 5px;
  border: none;
}
/* Style the checkbox input */
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #333; /* Border color */
    border-radius: 3px;
    margin-right: 10px; /* Add spacing between the checkbox and label */
}

/* Style the checkbox when checked */
input[type="checkbox"]:checked {
    background-color: #33ccff; /* Background color when checked */
    border: 2px solid #33ccff; /* Border color when checked */
}

input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #333;
  margin-right: 10px;
  outline: none;
  position: relative;
  cursor: pointer;
}

input[type="radio"]:after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
  position: absolute;
  top: 5px;
  left: 5px;
  opacity: 0;
  transition: all 0.2s;
}

input[type="radio"]:checked:after {
  opacity: 1;
}

input[type="radio"]:focus {
  border-color: #888;
}


input[type="radio"] {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

label {
  display: block; /* makes each label appear on a new line */
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px; /* adds a small gap below each label */
  color:#55555e;
  margin-top:11px;margin-bottom:11px;
}


.form-control {
    display: block;
    margin:0 auto;
    width: 70%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
section{
         margin:20px auto;
        width: 100%;
        max-width: 100%;
        background-color: transparent;
        border: 0px dashed #ddd;
        padding: 0px;
        align-items:center;
        text-align:center;
      }


/* Styling buttons with gradients */

/* Common styles for all buttons */
.button,
.btn,
.btn.btn, btn btn-info m-2, button, btn, #download, #download-pdf-button, #downloadLink {
    display: inline-block;
    padding:4px 30px;
    border: 5px double #4BB3FD;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    background:#fff;
    margin:10px auto;
   
}



/* Hover effect */
#downloadLink:hover,
#download-pdf-button:hover,
#download:hover,
.button:hover,
.btn:hover,
.btn.btn:hover {
    opacity: 0.8;
}




.main-2 {
    width: 92.5%; /* Take full width by default */
    margin: 20px auto; /* Center the div */
    padding: 30px;
    background-color: #fff;
    border: 0px solid #ddd;
    border-radius: 0px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


    .logo {
    display: block; /* Ensures the link takes the full width of the image */
    width: 180px;   /* Adjust the width as needed */
    height: auto;   /* Maintains the aspect ratio */
}





/* Responsive styles */
@media only screen and (min-width: 768px) {
    .main {
        width: 75%;
        margin: 20px 7px 20px 20px;
    }

    .sidebar {
        width: 25%;
        margin: 20px 20px 20px 7px;
    }
}

@media only screen and (max-width: 767px) {
    .main,
    .sidebar {
        width: 100%; /* Take full width on smaller screens */
        margin: 20px 0;
    }
}
        
        
        #sp{font-size:13px;padding:10px;}


.icon-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  
}

.icon-box {
  text-align: center;
  margin: 6px 0px;
  padding: 10px 5px 20px 5px;
  border: 1px solid #ddd;
  border-radius: 0;
  width: calc(16% - 0px); /* 24% for 4 boxes in one row, minus margin */
  text-decoration: none;
  color: #333;
  transition: transform 0.3s;
  background: linear-gradient(to top, #fff, #fff);
  max-width: 100%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.icon-box:hover {
  transform: scale(1.05); /* Slightly increase size on hover */
  box-shadow: none; /* Remove the box shadow on hover */
  background: linear-gradient(to top, #d13532, #d56c6f);
}






.icon-box svg {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  margin-top: 20px;
  transition: transform 0.3s, rotate 0.3s;
}

.icon-box:hover svg {
  transform: scale(1.2) rotate(360deg); /* Increase size and rotate on hover */
}


ibh {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    margin-top: 10px;
    background: linear-gradient(to right, #33333b, #d13532, #d56c6f); /* Adjust gradient colors as needed */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    transition: background 0.3s ease-in-out;
}

ibh:hover {
    color: #191970;
}



/* Responsive styles for medium screens (tablets) */
@media (max-width: 768px) {
  .icon-box {
    width: calc(49% - 20px); /* 49% for 2 boxes in one row, minus margin */
  }
}

/* Responsive styles for small screens (mobile devices) */
@media (max-width: 576px) {
  .icon-box {
    width: calc(100% - 20px); /* 100% for 1 box in one row, minus margin */
  }
}



        h2 svg {
            margin-right: 10px; /* Adjust the margin as needed */
            width: 32px; /* Adjust the width as needed */
            height: 32px; /* Adjust the height as needed */
        }




#results {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        .stream {
            width: 300px;
            margin: 10px;
            border: 1px solid #ddd;
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s ease-in-out;
        }
        .stream:hover {
            transform: scale(1.05);
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
        }
        th, td {
            border: 1px solid #ddd;
            padding: 10px;
            text-align: left;
        }
        th {
            background-color: #f2f2f2;
        }
        .watch-button {
            display: block;
            width: 100%;
            padding: 8px;
            text-align: center;
            background-color: #4CAF50;
            color: white;
            text-decoration: none;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        .watch-button:hover {
            background-color: #45a049;
        }
    



input[type=file]::file-selector-button {
  display: inline-block;
  padding: 1.2rem 1.7rem;
  font-size: 1.125rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 11px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  font-family: 'Rubik', sans-serif;
  width:100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  margin-bottom:25px;
  border:10px double #00008B;
}

input[type=file]::file-selector-button:hover {
  background-color: #1A81F3;
}

input[type=file]::file-selector-button:active {
  background-color: #4a41ad;
}

input[type=file]::file-selector-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #6c63ff;
}

input[type=file]::file-selector-button::before {
  content: "Select File";
}

input[type=file]::file-selector-button::before,
input[type=file]::file-selector-button::before {
  content: "\2193 Browse Files";
}


input[type="file"] {
  display: yes;
}
/* Stylish CSS for input[type="text"] */
input[type="text"], input[type="url"], #phone{
  
    flex: 1;
    width: 90%;
    border-radius: 5px;
    border: 2px solid #ccc;
    height: 45px;
    padding: 0 27px;
    font-size: 19px;
    font-weight: 500;
    color: black;
    margin:11px auto;
}
 

/* Add a hover effect */
input[type="text"]:hover, input[type="url"]:hover {
  border-color: #666;
}

/* Add focus styles */
input[type="text"]:focus, input[type="url"]:focus {
  outline: none;
  border-color: #3f51b5;
  box-shadow: 0 0 5px rgba(63, 81, 181, 0.5);
}


button, a, input, textarea {
    outline: 0 !important;
}



select {
   flex: 1;
    width: 40%;
    border-radius: 5px;
    border: 1px solid #1D6FEA;
    height: 45px;
    padding: 0 27px;
    font-size: 19px;
    font-weight: 500;
    color: black;
    margin:10px auto;
}

textarea {
  width: 90%;
  height: 150px;
  padding: 10px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  background:#F9F9FB;
  border-radius: 5px;
   border:1px solid #ddd;
  transition: all 0.2s ease-in-out;
  
  margin:10px auto;
}

textarea:hover {
  border-color: #06c;
  box-shadow: none;
}

textarea:focus {
  outline: none;
  border-color: #55555e;
  box-shadow: none;
}

canvas, #image-container, .img, #img, image, .image, #image, #convertedImage, #preview-image {
  border: 0px solid;
  
  border-image-slice: 1;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  background:white;
  width:30%;
  margin:10px auto;padding:15px;

}

#image-container img {
  max-width: 100%;
  }

pre, #result, output, #output, .output,#output-text {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  
  color: #333;
  
  white-space: pre-wrap;
   width: 90%;
  height: 100%;
  padding: 20px;
  font-size: 24px;
  background:#F9F9FB;
  border-radius: 5px;
   border:1px solid #ddd;
  transition: all 0.2s ease-in-out;
  
  margin:15px auto;

}


input[type="range"] {
  -webkit-appearance: none;
  width: 80%;
  background: transparent;
  height: 10px;
  border-radius: 5px;
  outline: none;
  padding: 0;
  margin: 0;
  box-shadow: inset 0 0 5px #333;
  transition: box-shadow 0.2s;
  margin-top:10px;

}

input[type="range"]:focus {
  box-shadow: inset 0 0 5px #888;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
  transition: background 0.2s;
  margin-top:-5px;
}

input[type="range"]::-webkit-slider-thumb:hover {
  background: #3e8e41;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 10px;
  background: #ddd;
  border-radius: 5px;
  border: none;
}
/* Style the checkbox input */
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #333; /* Border color */
    border-radius: 3px;
    margin-right: 10px; /* Add spacing between the checkbox and label */
}

/* Style the checkbox when checked */
input[type="checkbox"]:checked {
    background-color: #33ccff; /* Background color when checked */
    border: 2px solid #33ccff; /* Border color when checked */
}

input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #333;
  margin-right: 10px;
  outline: none;
  position: relative;
  cursor: pointer;
}

input[type="radio"]:after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
  position: absolute;
  top: 5px;
  left: 5px;
  opacity: 0;
  transition: all 0.2s;
}

input[type="radio"]:checked:after {
  opacity: 1;
}

input[type="radio"]:focus {
  border-color: #888;
}


input[type="radio"] {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

label {
  display: block; /* makes each label appear on a new line */
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px; /* adds a small gap below each label */
  color:#55555e;
  margin-top:11px;margin-bottom:11px;
}


.form-control {
    display: block;
    margin:0 auto;
    width: 70%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
section{
         margin:20px auto;
        width: 100%;
        max-width: 100%;
        background-color: transparent;
        border: 0px dashed #ddd;
        padding: 0px;
        align-items:center;
        text-align:center;
      }

.main-cont{
    
    width:94%;
    padding:20px;
    margin:0 auto;
    background:#fff;
    border:1px solid #ddd;
    border-radius:5px;
    margin-top:-110px;
    
}

.main-cont2{
    
    width:94%;
    padding:20px;
    margin:0 auto;
    background:#fff;
    border:1px solid #ddd;
    border-radius:5px;
   
    
}

.main-cont3{
    
    width:94%;
    padding:20px;
    margin:0 auto;
    background:#fff;
    border:1px solid #ddd;
    border-radius:5px;
    
    
}

.main-cont4{
    
    width:94%;
    padding:20px;
    margin:0 auto;
    background:#fff;
    border:1px solid #ddd;
    border-radius:5px;
    
    
}

.main-tool{
    
    width:92%;
    padding:20px;
    margin:0 auto;
    background:#fff;
    border:2px solid #ddd;
    border-radius:5px;
    margin-top:-150px;
    
}


.main-tool2{
    
    width:92%;
    padding:30px;
    margin:0 auto;
    background:#fff;
    border:5px double #ccc;
    border-radius:5px;
    margin-top:-100px;
    overflow:hidden;
    
}

h5{color:white;}

.cards{margin-bottom:0px;}

#tool-section{
    
    width:90%;
    padding:20px;
    margin:0 auto;
    border:2px solid #555ABE;
    border-radius:5px;
    background:#F1F3F4;
   
    
    
    
    
}






