.latest-blogs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.blog-item {
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-height: 400px; /* Fixed height for consistency */
}

.blog-item:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.blog-item img {
    width: 100%;
    height: 200px; /* Fixed height for images */
    object-fit: cover;
    border-bottom: 1px solid #e0e0e0; /* Separator line */
}

.blog-details {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-details h2 {
    font-size: 1rem; /* Adjusted font size */
    margin: 10px 0;
    color: #333;
    font-weight: bold;
}

.blog-details p {
    font-size: 0.875rem; /* Adjusted font size */
    margin-bottom: 10px;
    text-align: center;
    max-height: 60px; /* Fixed height for text */
    overflow: hidden; /* Hide overflow */
}

.blog-details .read-more {
    margin-top: auto;
    padding: 5px 10px;
    font-size: 0.875rem; /* Adjusted font size */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}


/* Mobile-Specific Styles */
@media (max-width: 768px) {
    .latest-blogs {
        flex-direction: column; /* Stack items vertically */
    }

    .blog-item {
        margin-bottom: 20px; /* Space between stacked items */
    }

    .blog-details h2,
    .blog-details p {
        font-size: 0.875rem; /* Smaller font size for mobile */
    }

    .blog-details .read-more {
        font-size: 0.75rem; /* Smaller font size for mobile */
    }
}

#downloadBtn {
    display: block;
    margin: -59px 0 0 73%; /* Adjust margins as needed */
    width: 12%;
    padding: 16px;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}




/* Adjustments for responsiveness */
@media only screen and (max-width: 600px) {
    #downloadBtn {
        width: 30%; /* Full width on smaller screens */
        margin-bottom: 10px; /* Add spacing between buttons on smaller screens */
        position: relative;
        top: auto;
        left: auto;
    }
}


.tool-tab {
    margin-bottom: 20px;
}

.tab-label {
    cursor: pointer;
    padding: 10px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 5px;
    display: block;
}

.tab-content {
    display: none;
    padding: 10px;
    border: 1px solid #ddd;
    border-top: none;
}

.tool-container {
    margin-bottom: 10px;
}



label {
    display: block;
    margin-bottom: 10px;
}

input[type="text"],
input[type="color"],
select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

input[type="submit"] {
    width: 40%;
    padding: 18px;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
}

#qrImage {
    margin-top: 20px;
}






    /* Define styles for different dot styles */
    .dot-style {
        background-color: black;
        border-radius: 50%;
    }

    .square-style {
        background-color: black;
        border-radius: 0;
    }

    .rounded-style {
        background-color: black;
        border-radius: 20%;
    }

    .extra-rounded-style {
        background-color: black;
        border-radius: 50%;
    }

    .classy-style {
        background-color: black;
        border-radius: 10%;
    }

    .classy-rounded-style {
        background-color: black;
        border-radius: 30%;
    }

    /* Define styles for different corners square styles */
    .corners-square {
        border-style: solid;
        border-color: black;
        border-width: 2px;
        border-radius: 0;
    }

    .corners-rounded {
        border-style: solid;
        border-color: black;
        border-width: 2px;
        border-radius: 10%;
    }

    .corners-extra-rounded {
        border-style: solid;
        border-color: black;
        border-width: 2px;
        border-radius: 50%;
    }

    .corners-classy {
        border-style: solid;
        border-color: black;
        border-width: 2px;
        border-radius: 5%;
    }

    /* Define styles for different corners dot styles */
    .corners-dot {
        background-color: black;
        border-radius: 50%;
    }

    .corners-dot-square {
        background-color: black;
        border-radius: 0;
    }
    
.layout-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.form-section {
    flex: 1;
    min-width: 300px;
    margin-right: 20px;
}

.qr-section {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.qr-container {
    text-align: center;
    margin-left: 20px; /* Ensure the QR container is separated from the form */
}

#qrImage {
    margin-top: 20px;
}



/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .layout-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .form-section, .qr-section {
        min-width: 100%;
        margin: 10px 0;
    }
}


/* Center the accordion in the middle */
.accordion-wrapper {
    display: flex;
    justify-content: left;
    align-items: left;
    width: 100%;
}

.accordion {
    width: 250%;
    max-width: 600px;
}

.accordion-btn {
    background-color: transparent;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: center  ;
    border: 2px solid #ccc; /* Added border */
    border-radius: 5px; /* Optional: Adds rounded corners */
    outline: none;
    transition: background-color 0.3s, border-color 0.3s; /* Added transition for border-color */
}

.accordion-btn:hover {
    background-color: #f1f1f1; /* Optional: Adds a background color on hover */
    border-color: #888; /* Changes border color on hover */
}

.accordion-btn.active,
.accordion-btn:hover {
    background-color: #ccc;
}

.panel {
    display: none;
    padding: 0 18px;
    background-color: transparent;
    overflow: hidden;
}

.panel.show {
    display: block;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .accordion {
        max-width: 50%;
    }

    .container {
        flex-direction: column;
        align-items: left;
    }

    .form-section, .qr-section {
        min-width: 100%;
    }

    .accordion-btn {
        padding: 12px;
        font-size: 24px;
    }

    .panel label,
    .panel input,
    .panel select {
        font-size: 16px;
    }
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .accordion {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .accordion-btn {
        font-size: 20px;
        padding: 12px;
    }

    .panel label,
    .panel input,
    .panel select {
        font-size: px;
    }
}
/* Hide the default select element */
.styled-select {
    display: none;
}

/* Container for the custom buttons */
.select-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


.switch {
  font-size: 17px;
  width: 40px;
  height: 20px;
  /* Adjust the right position as needed */
  z-index: 9999;
  position: relative;
}

  .maintenance-message {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
            max-width: 600px;
            margin: 0 auto;
        }

        .maintenance-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .maintenance-content {
            font-size: 18px;
            line-height: 1.6;
        }



.header-links {
    list-style-type: none;
    display: flex;
    justify-content: right; /* Center the menu horizontally */
    align-items: right; /* Align the menu vertically */
    margin: 0;
    padding: 0; /* Remove default padding */
}

.header-links li {
    margin-right: 40px; /* Adjust spacing between links */
}

.header-links li:last-child {
    margin-right: 0;
}

.header-links li a {
    color: #3c4245; /* Dark color for links */
    font-weight: bold; /* Bold font weight */
    text-decoration: none; /* Remove underline */
    font-size: 16px; /* Adjust font size */
    transition: color 0.3s; /* Smooth color transition on hover */
}

.header-links li a:hover {
    color: #9ba6a5; /* Darker color on hover */
}




.slider:before {
  height: 16px;
  width: 16px;
  border-radius: 50%;
}



.gtranslate_wrapper {
  top: 1px;
  right: 10px;
  
}








@keyframes tilt {

  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-10deg);
  }

  75% {
    transform: rotate(10deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.input43:checked+.slider {
  background-color: #038CFF;
}

.input43:focus+.slider {
  box-shadow: 0 0 1px #038CFF;
}

.input43:checked+.slider:before {
  transform: translateX(20px);
}
.gt_container-unisv1 a.glink span{
  font-size: 16px!important;
}
a.glink img{
  width: 20px!important;
}



.quater {
  height: 1cm; /* Adjust size of the loader */
  width: 1cm; /* Adjust size of the loader */
  background-color: skyblue;
  position: relative;
}

.i {
  border-top-left-radius: 100%;
  animation: spin1 2s ease-in-out infinite;
  transform-origin: bottom right;
}

.ii {
  border-top-right-radius: 100%;
  animation: spin2 2s ease-in-out infinite;
  transform-origin: bottom left;
}

/* Media query for responsiveness */
@media (max-width: 768px) {
   #headerLinks {
    display: none;
}

    .nav-icon {
        display: block; /* Display the icon on mobile */
    }

    .header-links {
        display: none; /* Hide the links by default on mobile */
    }

    .header-links.active {
        display: block; /* Display the links when active */
    }
}
/* Media query for responsiveness */
@media (max-width: 768px) {
  #loading {
    margin-top: 10px; /* Adjust margin for smaller screens */
  }
}


/* rest of your keyframes and other styles... */


@keyframes spin1 {
  0%, 25% {
    transform: rotateZ(0deg);
  }
  50%, 75% {
    transform: rotateZ(180deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

@keyframes spin2 {
  0%, 25% {
    transform: rotateZ(180deg);
  }
  50%, 75% {
    transform: rotateZ(360deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}



/* Styles for Font Awesome Icons */
.record-icon:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* Specific styles for different record types */
.record-icon.globe:before {
    color: #007bff; /* Blue color for A and AAAA records */
}

.record-icon.sitemap:before {
    color: #6610f2; /* Indigo color for NS records */
}

.record-icon.envelope:before {
    color: #dc3545; /* Red color for MX records */
}

.record-icon.file-alt:before {
    color: #ffc107; /* Yellow color for TXT records */
}

.record-icon.arrow-right:before {
    color: #28a745; /* Green color for PTR records */
}

.record-icon.cog:before {
    color: #6c757d; /* Gray color for SOA and SRV records */
}

.record-icon.certificate:before {
    color: #6f42c1; /* Purple color for CAA records */
}

.record-icon.link:before {
    color: #17a2b8; /* Cyan color for CNAME records */
}

.record-icon.question:before {
    color: #343a40; /* Dark Gray color for unknown record types */
}

.banner-container, .secondbanner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px; /* Adjust margin as needed */
}

.hide {
    display: none;
}
.C6 {
    margin-bottom: 20px; /* Adjust the margin as needed */
}
#copyright {
    color: white;
}




