@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700');
@import url('https://fonts.googleapis.com/css?family=Roboto');

/*===========================================
Base CSS
============================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("background.jpg");
    background-size: cover; 
    background-attachment: fixed; 
    min-height: 100vh; 
    font-family: 'Quicksand', sans-serif;
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    overflow-y: auto; 
    overflow-x: hidden;
    margin: 0px;
}

label {
    padding: 0;
    margin: 0;
}

ul,
li,
ol {
    padding: 0;
    margin: 0;
}

a,
img {
    border: 0;
    outline: none;
    text-decoration: none;
}

input::-moz-focus-inner {
    border: 0;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

input,
select,
textarea,
button {
    font-family: 'Quicksand', sans-serif; 
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: 0;
}

a {
    color: inherit;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

p {
    margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: "Quicksand", Arial, sans-serif;
    font-weight: 400;
    margin: 0 0 30px 0;
}

/*===========================================
Text Styles CSS
============================================*/
.t-title-size {
    font-size: 18px;
}

.t-bold {
    font-weight: 600;
}

.t-normal {
    font-weight: normal;
}

.t-center {
    text-align: center;
}

.t-right {
    text-align: right;
}

/*===========================================
Padding & Margins CSS
============================================*/
.p-5 { padding: 5px; } .p-10 { padding: 10px; } .p-15 { padding: 15px; } .p-20 { padding: 20px; } .p-25 { padding: 25px; } .p-30 { padding: 30px; } .p-35 { padding: 35px; } .p-40 { padding: 40px; } .p-45 { padding: 45px; } .p-50 { padding: 50px; } 
.p-right5 { padding-right: 5px; } .p-right10 { padding-right: 10px; } .p-right15 { padding-right: 15px; } .p-right20 { padding-right: 20px; } .p-right25 { padding-right: 25px; } .p-right30 { padding-right: 30px; } 
.p-left5 { padding-left: 5px; } .p-left10 { padding-left: 10px; } .p-left15 { padding-left: 15px; } .p-left20 { padding-left: 20px; } .p-left25 { padding-left: 25px; } .p-left30 { padding-left: 30px; } 
.m-5 { margin: 5px; } .m-10 { margin: 10px; } .m-15 { margin: 15px; } .m-20 { margin: 20px; } .m-25 { margin: 25px; } .m-30 { margin: 30px; } .m-35 { margin: 35px; } .m-40 { margin: 40px; } .m-45 { margin: 45px; } .m-50 { margin: 50px; } 

/*===========================================
Display Styles
============================================*/
.d-flex {
    display: flex;
}

.d-flex-align-center {
    display: flex;
    align-items: center;
    flex-direction: row; 
}

.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

/*===========================================
Page Styles
============================================*/
.page-wrapper {
    min-height: 100vh;          
    padding: 20px;              
    box-sizing: border-box;     
}
.container {
    background-color: #ffffff;
    width: 90%;
    margin: auto; 
    padding: 0; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row; 
    border-radius: 20px;
    overflow: hidden;
}

.left-content {
    flex: 0 0 300px; 
    overflow-y: auto;
    height: auto;
    background: #fff;
    border-right: 1px solid rgba(221, 221, 221, 0.38);
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    overflow-y: auto;
    background: #fff;
}

.logo {
    display: flex;
    justify-content: flex-end;
}

.logo a {
    color: #fff;
    text-align: right;
    background: #000;
    display: flex;
    flex-direction: column;
    padding: 10px;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 30px;
    font-weight: 500;
}

.link a:hover {
    color: #000;
    text-decoration: underline;
}

.nav {
    flex-grow: 1; 
    justify-content: flex-end;
    margin: 50px 0px;
}

.nav ul li,
.nav ul li a {
    display: flex;
    justify-content: flex-end;
}

.nav ul li a {
    padding: 8px 0px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
    transition: color 0.5s;
}

.nav ul li a:hover {
    color: #000;
}

.nav ul li a:after {
    content: "";
    width: 0;
    height: 1px;
    background: #000;
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    transform: scaleX(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav ul li a:hover:after {
    width: 100%;
    transform: scaleX(1);
}

.left-footer {
    color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    margin-top: auto; 
}

.foot-contact,
.social-icons ul,
.copy-rights {
    display: flex;
    justify-content: flex-end;
}

.social-icons ul li {
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
}

.foot-contact ul {
    display: flex;
    flex-direction: column;
}

.foot-contact ul li {
    justify-content: flex-end;
    display: flex;
    margin: 2px 0px;
}

.foot-contact {
    margin: 5px 0px;
}

.social-icons ul li a {
    padding: 5px 8px;
    font-size: 16px; 
}

.social-icons ul li a:hover {
    color: #000;
    transform: scale(1.2) translateY(-5px);
}

.user-profile {
    padding-left: 50px;
}

.sm-text {
    letter-spacing: 2.1px;
    font-weight: normal;
    color: #222222;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
}

.name {
    font-size: 40px;
    text-transform: uppercase;
    margin: 15px 0px;
    color: #222222;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}

.role {
    font-size: 18px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #222222;
}

.text {
    font-size: 15px;
}

.pr-list {
    margin: 30px 0px;
}

.pr-list ul li {
    margin-bottom: 8px;
}

.pr-list ul li i {
    width: 18px;
}

.sec-title {
    margin-bottom: 50px;
}

.pg-title {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1.8;
    color: #000;
}

.pg-sub-title {
    margin-bottom: 10px;
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: #999999;
    font-weight: 500;
    letter-spacing: 5px;
}

/*===========================================
form styling
============================================*/

.contact-form {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 40px auto;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
}

.contact-form button[type="submit"] {
    padding: 12px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button[type="submit"]:hover {
    background-color: #0056b3;
}

/*===========================================
RESPONSIVE DESIGN
============================================*/

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        width: 100%;
        height: auto;
        margin: 0;
        border-radius: 0;
    }

    .left-content {
        flex: 0 0 auto;
        width: 100%; 
        height: auto; 
        border-right: none;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding-bottom: 15px; 
        padding-top: 15px; 
    }

    .logo {
        justify-content: center; 
        margin-bottom: 15px; 
    }
    .logo a {
        text-align: center; 
        padding: 5px; 
        font-size: 16px;
        line-height: 25px;
    }

    .nav {
        flex-grow: 0;
        margin: 15px 0px; 
    }
    .nav ul {
        display: flex;
        flex-wrap: wrap; 
        justify-content: center; 
        padding: 0;
        list-style: none;
    }
    
    .nav ul li {
        margin: 5px 10px;
        flex-shrink: 0; 
    }

    .left-footer {
        justify-content: center;
        margin-top: 20px; 
        text-align: center; 
    }
    .foot-contact,
    .social-icons ul,
    .copy-rights {
        justify-content: center; 
    }
    .foot-contact ul, .social-icons ul {
        flex-direction: row; 
        flex-wrap: wrap; 
    }
    .foot-contact ul li, .social-icons ul li {
        margin: 5px 10px; 
    }
    .social-icons ul li a {
        font-size: 2em; 
    }

    .main-content {
        width: 100%; 
        margin-left: 0; 
        padding-top: 20px; 
        border-left: none;
    }

    .main-content .d-flex-align-center {
        flex-direction: column; 
        align-items: center;
    }

    .main-content .user-img {
        margin-bottom: 20px;
        width: 100%; 
        text-align: center; 
    }
    .main-content .user-img img {
        max-width: 200px; 
        border-radius: 50%; 
    }

    .main-content .user-profile {
        padding-left: 0; 
        text-align: center; 
    }
    .name {
        font-size: 2.5em;
        margin-top: 10px;
    }
    .role {
        font-size: 1.2em;
    }

    .pg-title {
        font-size: 1.5em;
        text-align: center; 
        letter-spacing: 3px; 
        margin-bottom: 20px;
    }
    .sec-title {
        margin-bottom: 30px;
    }

    .contact-form {
        max-width: 95%;
        margin: 20px auto;
        padding: 15px;
    }
}