#header {
    background-image: url('images/head.jpg'),url('images/bg1.jpg');
    background-repeat: no-repeat,repeat-x;
    background-position: center;
    height: 600px;
    width: 100%;
    margin-top:-4px;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    background: #a0cedd;
    font-family: 'Lora', serif;
    font-weight: 400 !important;
    color: #333;
    text-align: center;
    font-size: 14px;
    overflow-x: hidden;
}

#navigation {
    width: 60%;
    margin: 0 auto 50px;
    padding: 40px 0;
    background: linear-gradient(135deg, #a3d4ff, #e6f2ff);
    border-radius: 24px;
    text-align: center;
    font-family: 'Cinzel Decorative', serif;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#navigation::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 24px;
    pointer-events: none;
    background: radial-gradient(circle at center, rgba(255, 255, 0, 0.1), transparent 70%);
    mix-blend-mode: screen;
}

#navigation a {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #004a99;
    margin: 0 14px;
    padding: 12px 22px;
    border-radius: 18px;
    background: rgba(0, 105, 255, 0.08);
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

#navigation a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, #ffe066, #3daee9);
    border-radius: 2px;
    transition: all 0.4s ease;
    transform: translateX(-50%);
    z-index: -1;
}

#navigation a:hover::before {
    width: 80%;
}

#navigation a::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(0, 105, 255, 0.15), transparent);
    transition: all 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

#navigation a:hover::after {
    left: 100%;
}

#navigation a:hover,
#navigation a:focus {
    background: rgba(0, 105, 255, 0.15);
    color: #00264d;
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(0, 105, 255, 0.3);
}

h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: transparent;
    background: linear-gradient(135deg, #70d6ff, #ffe066);
    -webkit-background-clip: text;
    background-clip: text;
    text-align: center;
    margin: 80px auto 40px;
    padding: 20px 40px;
    position: relative;
    display: inline-block;
    animation: fadeSlideIn 1s ease forwards;
    opacity: 0;
}

h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: linear-gradient(to right, #ffe066, #3daee9);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 105, 255, 0.3);
    transition: all 0.3s ease;
}

h1:hover::after {
    width: 80%;
    box-shadow: 0 4px 12px rgba(0, 105, 255, 0.5);
}

@keyframes fadeSlideIn {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.content {
    width: 60%;
    margin: -40px auto;
    padding: 0 25px;
    text-align: justify;
    font-family: 'Lora', serif;
    color: #333;
    line-height: 1.75;
    border-radius: 14px;
}

.contentx {
    padding: 48px 40px;
    border-radius: 18px 18px 10px 10px;
    font-size: 19px;
    font-family: 'Lora', serif;
    color: #222;
    background: linear-gradient(180deg, #e0f7ff 0%, #b3dcff 50%, #007acc 100%);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 48px;opacity:0.7;
}

.content a,
.content b,
.content i {
    font-family: 'Lora', serif;
    background: linear-gradient(135deg, #007acc, #ffe066);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: filter 0.3s ease;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.content a:hover,
.content b:hover,
.content i:hover {
    filter: brightness(1.3);
}

.contentx input,
.contentx textarea,
.contentx select {
    width: 40%;
    max-width: 350px;
    padding: 10px 14px;
    margin: 12px 0;
    font-family: 'Tahoma', sans-serif;
    font-size: 16px;
    color: #222;
    background: #f9f9f9;
    border: 1px solid #007acc;
    border-radius: 12px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    caret-color: #007acc;
}

.contentx input:focus,
.contentx textarea:focus,
.contentx select:focus {
    outline: none;
    border-color: #005999;
    box-shadow: 0 0 0 2px rgba(0, 105, 255, 0.3);
}

.contentx select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #007acc 50%),
        linear-gradient(135deg, #f9f9f9 50%, transparent 50%);
    background-position:
        calc(100% - 20px) center,
        calc(100% - 15px) center;
    background-size: 6px 6px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.dropdown-menu {
    background: #fff;
    color: #222;
    border: 1px solid #007acc;
    box-shadow: 0 2px 10px rgba(0, 105, 255, 0.2);
}

.dropdown-menu:hover {
    background: #e0f2ff;
    color: #003366;
}

#footer {
    background: linear-gradient(135deg, #b3e5ff, #d9f4ff, #ffe066);
    color: #004a99;
    text-align: center;
    padding: 70px 30px;
    margin-top: 80px;
    border-top: 4px double rgba(0, 0, 0, 0.1);
    clip-path: polygon(
        0 50px, 12% 45px, 25% 55px, 38% 48px, 50% 60px, 62% 50px,
        75% 58px, 88% 50px, 100% 60px, 100% 100%, 0 100%
    );
    box-shadow:
        inset 0 10px 20px rgba(0, 0, 0, 0.05),
        0 10px 15px rgba(0, 0, 0, 0.05);
    font-family: 'Cinzel Decorative', serif;
    font-size: 18px;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
}

#footer a {
    color: #007acc;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease, border-color 0.3s ease;
    font-weight: 600;
}

#footer a:hover {
    color: #004a99;
}

.footer-credit {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}
