

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Main content should grow to fill the remaining space */
main {
    flex-grow: 1;
}
/* Footer styling */
footer {
    background-color: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
    flex-shrink: 0; /* Ensure footer doesn't shrink */
}


body, h1, h2, p {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 10px;
}
/*
header {
    background-color: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
}

header nav a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}*/

#container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

#main-header {
  background-color: #f8f9fa;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

#logo a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

#nav-links {
  display: flex;
  gap: 20px;
}

#nav-links a {
  color: #333;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s;
}

#nav-links a:hover {
  color: #007BFF;
}

#menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
  #nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #f8f9fa;
    width: 200px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  #nav-links a {
    padding: 10px;
    border-bottom: 1px solid #ddd;
  }

  #menu-toggle {
    display: block;
  }

  #menu-toggle.active + #nav-links {
    display: flex;
  }
}


/** */
.tools {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}
.tool {
    background-color: #f4f4f4;
    border-radius: 5px;
    padding: 20px;
    width: 100%;
    max-width: 300px;
    text-align: center;
}
.tool h3 {
    margin-bottom: 10px;
}
@media (min-width: 600px) {
    .tool {
        width: calc(33.333% - 20px);
    }
}



/* Contact Section Styling */
.contact-container {
    margin-top: 5px;
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

/* Form Elements */
form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

form input[type="email"],
form input[type="text"],
form textarea {
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
}

/* form button {
    padding: 0.75rem;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
} */

form button:hover {
    background-color: #0056b3;
}

#button-submit {
    padding: 0.75rem;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}
#button-submit:hover {
    background-color: #0056b3;
}


/* OTP Input Styling */
.otp-box-container {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.otp-box-container input {
    width: 3rem;
    height: 3rem;
    text-align: center;
    font-size: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Status Message Styling */
.status-message {
    display: none;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
}

/* Success and Error Message Styling */
.status-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


.policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.policy h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-top: 1rem;
    color: #333;
}

.policy p {
    max-width: 800px;
    margin: 0 auto 1rem;
    padding: 0 1rem;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.policy p b {
    color: #222;
}

.policy p > a {
    color: #0066cc;
    text-decoration: none;
}

.policy p > a:hover {
    text-decoration: underline;
}

.policy section {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.policy p.intro {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
}

.policy .section-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #444;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.policy .section-content {
    padding: 0 0.5rem;
}

.policy .list-item {
    margin-left: 1rem;
    padding: 0.25rem 0;
    color: #555;
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .policy h2 {
        font-size: 1.5rem;
    }

    .policy p, .policy .section-title {
        font-size: 1rem;
    }

    .policy .list-item {
        font-size: 0.9rem;
    }
}



@media (max-width: 768px) {
    .blogPost {
        flex: 1 1 100%;
        max-width: 100%;
    }

    input[type="text"] {
        width: 90%;
    }
}

@media (max-width: 768px) { #blogContainer h2 { font-size:1.8em; } #blogContainer .blogPost h3 { font-size:1.3em; } #blogContainer .blogPost p { font-size:0.85em; } } 
@media (max-width: 480px) { #blogContainer h2 { font-size:1.6em; } #blogContainer .blogPost h3 { font-size:1.2em; } #blogContainer .blogPost p { font-size:0.8em; } }


a.external-link {
    /*text-decoration: underline;*/
    color: #0073e6; /* Default blue for links */
    font-weight: 500; /* Slightly bold for emphasis */
    transition: color 0.3s ease; /* Smooth color transition for hover */
}

a.external-link:hover {
    color: #005bb5; /* Darker shade for hover */
    text-decoration: none; /* Clean look on hover */
}

/* Title Styling */
#tools-container h1 {
    font-size: 2.2em; /* Larger size for a more professional look */
    font-weight: 600; /* Semi-bold for a cleaner, modern look */
    color: #333; /* Dark gray color for a professional, neutral appearance */
    text-align: center; /* Centers the title for balance */
    margin-bottom: 30px; /* Adds more space between the title and content */
    padding: 10px 0; /* Adds subtle padding above and below the title */
    text-transform: uppercase; /* Makes the title more dynamic */
    letter-spacing: 2px; /* Slight spacing between letters for clarity */
    border-bottom: 2px solid #0073e6; /* Underlines with a subtle color to add emphasis */
}


/* Container Styling */
#tools-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Tool Category Section Styling */
.tool-category {
    margin-bottom: 20px;
    background: #f4f4f4;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tool-category h2 {
    font-size: 1.5em;
    color: #0073e6;
    margin-bottom: 10px;
}

/* Tool List Styling */
.tool-list {
    list-style-type: none;
    padding: 0;
}

.tool-list li {
    margin: 8px 0;
}

.tool-list a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

.tool-list a:hover {
    color: #0073e6;
}

/* Responsive Design */
@media (max-width: 768px) {
    #tools-container {
        padding: 10px;
    }

    .tool-category h2 {
        font-size: 1.3em;
    }
}


.blogPost:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}


/** Socket sharing */

#social-share {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

#social-share h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

#icons {
  display: flex;
  gap: 15px;
}

#icons a {
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

#facebook { background-color: #3b5998; }
#twitter { background-color: #1da1f2; }
#linkedin { background-color: #0077b5; }
#whatsapp { background-color: #25d366; }

#icons a:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  #social-share {
    flex-direction: row;
    justify-content: center;
  }

  #social-share h3 {
    font-size: 1rem;
    margin-right: 10px;
  }
}


#main-footer {
    background-color: #f8f8f8;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #333;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    margin: 0 10px;
    color: #007bff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-note p {
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}

.footer-note a {
    color: #007bff;
    text-decoration: none;
}


.base-timer {
        position: relative;
        width: 80px; /* Adjusted width for a smaller timer */
        height: 80px; /* Adjusted height for a smaller timer */
        margin: 0 auto;
        text-align: center;
    }

    .base-timer__svg {
        width: 100%;
        height: auto;
    }

    .base-timer__circle {
        fill: none;
        stroke: none;
    }

    .base-timer__path-elapsed {
        stroke-width: 7px;
        stroke: #ddd;
    }

    .base-timer__path-remaining {
        stroke-width: 7px;
        stroke-linecap: round;
        transform: rotate(90deg);
        transform-origin: center;
        transition: 1s linear all;
    }

    .base-timer__path-remaining.green {
        stroke: #41b883;
    }

    .base-timer__path-remaining.orange {
        stroke: orange;
    }

    .base-timer__path-remaining.red {
        stroke: red;
    }

    .base-timer__label {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px; /* Reduced font size */
        font-weight: bold;
        color: #333;
    }

    @media (max-width: 600px) {
        .base-timer__label {
            font-size: 12px; /* Adjusted font size for mobile */
        }
    }
    
    #reload-button {
        margin-top: 10px;
        padding: 10px 20px;
        background-color: #4CAF50;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
    }

    #reload-button:hover {
        background-color: #45a049;
    }
    