/* Basic styles */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: white;
    margin: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
label{
    color:black;
}

.related-tools h3{
    margin-left:6%;
    font-size:20px;
}

/* Header */
header {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 0;
}


header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
}

.brand h1 {
    display: none;
}

#brandimg {
    width: 100px;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    position: relative;
}

/* Hide checkbox */
nav input[type="checkbox"] {
    display: none;
}
.fa-linkedin
{
    color:#1a3371;
    font-weight:bold;
}
.fa-snapchat{
    color:yellow;
    font-weight:bold;
}
.fa-pinterest{
    color:red;
    font-weight:bold;
}

.fa-instagram{
    color:deeppink;
    font-weight:bold;
}
.fa-x{
    color:black;
    font-weight:bold;
}

.tools {
    background: #dae1f1;
    padding: 10%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Menu Icon (Hamburger) */
.menu-icon {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 0;
}

.menu-icon span {
    background-color: white;
    display: block;
    height: 4px;
    width: 30px;
    margin: 6px 0;
}

/* Navigation Menu */
.nav-menu {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    margin: 0;
}

.nav-menu li {
    margin-left: 15px;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: #4caf50;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 0;
}

/* Call-to-Action Button */
.cta-button {
    background-color: #4caf50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 20px;
    display: inline-block;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #45a049;
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    padding: 10px 0;
}

/* Tools Section */
.tools {
    background: #dae1f1;
    padding: 10%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.tools a {
    color: black;
    text-decoration: none;
    font-size: small;
    margin-left: 1%;
    font-weight: bolder;
}

.fa-brands {
    font-size: larger;
    margin-right:2%;
}

.fa-youtube {
    color: red;
    font-size: larger;
}

footer{
display:none;
    
}
 #brandimg{
        width:50px;
    }

/* Responsive styles */
@media (max-width: 768px) {
    header .container {
        flex-direction: row;
        align-items: center;
        padding:1px;
    }
    #brandimg{
        width:50px;
    }
    .hero{
        margin-top:5%;
        margin-bottom:5%;
        padding:0%;
    }
    /* Ensure menu icon is visible and positioned correctly */
    .menu-icon {
        display: block;
        position: absolute;
        right: 20px;
        top: 15px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        padding: 10px 0;
    }

    nav input[type="checkbox"]:checked ~ .nav-menu {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    /* Adjust Tools Section */

    .tools a {
        font-size: 14px;
    }
}
