:root {
    --brand-navy: #0b2f57;
    --brand-gold: #c79a40;
    --brand-soft: #f4efe5;
    --brand-muted: #4b6e8a;
    --focus-outline: 2px solid var(--brand-gold);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(199, 154, 64, 0.08), transparent 32%),
        linear-gradient(rgba(248, 245, 238, 0.92), rgba(248, 245, 238, 0.92)),
        url("logo back.png") left center / auto 100vh no-repeat,
        #f8f5ee;
    color: var(--brand-navy);
}

/* Accessibility: Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--brand-gold);
    color: var(--brand-navy);
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 2000;
}

.skip-link:focus {
    top: 0;
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(11, 47, 87, 0.98) 0%, rgba(75, 110, 138, 0.95) 100%);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(199, 154, 64, 0.4);
    box-shadow: 0 4px 20px rgba(11, 47, 87, 0.2);
    padding: 0;
}

.nav_header {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: #f8f5ee;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all 300ms ease;
    border-radius: 8px;
    padding: 0.25rem 0.5rem;
}

.logo:focus-visible {
    outline: var(--focus-outline);
    outline-offset: 2px;
}

.logo-img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    filter: brightness(1.1);
    transition: transform 300ms ease, filter 300ms ease;
}

.logo:hover .logo-img {
    transform: scale(1.1);
    filter: brightness(1.3);
}

.logo:hover {
    color: var(--brand-gold);
    transform: scale(1.05);
}

.logo::before {
    display: none;
}

.nav_menu_btn {
    display: none;
    border: none;
    background: transparent;
    color: #f8f5ee;
    font-size: 1.6rem;
    cursor: pointer;
    transition: color 200ms ease, transform 200ms ease;
    padding: 0.5rem;
    border-radius: 6px;
}

.nav_menu_btn:focus-visible {
    outline: var(--focus-outline);
    outline-offset: 2px;
}

.nav_menu_btn:hover {
    color: var(--brand-gold);
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

nav a {
    color: rgba(248, 245, 238, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: color 200ms ease, transform 200ms ease, text-shadow 200ms ease;
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

nav a:focus-visible {
    outline: var(--focus-outline);
    outline-offset: 2px;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    width: 0;
    height: 2px;
    background: var(--brand-gold);
    transition: width 300ms ease;
}

nav a:hover::after,
nav a:focus-visible::after {
    width: calc(100% - 1.5rem);
}

nav a:hover,
nav a:focus-visible {
    color: var(--brand-gold);
    transform: translateY(-2px);
}

nav a.active {
    color: var(--brand-gold);
}

nav a.active::after {
    width: calc(100% - 1.5rem);
}

/* Header */
.header_container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: carousel 35s infinite;
}

.carousel-image:nth-child(1) {
    animation-delay: 0s;
}

.carousel-image:nth-child(2) {
    animation-delay: -5s;
}

.carousel-image:nth-child(3) {
    animation-delay: -10s;
}

.carousel-image:nth-child(4) {
    animation-delay: -15s;
}

.carousel-image:nth-child(5) {
    animation-delay: -20s;
}

.carousel-image:nth-child(6) {
    animation-delay: -25s;
}

.carousel-image:nth-child(7) {
    animation-delay: -30s;
}

@keyframes carousel {
    0%, 100% {
        opacity: 0;
    }
    14% {
        opacity: 1;
    }
    28% {
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.header_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 47, 87, 0.35);
    z-index: 5;
}

.header-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 90%;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.header_container h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, rgba(199, 154, 64, 0.9) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    margin: 0 1rem 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    animation: slideInDown 0.8s ease-out 0.4s both;
    position: relative;
    word-spacing: 0.1em;
}

.header_container h1::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
    animation: slideInDown 0.8s ease-out 0.35s both;
}

.header_container h1::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
    animation: slideInDown 0.8s ease-out 0.45s both;
}

.header_container p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(11, 47, 87, 0.4), 0 0 20px rgba(199, 154, 64, 0.2);
    margin: 2rem 1rem 0;
    animation: fadeInUp 0.8s ease-out 0.5s both;
    letter-spacing: 0.05em;
    font-weight: 500;
    position: relative;
    padding: 0 2rem;
}

.header_container p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-gold), transparent);
}

.header_container p::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(270deg, var(--brand-gold), transparent);
}

/* Apply Button */
.apply-btn {
    background: linear-gradient(135deg, var(--brand-gold) 0%, #d4a574 100%);
    color: var(--brand-navy);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(199, 154, 64, 0.4);
    animation: glow 2s ease-in-out infinite alternate;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.apply-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.apply-btn:hover::before {
    left: 100%;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(199, 154, 64, 0.6);
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(199, 154, 64, 0.4);
    }
    to {
        box-shadow: 0 0 30px rgba(199, 154, 64, 0.8), 0 0 40px rgba(199, 154, 64, 0.4);
    }
}

/* Statistics Section */
.stats_section {
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, rgba(11, 47, 87, 0.95) 0%, rgba(75, 110, 138, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.stats_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("logo back.png") center / cover no-repeat;
    opacity: 0.05;
    z-index: 1;
}

.stats_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 154, 64, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(11, 47, 87, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-gold);
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(199, 154, 64, 0.5);
    animation: countUp 2s ease-out forwards;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(248, 245, 238, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0;
}



@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.services_section {
    padding: 5rem 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    position: relative;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 2rem;
    text-align: center;
}

.section-heading span {
    display: inline-block;
    color: var(--brand-gold);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-heading h2 {
    margin: 0;
    font-size: 2.8rem;
    color: var(--brand-navy);
    line-height: 1.1;
}

.section-heading p {
    margin: 1rem auto 0;
    color: var(--brand-muted);
    max-width: 620px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1160px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(244, 239, 229, 0.95) 100%);
    border: 1px solid rgba(199, 154, 64, 0.2);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 45px rgba(11, 47, 87, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: rgba(199, 154, 64, 0.15);
    border-radius: 18px;
}

.service-card h3 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--brand-navy);
}

.service-card p {
    margin: 0;
    color: var(--brand-muted);
    line-height: 1.75;
}

.service-btn {
    margin-top: auto;
    background: linear-gradient(135deg, var(--brand-gold) 0%, #d4a574 100%);
    color: var(--brand-navy);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(199, 154, 64, 0.35);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(199, 154, 64, 0.55);
}

.about_section {
    padding: 4rem 1.5rem;
    background: rgba(248, 245, 238, 0.9);
}

.job-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    padding: 0;
    margin: 2rem auto 0;
    max-width: 1100px;
}

.job-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    border: 1px solid rgba(199, 154, 64, 0.18);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    color: var(--brand-navy);
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(11, 47, 87, 0.06);
}

.job-icon {
    width: 2.2rem;
    height: 2.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border-radius: 12px;
    background: rgba(199, 154, 64, 0.12);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, rgba(248, 245, 238, 0.95) 0%, rgba(244, 239, 229, 0.95) 100%);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(11, 47, 87, 0.3);
    border: 2px solid rgba(199, 154, 64, 0.3);
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--brand-navy);
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--brand-gold);
}

.modal h2 {
    color: var(--brand-navy);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--brand-navy);
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(199, 154, 64, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus {
    outline: none;
    border-color: var(--brand-gold);
    box-shadow: 0 0 10px rgba(199, 154, 64, 0.3);
}

.submit-btn, .pay-btn, .ok-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--brand-gold) 0%, #d4a574 100%);
    color: var(--brand-navy);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover, .pay-btn:hover, .ok-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(199, 154, 64, 0.5);
}

/* Testimonials Section */
.testimonials_section {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, rgba(248, 245, 238, 0.9) 0%, rgba(244, 239, 229, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("logo back.png") center / cover no-repeat;
    opacity: 0.03;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Show only first 4 testimonials when collapsed */
.testimonials-grid.collapsed .testimonial-card:nth-child(n+5) {
    display: none;
}

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(11, 47, 87, 0.08);
    border: 1px solid rgba(199, 154, 64, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(11, 47, 87, 0.15);
    border-color: rgba(199, 154, 64, 0.3);
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--brand-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: var(--brand-gold);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-rating i {
    transform: scale(1.2);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--brand-muted);
    font-style: italic;
    position: relative;
    padding: 1rem 0;
    margin: 1.5rem 0;
}

.testimonial-text::before,
.testimonial-text::after {
    content: "\"";
    font-size: 3rem;
    color: rgba(199, 154, 64, 0.15);
    position: absolute;
    font-family: serif;
}

.testimonial-text::before {
    top: -0.5rem;
    left: -0.5rem;
}

.testimonial-text::after {
    bottom: -0.5rem;
    right: -0.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--brand-navy);
    font-size: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(199, 154, 64, 0.1);
}

.testimonial-author::before {
    content: "— ";
    color: var(--brand-gold);
    font-weight: bold;
}

.show-more-btn {
    display: block;
    margin: 3rem auto 0;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--brand-gold) 0%, #d4a574 100%);
    color: var(--brand-navy);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(199, 154, 64, 0.3);
    position: relative;
    overflow: hidden;
    width: fit-content;
}

.show-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(199, 154, 64, 0.5);
}

.show-more-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.show-more-btn:hover::before {
    left: 100%;
}

/* Contact Section */
.contact_section {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, rgba(11, 47, 87, 0.95) 0%, rgba(75, 110, 138, 0.92) 100%);
    position: relative;
    overflow: hidden;
}

.contact_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("logo back.png") center / cover no-repeat;
    opacity: 0.04;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(199, 154, 64, 0.2);
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    color: #f8f5ee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border-color: rgba(199, 154, 64, 0.4);
}

.contact-card h3 {
    color: var(--brand-gold);
    font-size: 1.6rem;
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 700;
}

.contact-card h3 i {
    font-size: 1.8rem;
    color: var(--brand-gold);
}

.contact-card p {
    color: rgba(248, 245, 238, 0.92);
    line-height: 1.75;
    margin-bottom: 0.9rem;
    font-size: 1.05rem;
}

.contact-card a {
    color: var(--brand-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-card a:hover {
    color: #fff;
    text-decoration: underline;
    transform: translateX(3px);
}

.contact-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-links li {
    margin-bottom: 0.85rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: translateX(6px);
    color: #fff;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-4px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    background: #128C7E;
}

.whatsapp-float i {
    font-size: 2.6rem;
}

/* Media queries */
@media (max-width: 900px) {
    .nav_header {
        padding: 0.85rem 1rem;
    }

    .nav-menu {
        gap: 0.75rem;
    }

    .header_container h1 {
        font-size: 2.5rem;
    }

    .header_container h1::before,
    .header_container h1::after {
        width: 40px;
        height: 2px;
    }

    .header_container p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .header_container p::before,
    .header_container p::after {
        width: 20px;
    }

    .apply-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 720px) {
    .nav_menu_btn {
        display: inline-flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: linear-gradient(135deg, rgba(11, 47, 87, 0.98) 0%, rgba(75, 110, 138, 0.95) 100%);
        padding: 1rem 1.4rem;
        border-top: 1px solid rgba(199, 154, 64, 0.3);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 0;
        border-radius: 0;
    }

    .header_container h1 {
        font-size: 1.8rem;
    }

    .header_container h1::before,
    .header_container h1::after {
        width: 30px;
        top: -15px;
    }

    .header_container h1::after {
        bottom: -15px;
    }

    .header_container p {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .header_container p::before,
    .header_container p::after {
        width: 15px;
    }

    .header-content {
        max-width: 95%;
    }

    .modal-content {
        margin: 20% auto;
        padding: 1.5rem;
        width: 95%;
    }

    .modal h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header_container h1 {
        font-size: 1.5rem;
    }

    .header_container h1::before,
    .header_container h1::after {
        width: 20px;
        height: 2px;
        top: -12px;
    }

    .header_container h1::after {
        bottom: -12px;
    }

    .header_container p {
        font-size: 0.85rem;
        padding: 0;
        margin: 1.5rem 0 0;
    }

    .header_container p::before,
    .header_container p::after {
        display: none;
    }

    .logo span {
        display: none;
    }

    .nav_header {
        padding: 0.75rem 1rem;
    }
}

