@charset "UTF-8";
/* CSS Document */


/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #000000;
}

html {
    scroll-behavior: smooth;
}

/* Styling for the Back to Portfolio button */
.back-to-portfolio {
    position: fixed; /* Fix it to the page */
    top: 10px; /* Adjust distance from the top */
    left: 10px; /* Adjust distance from the right */
    z-index: 999; /* Ensure it's on top */
}

.back-button {
    background-color: #007bff; /* Blue color */
    color: white;
    padding: 5px 10px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    background: linear-gradient(to top, #87ceeb, #4682b4, #1e3a5f);
    font-family: 'Noteworthy-bold';
}

.back-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}










/* Header Styling */
.header {
    text-align: center;
    padding: 30px 10px;
    background: linear-gradient(to top, #f0f8ff, #add8e6, #87ceeb, #4682b4, #1e3a5f);
	width: auto;
}

.banner {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: 700px;
}



/* Header Content */
.header-content h1 {
   color: #ffffff;
    font-family: 'Brullos';
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 1.00);
	background: linear-gradient(to top, #4682b4, #1e3a5f, #002147, #000A1F);
	padding: 10px;
	border-radius: 50px;
}

.header-content h2 {
    color: #ffffff;
	 font-family: 'Noteworthy-bold';
text-shadow: 1px 1px 0px rgba(0, 0, 0, 1.00);
}


















/* Portfolio Section Styling */
#portfolio {
    padding: 10px 5px 20px 5px;
     background: linear-gradient(to bottom, #f0f8ff, #add8e6, #87ceeb, #4682b4, #1e3a5f);
    color: #000000;
	margin: 0px;
}



.portfolio_header {
	padding: 0px;
	margin: 0px;
}


/* Main Header for the Portfolio Section */
.portfolio_header h1 {
	color: #ffffff;
    text-align: center;
    font-family: 'Brullos';
    margin: 0px 0px 0px 0px;
	background: linear-gradient(to top, #4682b4, #1e3a5f, #002147, #000A1F);
	padding: 5px;
	
}

.portfolio_header h2 {
	color: #ffffff;
    text-align: center;
    font-family: 'Brullos';
    margin: 20px 0px 20px 0px;
	background: linear-gradient(to top, #4682b4, #1e3a5f, #002147, #000A1F);
	padding: 0px;
	
}


.portfolio_header p {
    font-family: 'Noteworthy-bold';
	letter-spacing: .5px;
	
  
}

/* Gallery Styling */
.gallery {
    display: grid;
	max-width: 1000px;
	padding: 0px;
	
	
}




.portfolio-item {
    background-color: #000000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
	color: #DDF5FF;
	 width: 98%;
	margin: 0px auto;
	margin: 0px 10px;
	
	
}



.portfolio-item img {
    width: 100%;
    height: auto;
    border-bottom: 4px solid #1e3a5f;
	padding: 10px;
	
}

.portfolio-item h3 {
    font-family: 'Brullos';
    text-align: center;
    padding: 10px 0px 10px 0px;
	color: #DDF5FF;
	text-decoration: underline;	
	
	
}

 .portfolio-item p {
    text-align: center;
	color: #DDF5FF;
	 font-family: 'Noteworthy-bold';
	 letter-spacing: .5px;
}


.button-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.btn {
    display: inline-block;
    padding: 5px 10px;
    background: linear-gradient(to top, #87ceeb, #4682b4, #1e3a5f);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
	margin: 0px 0px 20px 0px;
	font-family: "Noteworthy-bold";
}

.btn:hover {
   background: linear-gradient(to bottom, #87ceeb, #4682b4, #1e3a5f);
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}



/* Lightbox Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#lightbox-image {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

#close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

#close-modal:hover {
    color: #87ceeb;
}



/* Gallery Introduction */
.gallery-introduction {
    padding: 10px;
    text-align: center;
    background: linear-gradient(to top, #4682b4, #1e3a5f, #002147, #000A1F);
    color: white;
}

.gallery-introduction p {
    padding: 0;
    font-size: 16px;
    line-height: 20px;
    font-family: 'Noteworthy-bold';
}

/* Thumbnail Gallery Styling */
.thumbnail-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0px 0px 50px 0px;
}

.thumbnail {
    margin: 15px;
    width: 250px;
    transition: transform 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.thumbnail-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}


.thumbnail h4 {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
    text-transform: uppercase;
    font-family: 'Noteworthy-bold';
    text-align: center;
}

.thumbnail-box {
    background: linear-gradient(to top, #4682b4, #1e3a5f, #002147, #000A1F);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Hover Effects */
.thumbnail-title {
    font-size: 12px;
    line-height: 20px;
    font-weight: bold;
    color: #333;
    background-color: #DDF5FF;
    padding: 10px 20px;
    text-align: center;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.thumbnail-title:hover {
    background: linear-gradient(to top, #87ceeb, #4682b4, #1e3a5f);
    color: white;
    transform: scale(1.1);
}

.thumbnail-title:active {
    background-color: #e65c00;
    transform: scale(0.98);
}

/* Additional Styling */
.gallery-navigation button {
    background: linear-gradient(to top, #87ceeb, #4682b4, #1e3a5f);
    color: white;
    border: none;
    padding: 5px 10px;
    margin: 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-family: 'Noteworthy-bold';
}

.gallery-navigation button:hover {
    background-color: #1e3a5f;
}

.close-button {
    background-color: transparent;
    color: #000;
    font-size: 25px;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 1001;
}

.close-button:hover {
    color: #4682b4;
}


/* General styling for client preview section */
.client-private {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 500px;
}

.client-private h3 {
    font-size: 24px;
    color: #004080;
    margin-bottom: 20px;
    text-align: center;
}

.thumbnail-container {
    margin-bottom: 20px;
    text-align: center;
}

#handyaf_thumbnail img {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

#handyaf_thumbnail img:hover {
    transform: scale(1.05); /* Hover effect */
}

.client-private p {
    font-size: 18px;
	line-height: 26px;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

.client-private input[type="text"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

.client-private input[type="password"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

.client-private button {
    width: 100%;
    padding: 14px;
    font-size: 18px;
    background-color: #004080;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.client-private button:hover {
    background-color: #002a59;
}

#handyaf_link {
    text-align: center;
    margin-top: 20px;
}

#handyaf_link a {
    font-size: 16px;
    padding: 12px 20px;
    background-color: #004080;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    box-sizing: border-box;
}

#handyaf_link a:hover {
    background-color: #002a59;
}






/* Fixed Footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 1920px;
    background: black;
    color: white;
    text-align: center;
    padding: 0px 0px 15px 0px;
    margin: 0px auto 0px auto;
    height: 20px;
    font-family: Brullos;
    font-size: 14px;
    line-height: 20px;
}












@media screen and (min-width: 1920px) {
    .body_container {
        margin: 0px auto;
        padding: 0;
        background-color: #000000;
        color: #ffffff; /* Changed to white */
        max-width: 1920px;
        height: auto;
        border: 4px solid rgba(44,168,247,1.00);
 
    }
	
	
.banner {
        height: 700px;
        background-image: url("../img/web_development_page/hero_images/hero_image_1920px.jpg");
    }
	
	
.header-content h1 {
        font-size: 40px;
    	line-height: 40px;
		margin: 20px 0px 0px 0px;
    }

.header-content h2 {
	font-size: 20px;
	line-height: 24px;
	margin: 0px auto 15px auto;
	
}

  .portfolio_header h1 {
        font-size: 30px;
    	line-height: 30px;
		margin: 20px 0px 0px 0px;
    }
	
.portfolio_header h2 {
        font-size: 30px;
    	line-height: 30px;
		margin: 20px 0px 20px 0px;
    }

 .portfolio_header p {
    font-size: 14px;
    line-height: 20px;
    margin: 15px auto 15px auto;
    text-align: left;
    text-indent: 30px;
	 max-width: 1200px;
    
    }

	
.portfolio-item p {
    font-size: 18px;
	line-height: 24px;
	margin: 20px 20px 10px 20px;
	 text-align: left;
	 text-indent: 30px;
	
	
    }
	

.gallery {
   
	
    gap: 30px;
    padding: 20px 10px;

	margin: 0px auto;
	
	
}
	
.portfolio-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-bottom: 4px solid #1e3a5f;
    padding: 5px;
    margin: 0 auto; /* Centers the image horizontally */
    display: block; /* Prevents extra space below the image */
}
	

.portfolio-item h3 {
	font-size: 35px;
	padding: 10px 0px 0px 0px;
	
}

}
	


/* === GENERAL STYLES === */
.thumbnail-icon {
    width: 100px;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto 10px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.thumbnail-icon:hover {
    transform: scale(1.05);
}


    .client-private {
        padding: 30px;
        max-width: 900px; /* Limit max-width for better proportions on large screens */
        margin: 0 auto; /* Center-align content */
        background-color: #f9f9f9;
        border-radius: 8px;
        box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow for a modern feel */
    }

    .client-private h3 {
        font-size: 32px; /* Larger heading for better visibility */
        margin-bottom: 30px;
        text-align: center;
    }

    .thumbnail-container {
        margin-bottom: 30px;
        text-align: center;
    }

    #handyaf_thumbnail img {
        width: 100%; /* Full width for large screens */
        max-width: 400px; /* Limit the image size to avoid excess stretching */
        height: auto;
        border-radius: 8px;
        transition: transform 0.3s ease; /* Smooth hover effect */
    }

    #handyaf_thumbnail img:hover {
        transform: scale(1.05); /* Slight scale-up effect */
    }

    .client-private p {
        font-size: 18px; /* Slightly larger paragraph text */
        margin-bottom: 30px;
        text-align: center;
        color: #333;
    }

    .client-private input[type="password"] {
        width: 100%; /* Full-width input */
        padding: 14px;
        font-size: 18px;
        margin-bottom: 20px;
        border-radius: 5px;
        border: 1px solid #ddd;
        box-sizing: border-box;
    }

    .client-private button {
        width: 100%; /* Full-width button */
        padding: 16px;
        font-size: 20px;
        background-color: #004080;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    .client-private button:hover {
        background-color: #002a59;
    }

    #handyaf_link {
        margin-top: 30px;
    }

    #handyaf_link a {
        font-size: 18px;
        padding: 14px 25px;
        background-color: #004080;
        color: white;
        border-radius: 5px;
        text-decoration: none;
    }

    #handyaf_link a:hover {
        background-color: #002a59;
    }




/* === MEDIA QUERIES === */
@media screen and (max-width: 768px) {
    .client-private {
        padding: 15px;
    }

    .client-private h3 {
        font-size: 18px;
    }

    .client-private p,
    .client-private input[type="password"],
    .client-private button {
        font-size: 14px;
    }

    .thumbnail-icon {
        width: 80px;
    }
}

@media screen and (max-width: 480px) {
    .client-private input[type="password"] {
        width: 100%;
    }

    .thumbnail-icon {
        width: 60px;
    }
}

@media screen and (max-width: 300px) {
    .client-private h3 {
        font-size: 16px;
    }

    .client-private button {
        width: 100%;
        padding: 8px 0;
    }
}




@media (max-width: 1920px) {

    .banner {
        height: 700px;
        background-image: url("../img/web_development_page/hero_images/hero_image_1920px.jpg");
    }
	
	.header-content h1 {
        font-size: 40px;
    	line-height: 40px;
		margin: 20px 0px 0px 0px;
    }

.header-content h2 {
	font-size: 20px;
	line-height: 24px;
	margin: 0px auto 15px auto;
	
}

  .portfolio_header h1 {
        font-size: 30px;
    	line-height: 30px;
		margin: 20px 0px 0px 0px;
    }
	
.portfolio_header h2 {
        font-size: 30px;
    	line-height: 30px;
		margin: 20px 0px 20px 0px;
    }

 .portfolio_header p {
    font-size: 18px;
    line-height: 20px;
    margin: 15px auto 15px auto;
    text-align: left;
    text-indent: 30px;
	 max-width: 1200px;
    
    }

	
.portfolio-item p {
    font-size: 18px;
	line-height: 24px;
	margin: 20px 20px 10px 20px;
	 text-align: left;
	 text-indent: 30px;
	
	
    }
	

.gallery {
   
	
    gap: 30px;
    padding: 20px 10px;

	margin: 0px auto;
	
	
}
	
.portfolio-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-bottom: 4px solid #1e3a5f;
    padding: 5px;
    margin: 0 auto; /* Centers the image horizontally */
    display: block; /* Prevents extra space below the image */
}
	
.portfolio-item h3 {
	font-size: 35px;
	padding: 10px 0px 0px 0px;
	
}

}

	
	







@media (max-width: 1200px) {
  
    .banner {
        height: 400px;
        background-image: url(../img/web_development_page/hero_images/hero_image_1200px.jpg);
    }
	
	.header-content h1 {
        font-size: 40px;
    	line-height: 40px;
		margin: 20px 0px 0px 0px;
    }

   .header-content h2 {
	font-size: 20px;
	line-height: 24px;
	margin: 0px auto 15px auto;
	
}

  .portfolio_header h1 {
        font-size: 30px;
    	line-height: 30px;
		margin: 20px 0px 0px 0px;
    }
	
.portfolio_header h2 {
        font-size: 30px;
    	line-height: 30px;
		margin: 20px 0px 20px 0px;
    }

 .portfolio_header p {
    font-size: 18px;
    line-height: 20px;
    margin: 15px 25px 15px 25px;
    text-align: left;
    text-indent: 30px;
    
    }

	
.portfolio-item p {
    font-size: 18px;
	line-height: 24px;
	margin: 20px 20px 10px 20px;
	 text-align: left;
	 text-indent: 30px;
	
    }
	

.gallery {
   
	
    gap: 30px;
    padding: 20px 10px;

	margin: 0px auto;
	
	
}
	
.portfolio-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-bottom: 4px solid #1e3a5f;
    padding: 5px;
    margin: 0 auto; /* Centers the image horizontally */
    display: block; /* Prevents extra space below the image */
}
	

.portfolio-item h3 {
	font-size: 35px;
	padding: 10px 0px 0px 0px;
	
}

}

	













@media (max-width: 768px) {

	
  .banner {
        height: 350px;
        background-image: url(../img/web_development_page/hero_images/hero_image_768px.jpg);
    }
	
	.header-content h1 {
        font-size: 40px;
    	line-height: 40px;
		margin: 20px 0px 0px 0px;
    }
	
		
.header-content h2 {
	font-size: 20px;
	line-height: 24px;
	margin: 0px auto 15px auto;
	
}

  .portfolio_header h1 {
        font-size: 30px;
    	line-height: 30px;
		margin: 20px 0px 0px 0px;
    }
	
.portfolio_header h2 {
        font-size: 30px;
    	line-height: 30px;
		margin: 20px 0px 20px 0px;
    }

 .portfolio_header p {
    font-size: 18px;
    line-height: 20px;
    margin: 15px 25px 15px 25px;
    text-align: left;
    text-indent: 30px;
    
    }

	
.portfolio-item p {
    font-size: 18px;
	line-height: 24px;
	margin: 20px 20px 10px 20px;
	 text-align: left;
	 text-indent: 30px;
	
    }
	

.gallery {
    display: grid;
    gap: 30px;
    padding: 20px 20px;
	max-width: 500px;
	margin: 0px auto;
	
	
}
	
.portfolio-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-bottom: 4px solid #1e3a5f;
    padding: 5px;
    margin: 0 auto; /* Centers the image horizontally */
    display: block; /* Prevents extra space below the image */
}
	

.portfolio-item h3 {
	font-size: 28px;
	padding: 10px 0px 0px 0px;
	
}
	
    .client-private {
        padding: 15px;
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }

    .client-private h3 {
        font-size: 22px; /* Larger heading for better visibility */
        margin-bottom: 20px;
    }

    .thumbnail-container {
        margin-bottom: 20px;
    }

    #handyaf_thumbnail img {
        width: 100%; /* Make the image responsive */
        max-width: 250px; /* Cap the image width */
        height: auto;
        border-radius: 8px;
        transition: transform 0.3s ease; /* Smooth hover effect */
    }

    #handyaf_thumbnail img:hover {
        transform: scale(1.05); /* Slight scale-up effect */
    }

    .client-private p {
        font-size: 16px; /* Slightly larger paragraph text */
        margin-bottom: 20px;
        text-align: center;
    }

    .client-private input[type="password"] {
        width: 100%; /* Full-width input */
        padding: 12px;
        font-size: 16px;
        margin-bottom: 15px;
        border-radius: 5px;
        border: 1px solid #ddd;
    }

    .client-private button {
        width: 100%; /* Full-width button */
        padding: 14px;
        font-size: 18px;
        background-color: #004080;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    .client-private button:hover {
        background-color: #002a59;
    }

    #handyaf_link {
        margin-top: 20px;
    }

    #handyaf_link a {
        font-size: 16px;
        padding: 12px 20px;
        background-color: #004080;
        color: white;
        border-radius: 5px;
        text-decoration: none;
    }

    #handyaf_link a:hover {
        background-color: #002a59;
    }
}
















@media (max-width: 480px) {

  .banner {
        height: 200px;
        background-image: url(../img/web_development_page/hero_images/hero_image_480px.jpg);
    }
	
	.header-content h1 {
        font-size: 30px;
    	line-height: 30px;
		margin: 20px 0px 0px 0px;
    }
	
		
.header-content h2 {
	font-size: 20px;
	line-height: 24px;
	margin: 0px auto 15px auto;
	
}

 .portfolio_header h1 {
        font-size: 28px;
    	line-height: 30px;
		margin: 20px 0px 0px 0px;
    }
	
.portfolio_header h2 {
        font-size: 28px;
    	line-height: 30px;
		margin: 20px 0px 10px 0px;
    }

 .portfolio_header p {
    font-size: 16px;
    line-height: 20px;
    margin: 0px 15px 5px 15px;
    text-align: left;
    text-indent: 30px;
    
    }

	
	.portfolio-item p {
    font-size: 16px;
	line-height: 22px;
	margin: 10px 25px 5px 25px;
	 text-align: left;
	 text-indent: 30px;
	
    }

.gallery {
    display: grid;
    gap: 30px;
    padding: 20px 10px;
	max-width: auto;
	margin: 0px auto;
	
	
}
	
.portfolio-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-bottom: 4px solid #1e3a5f;
    padding: 0px;
    margin: 0 auto; /* Centers the image horizontally */
    display: block; /* Prevents extra space below the image */
}
	
	
.portfolio-item h3 {
	font-size: 28px;
	padding: 10px 0px 0px 0px;
	
}

}














@media (max-width: 300px) {
	
  .banner {
        height: 175px;
        background-image: url(../img/web_development_page/hero_images/hero_image_300px.jpg);
    }
	
	
	/* Header Content */
.header-content h1 {
   font-size: 30px;
	line-height: 30px;
	margin: 20px auto 0px auto;
    
}

	
.header-content h2 {
	font-size: 20px;
	line-height: 24px;
	margin: 0px 15px 10px 15px;
	
}
	
	.portfolio_header h1 {
        font-size: 28px;
    	line-height: 30px;
		margin: 10px 0px 10px 0px;
    }
	
.portfolio_header h2 {
        font-size: 30px;
    	line-height: 30px;
		margin: 20px 0px 10px 0px;
    }

 .portfolio_header p {
    font-size: 16px;
    line-height: 20px;
    margin: 0px 10px 5px 10px;
    text-align: left;
    text-indent: 30px;
    
    }

	
	.portfolio-item p {
    font-size: 16px;
	line-height: 22px;
	margin: 10px 15px 5px 15px;
	 text-align: left;
	 text-indent: 30px;
	
    }

.gallery {
    display: grid;
    gap: 40px;
    padding: 10px 5px;
}


.portfolio-item h3 {
	font-size: 28px;
	padding: 10px 0px 10px 0px;
	
}
	
	
	 .client-private {
        padding: 10px;
        text-align: center;
    }

    .client-private h3 {
        font-size: 18px; /* Larger heading */
        margin-bottom: 12px;
    }

    .thumbnail-container {
        margin-bottom: 15px;
    }

    #handyaf_thumbnail img {
        width: 100%; /* Full width image */
        max-width: 200px; /* Limit image size */
        height: auto;
        border-radius: 5px;
        transition: transform 0.3s ease; /* Smooth hover effect */
    }

    #handyaf_thumbnail img:hover {
        transform: scale(1.05); /* Slight scale-up effect */
    }

    .client-private p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .client-private input[type="password"] {
        width: 100%; /* Full-width input */
        padding: 8px;
        font-size: 14px;
        margin-bottom: 10px;
        border-radius: 5px;
        border: 1px solid #ddd;
    }

    .client-private button {
        width: 100%; /* Full-width button */
        padding: 10px;
        font-size: 16px;
        background-color: #004080;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    .client-private button:hover {
        background-color: #002a59;
    }

    #handyaf_link {
        margin-top: 20px;
    }

    #handyaf_link a {
        font-size: 14px;
        padding: 10px;
        background-color: #004080;
        color: white;
        border-radius: 5px;
        text-decoration: none;
    }

    #handyaf_link a:hover {
        background-color: #002a59;
    }
}







	



