body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #f3e5f5, #e0f7fa, #f3e5f5);
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
    border-bottom: 1px solid #eaeaea;
    position: relative;
}

.navbar-left {
    display: flex;
    align-items: center;
    margin-left: 2%;
}

.logo {
    width: 70px;
    height: 70px;
    margin-right: 10px;
}

.app-name {
    font-size: 1.5em;
    background: linear-gradient(45deg, #36e2d9, #4B0082, #003366);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 2%;
}

.navbar-right a {
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 1em;
}

.sign-in {
    color: #38b2ac;
    border: 1px solid #38b2ac;
}

.get-started {
    background-color: #38b2ac;
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background-color: #333 !important;
    margin: 4px 0;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .navbar-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar-right.active {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: white;
        border-top: 1px solid #eaeaea;
    }
}















.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    margin: 5% auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.form-container, .cv-preview {
    width: 100%;
    padding: 20px;
    background-color: white;
    margin-bottom: 20px;
}

.form-container h2, .form-container label {
    color: #333;
}

.form-section {
    margin: 20px 0;
}

.form-section label {
    display: block;
    margin: 5px 0;
}

.form-section input, .form-section textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-container button {
    padding: 10px 20px;
    background-color: #2b3a67;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.form-container button:hover {
    background-color: #1d2a4b;
}

.cv-preview {
    display: flex;
    flex-direction: column;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.header {
    background-color: white;
    padding: 20px;
    border-bottom: 1px solid #ddd;
    
}

.header h1 {
    font-size: 24px;
    margin: 0;
}

.header p {
    margin: 5px 0;
}

.header #contact-preview {
    font-size: 14px;
    color: #666;
}

.cv-content {
    padding: 20px;
}

.section {
    margin-bottom: 20px;
}

.section h3 {
    font-size: 18px;
    border-bottom: 2px solid black;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.section p {
    font-size: 14px;
    margin-bottom: 10px;
}

.action-buttons {
    display: flex;
    
    gap: 20px;
    margin-bottom: 20px;
}

.action-buttons button {
    padding: 10px 20px;
    background-color: #123908;
    color: white;
    border: none;
      border-radius: 4px;
    cursor: pointer;
    margin-top: 3%;
}

.action-buttons button:hover {
    background-color: #1d2a4b;
}

/* CV Preview Styles */
.cv-preview .section h3 {
    font-size: 18px;
    /* background: linear-gradient(45deg, #16938c, #4B0082, #003366); */
    color: black;
    
    font-weight: bold;
}























.footer {
    background-color: #fff;
    color: #333; 
    padding: 2rem;
    border-top: 1px solid #ddd; 
    margin-top: 5%;
}

.footer h3 {
    background: linear-gradient(45deg, #36e2d9, #4B0082, #003366);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 1.5rem;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.footer-top > div {
    flex: 1;
    padding: 0 1rem;
    min-width: 200px; /* Ensure blocks don't shrink too much */
}

.logo img {
    max-width: 150px; /* Adjust logo size */
    width: 100%; /* Make logo responsive */
    height: auto;
}

.logo h4 {
    font-size: 1.25rem; /* Responsive text size */
    margin-top: 0.5rem;
}

.quick-links, .social-media, .contact {
    margin-top: 1rem;
}

.quick-links ul, .social-media ul {
    list-style: none;
    padding: 0;
}

.quick-links li, .social-media li {
    margin-bottom: 0.5rem;
}

.quick-links a, .social-media a {
    color: black; 
    text-decoration: none;
}

.quick-links a:hover, .social-media a:hover {
    text-decoration: underline;
}

.social-icon::before {
    content: ''; 
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #007bff; 
    border-radius: 50%;
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 3%;
    height: 20px;
}

.footer-bottom hr {
    border: 0;
    border-top: 1px solid #0e0e0e72;
    margin: 1rem 0;
}

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.875rem; /* Adjusted for better readability on small screens */
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center; /* Center align content for smaller screens */
    }
    
    .footer-top > div {
        padding: 0.5rem 0;
    }

    .footer h3 {
        font-size: 1.25rem; /* Adjusted heading size for mobile */
    }
}
