* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif; /* Clean and modern */
}

/* Body styling */
body {
    background-color: #1A1A2E; /* Deep midnight blue */
    color: #EAEAEA; /* Soft off-white */
}


/* Navbar */
.navbar {
    display: flex;
    background-color: #1A1A2E; /* Deep midnight blue */
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    box-shadow: 2px 2px 10px rgba(255, 180, 0, 0.3);
}

/* Logo */
.logo {
    font-size: 23px;
    font-weight: bold;
    color: #EAEAEA;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #EAEAEA;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #FEC260; /* Warm golden yellow */
    text-shadow: 0px 4px 12px rgba(254, 194, 96, 0.6); /* Subtle glow effect */
}

/* Login Button */
.login-btn {
    background-color: #FEC260;
    color: #1A1A2E;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.login-btn:hover {
    background-color: #EAEAEA; /* Soft off-white */
    box-shadow: 0px 4px 12px rgba(254, 194, 96, 0.6); /* Enhanced warm glow */
}

/* Login Modal login button in navbar */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease-in-out;
}

.modal-container {
    background: #1A1A2E;
    padding: 25px;
    border-radius: 12px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 180, 0, 0.5);
    animation: slideUp 0.4s ease-in-out;
}

.close-btn {
    float: right;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

/* Input Fields */
input {
    display: block;
    width: 85%;
    margin: 12px auto;
    padding: 10px;
    border: 2px solid #FFB400;
    background: none;
    color: white;
    font-size: 16px;
}

/* Password Field */
.password-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-password {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

/* Login Button */
.submit-login {
    background: linear-gradient(45deg, #FFB400, #FF8800);
    padding: 12px;
    border: none;
    cursor: pointer;
    color: #1A1A2E;
    font-weight: bold;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Resume Analyzer Section------------------------------------------------------------------------------- */
.resume-analyzer {
    background-color: #1A1A2E; /* Deep midnight blue */
    padding: 60px 5%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

/* Analyzer Container */
.analyzer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
}

/* Text Content */
.text-content {
    max-width: 500px;
    text-align: left;
}

.text-content h2 {
    font-size: 36px;
    color:  #FFB400;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: color 0.3s ease-in-out;
}

.text-content h2:hover {
    color: #FF8800;
}

.text-content p {
    font-size: 21px;
    color: #EAEAEA;
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 300;
}

/* File Upload */
.text-content input {
    display: block;
    margin-bottom: 15px;
    margin-left: 2px;
    padding: 12px;
    width: 90%;
    border: 2px solid #FFB400;
    background: none;
    color: #EAEAEA;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.text-content input:hover {
    border-color: #FF8800;
}

/* Analyze Button */
.analyze-btn {
    background: linear-gradient(45deg, #FFB400, #FF8800);
    color: #1A1A2E;
    padding: 14px 32px;
    border: none;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;
    box-shadow: 6px 6px 18px rgba(255, 180, 0, 0.4);
    transition: all 0.4s ease-in-out;
    border-radius: 10px;
}

.analyze-btn:hover {
    background: linear-gradient(45deg, #FF8800, #FF5500);
    box-shadow: 8px 8px 22px rgba(255, 180, 0, 0.6);
    transform: scale(1.05);
}
.image {
    width: 60%; /* Adjust width as needed */
    text-align: right; /* Keeps the image aligned */
}

.image img {
    max-width: 100%; /* Ensures responsiveness */
    height: 220px; /* Maintains aspect ratio */
    border-radius: 10px; /* Soft edges */
    box-shadow: 6px 6px 18px rgba(255, 180, 0, 0.4); /* Subtle glow */
}


/* Results Section */
.results {
    max-width: 950px;
    width: 100%;
    padding: 40px;
    background-color: #1A1A2E;
    box-shadow: 8px 8px 24px rgba(255, 180, 0, 0.5);
    border-radius: 14px;
    text-align: left;
    animation: fadeIn 1s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* Title Styling */
.results h3 {
    font-size: 32px;
    color: #FFB400;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

/* Resume Insights */
.resume-insights {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

/* Individual Insight Box */
.insight {
    background: rgba(255, 180, 0, 0.15);
    padding: 20px;
    border-radius: 12px;
    width: 45%;
    text-align: center;
    font-size: 18px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
}

/* Hover Effects */
.insight:hover {
    transform: scale(1.07);
    box-shadow: 6px 6px 20px rgba(255, 180, 0, 0.6);
}

/* Insight Titles */
.insight h4 {
    color: #FFB400;
    font-size: 24px;
    font-weight: bold;
}

/* Insight Text */
.insight p {
    color: #EAEAEA;
    font-size: 20px;
    font-weight: 300;
    transition: opacity 0.3s ease-in-out;
}

/* Dynamic AI Suggestion Box */
.suggestion-box {
    background: rgba(255, 180, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: center;
    font-size: 20px;
    color: #EAEAEA;
    font-weight: 400;
    transition: transform 0.3s ease-in-out;
}

.suggestion-box:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(255, 180, 0, 0.5);
}

/* Loading Animation */
.loading-animation {
    font-size: 22px;
    font-weight: bold;
    color: #FFB400;
    text-align: center;
    animation: pulse 1.5s infinite alternate;
}
.reset-btn {
    background: linear-gradient(45deg, #FFB400, #FF8800);
    color: #1A1A2E;
    padding: 14px 32px;
    border: none;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    box-shadow: 6px 6px 18px rgba(255, 180, 0, 0.4);
    transition: all 0.4s ease-in-out;
    border-radius: 10px;
    cursor: pointer;
    display: block;
    margin: 20px auto;
}

.reset-btn:hover {
    background: linear-gradient(45deg, #FF8800, #FF5500);
    box-shadow: 8px 8px 22px rgba(255, 180, 0, 0.6);
    transform: scale(1.05);
}

/* Keyframe Animations */
@keyframes pulse {
    0% { opacity: 1; }
    100% { opacity: 0.6; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styling */
@media (max-width: 768px) {
  /* NAVBAR */
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .login-btn {
    width: 100%;
    text-align: center;
  }

  /* ANALYZER SECTION */
  .analyzer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .text-content {
    width: 100%;
    padding: 0 20px;
  }

  .text-content h2 {
    font-size: 26px;
  }

  .text-content p {
    font-size: 16px;
    line-height: 1.5;
  }

  .text-content input,
  .analyze-btn {
    width: 90%;
    font-size: 16px;
  }

  .image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .image img {
    max-width: 90%;
    height: auto;
  }

  /* RESUME INSIGHTS SECTION */
  .resume-insights {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .insight {
    width: 95%;
  }
}


/* about section----------------------------------------------------------------------------------------- */

#about-section {
    background: linear-gradient(135deg, #042d4b, #141421);
    padding: 80px 5%;
    text-align: center;
    position: relative;
}

/* About Title */
.about-container h2 {
    font-size: 34px;
    color: #FFB400;
    margin-bottom: 25px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
}

.about-container h2:hover {
    color: #FF8800;
    text-shadow: 0px 0px 8px rgba(255, 180, 0, 0.7);
}

.about-container p {
    font-size: 18px;
    color: #EAEAEA;
    margin-bottom: 35px;
    max-width: 750px;
    margin: auto;
    line-height: 1.6;
}

/* Project Details */
.project-details {
    background-color: #141421;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 4px 4px 14px rgba(255, 180, 0, 0.4);
    margin-bottom: 45px;
    transition: transform 0.3s ease-in-out;
}

.project-details:hover {
    transform: scale(1.02);
}

.project-details h3 {
    color: #FFB400;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: bold;
}

.project-details ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.project-details ul li {
    font-size: 16px;
    color: #EAEAEA;
    padding: 10px 15px;
    background-color: #222241;
    border-radius: 8px;
    box-shadow: 3px 3px 10px rgba(255, 180, 0, 0.3);
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.project-details ul li:hover {
    background: linear-gradient(45deg, #FFB400, #FF8800);
    color: #1A1A2E;
    transform: scale(1.04);
}

/* Testimonials */
.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: auto;
    padding: 40px;
}

/* Individual Review Styling */
.review {
    width: 250px;
    background: linear-gradient(45deg, #111741, #141421);
    padding: 22px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center;
}

.review:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.7);
}

/* Reviewer Images */
.review img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    box-shadow: 3px 3px 10px rgba(255, 180, 0, 0.5);
    border: 2px solid #FFB400;
}

/* Review Text Styling */
.review-text h3 {
    font-size: 18px;
    color: #0ed79b;
    font-weight: bold;
    margin-bottom: 5px;
}

.review-text p {
    font-size: 15px;
    color: #23b88e;
    line-height: 1.5;
}

/* Star Ratings */
.rating {
    display: block;
    margin-top: 5px;
    font-size: 18px;
    font-weight: bold;
    color: #FFD700; /* Golden Stars */
}
/* responsive style */
@media (max-width: 768px) {
  #about-section {
    padding: 50px 5%;
  }

  .about-container h2 {
    font-size: 26px;
  }

  .about-container p {
    font-size: 16px;
    max-width: 100%;
    padding: 0 15px;
  }

  .project-details {
    padding: 20px;
    margin-bottom: 30px;
  }

  .project-details h3 {
    font-size: 20px;
  }

  .project-details ul {
    flex-direction: column;
    gap: 15px;
  }

  .project-details ul li {
    font-size: 15px;
    padding: 8px 12px;
    width: 100%;
    text-align: center;
  }

  .testimonials {
    flex-direction: column;
    gap: 25px;
    padding: 20px 15px;
  }

  .review {
    width: 100%;
    max-width: 300px;
    margin: auto;
  }

  .review img {
    width: 80px;
    height: 80px;
  }

  .review-text h3 {
    font-size: 16px;
  }

  .review-text p {
    font-size: 14px;
  }

  .rating {
    font-size: 16px;
  }
}

/* Services Section-------------------------------------------------------------------------------------- */

#services {
    padding: 80px 6%;
    text-align: center;
     background: linear-gradient(135deg, #0F2C26, #1B4B5A);
}

/* Services Container */
.services-container h2 {
    font-size: 34px;
    color: #FFB400;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.services-container p {
    font-size: 17px;
    color: #D4D4D4;
    margin-bottom: 35px;
    font-family: 'Roboto', sans-serif;
}

/* Service Boxes */
.service-boxes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Individual Service Box */
.service-box {
    background: rgba(255, 255, 255, 0.09);
    padding: 24px;
    border-radius: 14px;
    backdrop-filter: blur(12px);
    box-shadow: 6px 6px 14px rgba(255, 180, 0, 0.3);
    width: 270px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Service Image */
.service-box img {
    width: 90px;
    margin-bottom: 12px;
}

/* Service Title */
.service-box h3 {
    color: #FFB400;
    font-size: 22px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

/* Service Description */
.service-box p {
    font-size: 15px;
    color: #EAEAEA;
    font-family: 'Roboto', sans-serif;
}

/* Hover Effects */
.service-box:hover {
    transform: scale(1.06);
    box-shadow: 7px 7px 18px rgba(255, 180, 0, 0.4);
}

/* Updated Create Resume Box */
.create-resume {
    background: rgba(255, 255, 255, 0.09);
    padding: 24px;
    border-radius: 14px;
    backdrop-filter: blur(12px);
    box-shadow: 6px 6px 14px rgba(255, 180, 0, 0.3);
    transition: transform 0.3s ease-in-out;
    text-align: center;
}

.create-resume h3 {
    color: #FFB400;
}

.create-resume:hover {
    transform: scale(1.06);
}

/* Resume Button */
.resume-btn {
    background-color: #FFB400;
    padding: 12px 20px;
    border: none;
    font-size: 17px;
    font-weight: bold;
    color: #1E1231;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.resume-btn:hover {
    background-color: #FF8800;
    color: #EAEAEA;
    transform: scale(1.05);
}









/* Contact section--------------------------------------------------------------------------------------- */

#contact {
    background: linear-gradient(135deg, #1B0F2A, #331F48);
    padding: 60px 5%;
    text-align: center;
}

/* Contact Container */
.contact-container h2 {
    font-size: 32px;
    color: #FFB400;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.contact-container p {
    font-size: 16px;
    color: #D4D4D4;
    margin-bottom: 30px;
}

/* Contact Form */
.contact-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border-radius: 14px;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0px 6px 18px rgba(255, 180, 0, 0.2);
}

/* Input Fields */
.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #FFB400;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #D4D4D4;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #FF8800;
    box-shadow: 0px 0px 10px rgba(255, 180, 0, 0.4);
}

/* Textarea */
.contact-form textarea {
    height: 120px;
    resize: none;
}

/* Button */
.send-btn {
    background: linear-gradient(135deg, #FFB400, #FF8800);
    padding: 12px 24px;
    border: none;
    font-size: 17px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 4px 4px 12px rgba(255, 180, 0, 0.3);
    transition: all 0.3s;
    border-radius: 8px;
}

.send-btn:hover {
    background: linear-gradient(135deg, #FF8800, #FFB400);
    transform: scale(1.07);
}

/* Contact Details */
.contact-details {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Contact Item */
.contact-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 22px;
    border-radius: 14px;
    backdrop-filter: blur(8px);
    box-shadow: 6px 6px 14px rgba(255, 180, 0, 0.2);
    transition: transform 0.3s;
}

.contact-item:hover {
    transform: scale(1.05);
}

.contact-item h3 {
    color: #FFB400;
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 15px;
    color: #D4D4D4;
}


/* Loading Animation */
#loading {
    display: none;
    text-align: center;
    font-size: 16px;
    color: #FFB400;
}

/* Error & Success Messages */
.error-box, .success-box {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: fadeIn 0.3s ease-in-out;
}

.error-box {
    background-color: #E74C3C;
}

.success-box {
    background-color: #27AE60;
}

/* Smooth Fade Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Character Count Display */
#charCount {
    font-size: 14px;
    color: #D4D4D4;
    text-align: left;
    margin-top: 5px;
}


/* footer page----------------------------------------------------------------------------------------- */

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background-color: #1a0c25;
    color: #EAEAEA;
}
