html {
    scroll-behavior: smooth;
    scroll-padding-top: 30px;
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

[class*="reveal"] {
    visibility: hidden;
}

[class*="reveal"].visible {
    visibility: visible;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hanken Grotesk', sans-serif;
    color: #000000;
    background-color: #ffffff;
}

.page-wrapper {
    overflow-x: hidden;
}

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

.site-header {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area .logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-area .logo img {
    height: 50px;
    width: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-nav ul li a {
    text-decoration: none;
    color: #000000;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.main-nav ul li a:hover {
    color: #1a4d6e;
}

.main-nav ul li a.active {
    color: #1a4d6e;
}

.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px 0;
}

.hero-content {
    margin-top: -60px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.title-gold {
    /* font-family: 'Anton', sans-serif; */
    font-size: clamp(32px, 5vw, 64px);
    color: #eec170;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-weight: bold;
}

.title-blue {
    /* font-family: 'Anton', sans-serif; */
    font-size: clamp(24px, 4vw, 54px);
    color: #add8e6;
    letter-spacing: 3px;
    font-weight: bold;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');

.hero-banner {
  background-color: #1e2024;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
  color: #ffffff;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  font-family: 'Montserrat', sans-serif;
}

.content-wrapper {
  /* max-width: 1000px; */
  width: 100%;
}

.tagline {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.main-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 15px;
  letter-spacing: 2px;
  line-height: 1.2;
}

.description {
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  margin-bottom: 40px;
  text-transform: uppercase;
  opacity: 0.9;
}

.cta-btn {
  display: inline-block;
  background-color: #ffffff;
  color: #1e2024;
  text-decoration: none;
  padding: 12px 35px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 1px solid #ffffff;
}

.cta-btn:hover {
  background-color: transparent;
  color: #ffffff;
}

@media (max-width: 768px) {
  .hero-banner {
    padding: 40px 15px;
  }
  .description {
    font-size: 0.8rem;
    line-height: 1.6;
  }
}

.history-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.history-header {
    text-align: center;
    margin-bottom: 50px;
}

.history-title {
    color: #00695c;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.history-icon {
    display: flex;
    justify-content: center;
}

.bell-icon {
    width: 32px;
    height: 32px;
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.history-text p {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1rem;
}

.history-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 25px;
}

.history-quote {
    font-style: normal;
    margin-top: 30px;
}

.history-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 850px) {
    .history-grid {
        grid-template-columns: 1fr;
    }
    .history-image {
        order: -1;
        margin-bottom: 30px;
    }
    .history-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .history-section {
        padding: 20px 15px;
    }
    .history-text p {
        text-align: left;
    }
}

.symptoms-section {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    background-color: #2b3648;
}

.symptoms-container {
    background-color: #2b3648;
    width: 100%;
    max-width: 1000px;
    display: flex;
    color: #ffffff;
    padding: 40px 0px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.3); */
}

.symptoms-left {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255,255,255,0.1);
    padding-right: 20px;
}

.symptoms-illustration {
    text-align: center;
    width: 100%;
}

.symptoms-img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    margin-bottom: 20px;
    filter: contrast(1.1);
}

.symptoms-handwritten {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 3rem;
    margin: 0;
    letter-spacing: 2px;
    opacity: 0.8;
    text-transform: uppercase;
}

.symptoms-right {
    flex: 1;
    padding-left: 40px;
}

.symptoms-header {
    text-align: center;
    margin-bottom: 40px;
}

.symptoms-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.symptoms-bell svg {
    width: 24px;
    height: 24px;
    animation: ring 2s ease infinite;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px;
}

.symptom-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.symptom-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: #a0aec0;
}

.symptom-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes ring {
    0%, 100% { transform: rotate(0); }
    10%, 30%, 50%, 70% { transform: rotate(10deg); }
    20%, 40%, 60%, 80% { transform: rotate(-10deg); }
}

@media (max-width: 768px) {
    .symptoms-container {
        flex-direction: column;
        padding: 20px;
    }
    .symptoms-left {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-right: 0;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    .symptoms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .symptoms-title {
        font-size: 1.5rem;
    }
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1101;
    position: relative;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #1a4d6e;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1100;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav-links li {
    margin: 20px 0;
}

.mobile-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #fef08a;
}

.no-scroll {
    overflow: hidden;
}

@media (max-width: 992px) {
    .container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    .main-nav {
        display: none;
    }
    .hamburger {
        display: flex;
        margin-left: auto;
    }
    .mobile-menu {
        display: flex;
    }
    .logo-area .logo img {
        height: 40px;
    }
}

@media (max-width: 600px) {
    .site-header {
        padding: 10px 0;
    }
    .logo-area .logo img {
        height: 32px;
    }
    .hamburger span {
        width: 22px;
    }
}

@media (max-width: 768px) {
    .title-gold { font-size: 32px; }
    .title-blue { font-size: 24px; }
    .hero {
        height: 60vh;
        padding: 60px 16px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh;
    }
    .title-gold { font-size: 26px; }
    .title-blue { font-size: 18px; }
}

:root {
    --primary-color: #008080;
    --text-title: #333;
    --text-body: #666;
    --bg-white: #fff;
}

.benefits-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--bg-white);
    /* text-align: center; */
}

.main-title {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.benefits-section .symptoms-bell {
    text-align: center;
    margin-bottom: 40px;
}

.benefits-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
    align-items: center;
    position: relative;
}

.benefit-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.benefit-icon img {
    width: 100%;
    height: auto;
}

.benefit-content h3 {
    color: var(--text-title);
    font-size: 20px;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.benefit-content p {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.item-top {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 20px;
}

.column-left {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* text-align: right; */
}

.column-left .benefit-item {
    /* align-items: flex-end; */
    /* text-align: right; */
}

.center-image {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-image img {
    max-width: 100%;
    height: auto;
    /* border-radius: 50%;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1)); */
}

.column-right {
    grid-column: 3;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: left;
}

.column-right .benefit-item {
    align-items: flex-start;
    text-align: left;
}

.item-bottom {
    grid-column: 2;
    grid-row: 3;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .benefits-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .item-top, .item-bottom {
        grid-column: 1 / span 2;
    }
    
    .center-image {
        display: none;
    }
    
    .column-left, .column-right {
        grid-column: span 1;
        /* text-align: center; */
    }
    
    .column-left .benefit-item, .column-right .benefit-item {
        /* align-items: center; */
        /* text-align: center; */
    }
    .symptoms-right{
        padding-left: 0px;
    }
}

@media (max-width: 600px) {
    .benefits-container {
        display: flex;
        flex-direction: column;
    }
    
    .main-title {
        font-size: 22px;
        margin-bottom: 40px;
    }
}

.saffron-guide {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    background-color: #2b3648;
    color: #ffffff;
    line-height: 1.6;
}

.guide-header {
    text-align: center;
    margin-bottom: 40px;
}

.guide-header h1 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-transform: capitalize;
}

.icon-container {
    margin-top: 15px;
}

.bell-icon {
    width: 24px;
    height: 24px;
}

.guide-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.text-column {
    flex: 1;
    font-size: 16px;
}

.text-column p {
    margin-bottom: 12px;
}

.text-column strong {
    font-weight: 700;
}

.image-column {
    flex: 1;
    display: flex;
    align-items: center;
}

.image-column img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .guide-content {
        flex-direction: column;
    }
    
    .guide-header h1 {
        font-size: 24px;
    }
    
    .image-column {
        order: -1;
        margin-bottom: 20px;
    }
}

.recruitment-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    color: #333;
}

.recruitment-container .page-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.recruitment-container .main-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
}

.recruitment-container .card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.recruitment-container .search-box {
    display: flex;
    padding: 10px;
    align-items: center;
    background: #f9f9f9;
}

.recruitment-container .search-box input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 12px;
    outline: none;
    font-size: 14px;
}

.recruitment-container .btn-search {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.recruitment-container .filter-title {
    font-size: 18px;
    margin: 0 0 15px 0;
    color: #444;
}

.recruitment-container .filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recruitment-container .filter-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #777;
}

.recruitment-container .filter-list label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.recruitment-container .filter-list input[type="checkbox"] {
    accent-color: #007bff;
}

.recruitment-container .count {
    color: #777;
}

.recruitment-container .sort-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 20px;
    font-size: 14px;
    color: #333;
    background: #fdfdfd;
    padding: 5px 15px;
    border-radius: 4px;
    width: fit-content;
    margin-left: auto;
}

.recruitment-container .job-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s;
}

.recruitment-container a:hover .job-card {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.recruitment-container .job-name {
    font-size: 20px;
    margin: 0 0 15px 0;
    color: #333;
    font-weight: 600;
}

.recruitment-container .job-meta {
    display: flex;
    gap: 20px;
}

.recruitment-container .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #888;
}

.recruitment-container .meta-item svg {
    color: #007bff;
}

.recruitment-container .job-action {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.recruitment-container .btn-apply {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.recruitment-container .btn-apply:hover {
    opacity: 0.9;
}

.recruitment-container .deadline {
    display: block;
    font-size: 12px;
    color: #999;
}

@media (max-width: 992px) {
    .recruitment-container .main-layout {
        grid-template-columns: 1fr;
    }
    
    .recruitment-container .sidebar {
        order: 2;
    }
    
    .recruitment-container .job-section {
        order: 1;
    }
}

@media (max-width: 600px) {
    .recruitment-container .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .recruitment-container .job-action {
        width: 100%;
        text-align: left;
        align-items: flex-start;
    }
}

.footer {
    background-color: #2b3648;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 60px 20px 20px;
    line-height: 1.6;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.brand-logo {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-circle {
    width: 50px;
    height: 50px;
    border: 2px solid #a8b84d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 5px;
}

.logo-a {
    color: #a8b84d;
    font-weight: bold;
    font-size: 20px;
}

.brand-name {
    color: #a8b84d;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 500;
}

.footer-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-heading {
    text-transform: none;
    font-size: 20px;
}

.contact-label {
    color: #b0b3b8;
    font-size: 14px;
    margin-bottom: 5px;
}

.phone-number {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.fax-number {
    font-size: 14px;
    color: #b0b3b8;
    margin-bottom: 5px;
}

.email-address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #ffffff;
}

.icon-mail {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.newsletter-desc {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 300px;
}

.subscribe-form {
    background: #ffffff;
    border-radius: 30px;
    padding: 5px;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    max-width: 400px;
}

.subscribe-input {
    border: none;
    background: transparent;
    padding: 10px 20px;
    flex-grow: 1;
    outline: none;
    font-size: 14px;
    color: #333;
}

.subscribe-btn {
    background-color: var(--primary-color);
    color: #333;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.subscribe-btn:hover {
    background-color:  #00a0a0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.3s;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #b0b3b8;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .brand-logo, .email-address, .social-links {
        justify-content: center;
        align-items: center;
    }
    
    .subscribe-form {
        margin: 0 auto 25px;
    }
}

@media (max-width: 480px) {
    .subscribe-form {
        flex-wrap: wrap;
        border-radius: 16px;
    }
    .subscribe-input {
        width: 100%;
        flex: 0 0 100%;
        text-align: center;
    }
    .subscribe-btn {
        width: 100%;
    }
}

/* Apply Modal */
.apply-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.apply-modal-overlay.active {
    display: flex;
}

.apply-modal {
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px 36px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { transform: scale(0.9) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.apply-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.2s;
}

.apply-modal-close:hover {
    color: #333;
}

.apply-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin: 0 0 6px 0;
}

.apply-modal-position {
    font-size: 15px;
    color: #008080;
    margin: 0 0 24px 0;
    font-weight: 600;
}

.apply-form-group {
    margin-bottom: 18px;
}

.apply-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

.apply-required {
    color: #008080;
}

.apply-form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.apply-form-input:focus {
    border-color: #008080;
}

.apply-file-upload {
    position: relative;
}

.apply-file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.apply-file-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    color: #888;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.apply-file-upload input[type="file"]:hover ~ .apply-file-label,
.apply-file-label:hover {
    border-color: #008080;
    background: #fff5f5;
}

.apply-file-name {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #555;
}

.apply-submit-btn {
    width: 100%;
    padding: 14px;
    background: #008080;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.apply-submit-btn:hover {
    background: #a31524;
}

.apply-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.apply-success {
    text-align: center;
    padding: 30px 0;
}

.apply-success p {
    font-size: 20px;
    font-weight: 600;
    color: #008080;
    margin: 0 0 8px 0;
}

.apply-success-sub {
    font-size: 15px;
    font-weight: 400;
    color: #666;
}

.apply-error {
    text-align: center;
    padding: 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #dc2626;
    font-size: 14px;
    margin-top: 16px;
}

@media (max-width: 480px) {
    .apply-modal {
        padding: 32px 20px 24px;
        width: 95%;
    }
    .apply-modal-title {
        font-size: 20px;
    }
    .apply-form-input {
        padding: 10px 12px;
        font-size: 14px;
    }
    .apply-submit-btn {
        padding: 12px;
        font-size: 15px;
    }
}

/* Hero Banner Animations */
.hero-banner .reveal {
    transition-delay: 0.1s;
}

.hero-banner .reveal-left {
    transition-delay: 0.3s;
}

.hero-banner .reveal-right {
    transition-delay: 0.2s;
}

.hero-banner .reveal-scale {
    transition-delay: 0.4s;
}

/* Products Section */
.products-section {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.products-section .symptoms-bell {
    text-align: center;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
}

.products-main-title {
    text-align: center;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: #1a4d6e;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.category-group {
    margin-top: 50px;
}

.category-header {
    /* text-align: center; */
    margin-bottom: 30px;
}

.category-icon {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 2px solid #e2e8f0;
}

.category-name {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 6px;
}

.category-desc {
    font-size: 15px;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    /* background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06); */
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:nth-child(4n) {
    grid-column: 1 / -1;
    max-width: 70%;
    justify-self: center;
    width: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
    /* box-shadow: 0 8px 30px rgba(0,0,0,0.1); */
}

.category-grid-2 .products-grid {
    grid-template-columns: repeat(2, 1fr);
}

.product-img-wrap {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    transition: transform 0.4s;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 16px;
}

.product-name {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 6px;
    text-align: center;
}

.product-desc {
    font-size: 13px;
    color: #718096;
    line-height: 1.5;
    margin-bottom: 8px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #e53e3e;
}

.no-products {
    color: #a0aec0;
    font-size: 14px;
    text-align: center;
    padding: 20px;
    grid-column: 1 / -1;
}

.no-categories {
    text-align: center;
    padding: 60px 20px;
    color: #a0aec0;
    font-size: 16px;
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-card:nth-child(4n) {
        grid-column: 1 / -1;
        max-width: 60%;
    }
}

@media (max-width: 600px) {
    .products-section {
        padding: 50px 16px;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .product-card:nth-child(4n) {
        max-width: 100%;
    }
    .category-name {
        font-size: 20px;
    }
    .product-img {
        height: 200px;
        max-height: 200px;
    }
    .product-info {
        padding: 10px;
    }
    .product-name {
        font-size: 14px;
    }
    .product-price {
        font-size: 15px;
    }
}
