body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #f3e5f5, #e0f7fa, #f3e5f5);
    overflow-x: hidden;
}

.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;
    }
}

/* intro */
.intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.intro-left {
    flex: 1;
    max-width: 30%;
    margin-left: 5%;
}

.intro-left h1 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.build-resume-btn {
    display: inline-block;
    padding: 20px 30px;
    font-size: 1em;
    color: white !important;
    background-color: #38b2ac !important;
    border: none;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.build-resume-btn:hover {
    background-color: #2c9a8a !important;
}

.intro-right {
    flex: 1;
    max-width: 50%;
    position: relative;
    overflow: hidden;
}

/* Carousel container */
.carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 600px;
    /* Default height */
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Media Queries for Responsive Design */
@media (max-width: 1200px) {
    .intro {
        flex-direction: column;
        padding: 20px;
    }

    .intro-left {
        max-width: 100%;
        margin-left: 0;
        text-align: center;
    }

    .intro-right {
        max-width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .intro-left h1 {
        font-size: 1.2em;
    }

    .build-resume-btn {
        padding: 15px 25px;
        font-size: 0.9em;
    }

    .carousel {
        height: 250px;
        /* Adjusted height for smaller screens */
    }
}

@media (max-width: 480px) {
    .intro-left h1 {
        font-size: 1em;
    }

    .build-resume-btn {
        padding: 10px 20px;
        font-size: 0.8em;
    }

    .carousel {
        height: 200px;
        /* Adjusted height for very small screens */
    }
}



























/* temp */
.temp-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.temp-slider {
    white-space: nowrap;
    transition: transform 0.3s ease-in-out;
}

.temp-slider-item {
    display: inline-block;
    position: relative;
    width: 300px;
    margin-right: 15px;
}

.temp-slider-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.temp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.temp-slider-item:hover .temp-overlay {
    opacity: 1;
}

.temp-overlay button {
    background-color: #38b2ac;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.temp-heading {
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 34px;
    background: linear-gradient(45deg, #36e2d9, #4B0082, #003366);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.temp-slider-container {
    position: relative;
}

.temp-slider-container .btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* background-color: rgba(0, 0, 0, 0.5); */
    color: black;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
}

.temp-prev {
    left: 10px;
}

.temp-next {
    right: 10px;
}

/* Ensure the buttons are larger on smaller screens */
@media (max-width: 768px) {
    .temp-prev, .temp-next {
        padding: 15px;
    }
}










.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Modal content */
.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    position: relative;
    border-radius: 10px;
    text-align: center;
}

/* Close button */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

/* Login button */
#loginButton {
    background-color: #2b3a67;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

#loginButton:hover {
    background-color: #1d2a4b;
}


























/* Banner Styles */
.banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    margin-top: 8%;
}
.banimg {
    flex: 1 1 40%;
    max-width: 40%;
    padding: 10px;
}
.bantxt {
    flex: 1 1 50%;
    max-width: 50%;
    padding: 10px;
}
.bantxt img {
    width: 100%;
    height: auto;
    margin-top: 20px;
}
.banimg img {
    width: 100%;
    height: auto;
}
@media (max-width: 768px) {
    .banimg, .bantxt {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

















/* review */
.review {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    margin-left: 10%;
}

.review-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    flex: 1;

    transition: transform 0.3s ease; /* Add transition for smooth effect */
}

.review-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(3, 25, 67, 0.2);
}
.avatar {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.quote {
    font-size: 1em;
    margin: 20px 0;
    font-style: italic;
    color: #555;
}

.author {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.title {
    color: #777;
    margin-bottom: 5px;
}

.company {
    font-size: 0.9em;
    color: #36D7B7;
}

@media (max-width: 768px) {
    .review {
        flex-direction: column;
        align-items: center;
    }

    .review-card {
        margin-bottom: 20px;
    }
}















.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 */
    }
}
