    /* -------------------- General Reset -------------------- */
    /* Resets default margin, padding, and applies a common box model */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }

    /* -------------------- Body Styling -------------------- */
    /* Styling for the main content and body for better readability and spacing */
    body {
        color: #212529;
        background: #f8f9fa;
        line-height: 1.6;
        text-align: center;
        margin: 0; /* Remove margin to allow full use of viewport */
        overflow-y: auto; /* Enable vertical scrolling */
        height: 100vh; /* Set height to viewport height */
    }

    h1, h2, h3 {
        margin-bottom: 10px;
    }

    a {
        text-decoration: none;
        color: #ffffff;
    }

    button {
        padding: 12px 30px;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        background-color: #00b8d4;
        color: white;
        transition: all 0.3s ease;
    }

    button:hover {
        background-color: #008c91;
    }

    /* -------------------- Navbar Styling -------------------- */
    /* Fixed navbar with gradient background and flexbox layout */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background: linear-gradient(45deg, #00b8d4, #0077b6);
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* Logo Styling */
    .logo {
        font-size: 26px;
        font-weight: bold;
        margin-left: 45px;
        cursor: pointer;
        color: white;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 0;
    }

    .logo-img {
        width: auto;
        height: 23px;
        transform: scale(1.5);
        margin-right: -32px;
        margin-bottom: 9px;
        cursor: pointer
    }

    .logo-img:hover {
        transform: scale(1.7);
        transition: 0.5s ease;
    }

    /* Navigation Links Styling */
    .nav-links {
        display: flex;
        list-style: none;
        gap: 25px;
    }

    .nav-links a {
        color: white;
        margin: 0 15px;
        font-size: 16px;
        text-decoration: none;
    }

    /* Underline effect for hover interaction */
    .nav-links a:hover {
        text-decoration: underline;
    }

    /* Login Button Styling */
    .login-btn {
        padding: 12px 30px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        background-color: #00b8d4;
        color: white;
        transition: all 0.3s ease;
    }

    .login-btn:hover {
        background-color: #008c91;
    }

    /* -------------------- Hero Section -------------------- */
    #signature-creation {
        padding: 60px 20px;
        background: #f0f9ff;
        border-bottom: 2px solid #d1e7fd;
        text-align: center;
    }

    #signature-creation h2 {
        margin-top: 150px;
        font-size: 32px;
        color: #0077b6;
        margin-bottom: 25px;
        font-style: italic;
        font-family: monospace;
    }

    /* -------------------- Signature Options Section -------------------- */
    .signature-options {
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
        padding: 20px;
        margin: 50px auto;
        max-width: 1200px;
    }

    /* Individual Signature Option Styling */
    .option {
        background: white;
        color: #212529;
        border-radius: 12px;
        padding: 30px;
        width: 280px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        text-align: center;
        flex: 1 1 calc(33.333% - 40px);
        box-sizing: border-box;
        min-width: 280px;
        margin: 20px 0;
    }

    .option-btn {
        margin-top: 10px;
    }

    .option:hover {
        transform: translateY(-10px);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    }

    /* Icon Styling */
    .option i {
        font-size: 48px;
        color: #0077b6;
        margin-bottom: 15px;
    }

    /* -------------------- Media Queries -------------------- */
    /* Responsive adjustments for smaller screens */
    @media (max-width: 768px) {
        .signature-options {
            flex-direction: column;
            align-items: center;
        }

        .option {
            width: 90%;
        }
    }
    /* -------------------- About Section -------------------- */
    #about {
        padding: 40px 20px;
        background-color: #f0f0f0;
        text-align: center;
    }

    #about h2 {
        font-size: 36px;
        color: #0077b6;
        margin-bottom: 20px;
    }

    #about p {
        font-size: 18px;
        color: #555;
        margin-bottom: 40px;
    }

    .about-team {
        display: flex;
        justify-content: center;
        gap: 40px;
        text-align: center;
    }

    .team-member img {
        width: 100%;
        border-radius: 50%;
    }

    .team-member h3 {
        font-size: 20px;
        color: #0077b6;
        margin-top: 10px;
    }

    .team-member p {
        color: #777;
        font-size: 14px;
    }

    /* -------------------- Contact Section -------------------- */
    #contact {
        padding: 40px 20px;
        background-color: #fff;
        text-align: center;
    }

    #contact h2 {
        font-size: 36px;
        color: #0077b6;
        margin-bottom: 20px;
    }

    .contact-container {
        display: flex;
        justify-content: center;
        gap: 40px;
    }

    .contact-info p {
        font-size: 16px;
        color: #777;
        margin: 10px 0;
    }

    form {
        width: 300px;
    }

    .form-group input, 
    .form-group textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
    }

    form button {
        background-color: #0077b6;
        color: white;
        padding: 12px 20px;
        border: none;
        font-size: 16px;
        cursor: pointer;
    }

    form button:hover {
        background-color: #005f8c;
    }


    .brush-options {
        margin: 20px 0;
        padding: 10px;
        background-color: #f0f0f0; /* Light background for contrast */
        border-radius: 5px;
    }

    .brush-options label {
        margin-right: 10px;
        font-weight: bold;
    }

    .brush-options select {
        margin-right: 20px;
        padding: 5px;
        border: 1px solid #ddd;
        border-radius: 5px;
    }

    #eraserBtn {
        background-color: #ff4d4d; /* Red color for the eraser */
        color: white; /* Text color */
        border: none; /* Remove border */
        border-radius: 5px; /* Rounded corners */
        padding: 10px 15px; /* Padding for the button */
        cursor: pointer; /* Pointer cursor on hover */
        margin: 10px; /* Margin for spacing */
    }

    #eraserBtn:hover {
        background-color: #e60000; /* Darker red on hover */
    }

    /* footer */
    
    .footer-logo img{
        width: px;
        height: 30px;
        transform: scale(1.5);
        margin-right: -32px;
        margin-bottom: 9px;
        cursor: pointer

    }
    .footer-logo{
        display: flex;
        padding-bottom: 10px;
    }
   .footer-body{
    display: grid;
    justify-content: center;
    align-content: end;
    padding: 25px;
    }
    
    footer{
    position: relative;
    width:100%;
    height: auto;
    background: linear-gradient(45deg, #00b8d4, #0077b6);
   
   }
   .footer-container{
    width:100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-gap:20px;
    padding: 10px;
    
    
}
.footer-container .sec h2{
  position: relative;
  color: black;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: left;
 
}
.footer-container .sec p{
    color:white; 
    text-align: justify;
   
   
}

/* quick links and support combine*/
.footer-container .quicklinks{
    position: relative;
    
}

.footer-container .quicklinks ul li{
  list-style: none;
 text-align: justify;
 width:250px
}
.footer-container .quicklinks ul li a{
    text-decoration: none;
    margin-bottom: 2px;
    display: inline-block;
    padding: 1px 2px 1px 2px;
}
.footer-container .sec ul li a:hover{
    position: relative;
    left:8px;
}

/* social */
.footer-container .social{
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(5,50px);
  width:250px;
}
.footer-container .social{
    list-style: none;
}
.footer-container .social li a{
 display:inline-block;
 width: 3px;
 height: 36px;
 padding: 1px;
 display: grid;
 align-content: center;
 text-decoration: none;
}
.footer-container .social li a i{
    font-size: 25px;
    position: relative;
    left:5px;
}

.social li .fa-facebook-f{
    color: rgb(199, 219, 245); 
    
}
.social li .fa-instagram{
    color:rgb(226, 22, 134);
    
}
.social li .fa-github{
    color:rgb(13, 11, 12);
}
.social li .fa-linkedin{
    color:rgb(221, 226, 230);
}
.social li .fa-x-twitter{
    color:rgb(13, 11, 12);
}


/*  copy rights*/
 .copyrights{
 text-align: center;
  width:100%;
  padding:10px;
  
}
/* media */
@media(max-width:991px){
   footer{
    padding: 40px;
   }
   .footer-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 20px;
   }
   
}

@media(max-width:768px){
    .footer-container{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1,1fr);
        grid-gap: 20px;
        
       }
       
}