.page-content{
    height: 100vh;
    width: 90%;
}
.header{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    align-items: baseline;
}
.content{
    display: flex;
    width: 100%;
    height: 90%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.row{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 15px;
}
.buttonClass{
    background: #92a6bc;
    padding: 20px 20px;
    font-size: 20px;
    border-radius: 5px;
    width: 250px;
    margin: 0px 20px;
    transition: all 0.4s ease-in-out;
}
.buttonClass:hover{
    background: #417cbd;
}
.buttonClass:hover a{
    color: white;
}
.buttonClass a{
    width: 100%;
    height: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    padding: 20px 0px;
    font-weight: 600;
    color: black;
}
.deactivate{
    background:lightgray!important;
    cursor: not-allowed!important;
}
.deactivate a{
    color: initial!important;
    cursor: not-allowed!important;
    pointer-events: none;
}

.user-icon{
    height: 30px;
    width: 30px;
    background: none;
    padding: 2px;
    font-size: 20px;
}          
.user-icon::before{
    content: " ";
    display: block;
    height: 0.5em;
    width: 0.5em;
    background: skyblue;
    position: relative;
    left: calc(50% - 0.25em);
    top: 0.25em;
    border-radius: 50%;
}
.user-icon::after{
    content: " ";
    display: block;
    height: 0.6em;
    width: 1em;
    background: skyblue;
    position: relative;
    left: calc(50% - 0.5em);
    top: 0.3em;
    border-radius: 50% 50% 0 0;
}    
.home-layout{
      width: 95%;
  padding: 2em;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6.5px);
} 
        section {
            padding: 60px 0;
        }
        
        h1, h2, h3 {
            margin-bottom: 20px;
            color: #2c3e50;
        }
        
        p {
            margin-bottom: 15px;
        }
        
        .btn {
            display: inline-block;
            background-color: #3498db;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #2980b9;
        }
        
        /* Header */
        header {
            background-color: #2c3e50;
            color: white;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #3498db;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            color: white;
            text-align: center;
            padding: 100px 0;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: white;
        }
        
        .hero p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        /* About Section */
        .about {
            background-color: white;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            text-align: center;
        }
        
        .about-image img {
            max-width: 80%;
            border-radius: 10px;
        }
        
        /* Process Section */
        .process {
            background-color: #f5f7fa;
            padding: 60px;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
        }
        
        .step {
            flex: 1;
            min-width: 250px;
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            transition: transform 0.3s;
        }
        
        .step:hover {
            transform: translateY(-10px);
        }
        
        .step-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: #3498db;
        }
        
        /* CTA Section */
        .cta {
            background-color: #2c3e50;
            color: white;
            text-align: center;
        }
        
        .cta h2 {
            color: white;
        }
        
        .cta .btn {
            background-color: #3498db;
            margin-top: 20px;
        }
        
        
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 15px;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 10px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
        }
