/* ============================================================
CSS VARIABLES & RESET
============================================================ */
:root {
--navy: #0a1628;
--royal: #1b3a8c;
--gold: #f5a623;
--amber: #e8852a;
--teal: #3a8a85;
--green: #1db07a;
--offwhite: #f8f9fc;
--charcoal: #0d0d0d;
--gray: #6b7280;
--white: #ffffff;
--font-display: "Playfair Display", serif;
--font-heading: "Plus Jakarta Sans", sans-serif;
--font-body: "Inter", sans-serif;
--font-quote: "Lora", serif;
--font-serif: "Fraunces", serif;
--ease: cubic-bezier(0.4, 0, 0.2, 1);
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html,body{
overflow-x: hidden;
}
html {
scroll-behavior: smooth;
}
body {
font-family: var(--font-body);
color: var(--charcoal);
background: #fff;
overflow-x: hidden;
}
img {
max-width: 100%;
display: block;
}
a {
text-decoration: none;
color: inherit;
}
button {
cursor: pointer;
border: none;
background: none;
font-family: inherit;
}

/* =============================================
NAVIGATION
============================================= */
#nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
height: 70px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 clamp(16px, 4vw, 48px);
transition:
background 0.4s,
box-shadow 0.4s;
}
#nav.scrolled {
background: var(--navy);
box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
border-bottom: 1px solid white;
}
#nav.scrolled .hamburger span {
background: #ffffff;
}.hamburger span {
width: 24px;
height: 2px;
background: #ffffff;
border-radius: 2px;
transition: background 0.3s ease, transform 0.3s ease; /* added background transition */
}#drawer-overlay.open ~ #nav .hamburger span,
#nav.scrolled .hamburger span {
background: #ffffff;
}
.nav-logo-wrap {
background: #fff;
border-radius: 8px;
padding: 5px 5px;
display: flex;
align-items: center;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.nav-logo-wrap img {
height: 44px;
width: auto;
}
.nav-links {
display: flex;
align-items: center;
gap: 2px;
}
.nav-links a {
font-size: 14px;
font-weight: 500;
color: rgba(255, 255, 255, 0.85);
padding: 7px 10px;
border-radius: 6px;
transition:
color 0.2s,
background 0.2s;
white-space: nowrap;
}
.nav-links a:hover {
color: #fff;
background: rgba(255, 255, 255, 0.1);
}
.nav-right {
display: flex;
align-items: center;
gap: 12px;
}
.btn-apply {
background: var(--gold);
color: var(--navy);
font-size: 13px;
font-weight: 700;
padding: 10px 22px;
border-radius: 7px;
transition:
transform 0.2s,
box-shadow 0.2s;
white-space: nowrap;
}
.btn-apply:hover {
transform: scale(1.04);
box-shadow: 0 4px 20px rgba(245, 166, 35, 0.5);
}
.hamburger {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
padding: 4px;
}
.hamburger span {
width: 24px;
height: 2px;
background: #ffffff;
border-radius: 2px;
transition: 0.3s;
}
.hamburger.open span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
opacity: 0;
}
.hamburger.open span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}
/* Replace drawer CSS with this */
#drawer {
position: fixed;
top: 0;
right: 0;
width: min(340px, 90vw);
height: 100vh;
background: var(--navy);
z-index: 1100;
padding: 20px 0 40px;
display: flex;
flex-direction: column;
overflow-y: auto;
/* smooth animation */
transform: translateX(100%);
transition: transform 0.45s ease-in-out;
will-change: transform;
}
#drawer.open {
transform: translateX(0);
}
/* overlay smooth fade */
#drawer-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.6);
z-index: 1050;
opacity: 0;
visibility: hidden;
transition: opacity 0.35s ease, visibility 0.35s ease;
}
#drawer-overlay.open {
opacity: 1;
visibility: visible;
}
.drawer-label {
font-size: 10px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.4);
padding: 16px 28px 6px;
display: block;
}
.drawer-link {
font-size: 15px;
font-weight: 500;
color: rgba(255, 255, 255, 0.85);
padding: 12px 28px;
display: block;
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
transition:
color 0.2s,
background 0.2s;
}
.drawer-link:hover {
color: #fff;
background: rgba(255, 255, 255, 0.06);
}
.drawer-link.sub {
font-size: 13px;
color: rgba(255, 255, 255, 0.6);
padding-left: 44px;
}
.drawer-cta {
margin: 24px 28px 0;
}
.drawer-cta a {
display: block;
text-align: center;
background: var(--gold);
color: var(--navy);
font-size: 14px;
font-weight: 700;
padding: 14px;
border-radius: 8px;
}
@media (max-width: 900px) {
.nav-links {
display: none;
}
.hamburger {
display: flex;
}
}
@media (max-width:1038px) {
.nav-links{
gap: 0 !important;
}      
.btn-apply{
padding: 9px !important;
}
}
@media (max-width: 640px) {
.btn-apply {
display: none !important;
}
.nav-logo {
height: 30px !important;
}
}


/* ============================================================
FOOTER
============================================================ */
footer {
background: var(--navy);
padding: 60px 40px 32px;
color: rgba(255, 255, 255, 0.65);
}
.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
gap: 40px;
margin-bottom: 40px;
}
.footer-brand .nav-logo {
margin-bottom: 16px;
}
.footer-brand p {
font-size: 14px;
line-height: 1.7;
max-width: 280px;
}
.footer-col h4 {
font-size: 13px;
font-weight: 700;
color: #fff;
letter-spacing: 0.08em;
text-transform: uppercase;
margin-bottom: 16px;
}
.footer-col a {
display: block;
font-size: 14px;
color: rgba(255, 255, 255, 0.55);
margin-bottom: 10px;
transition: color 0.2s;
}
.footer-col a:hover {
color: #fff;
}
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.08);
padding-top: 24px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 12px;
font-size: 13px;
}
.footer-bottom a {
color: rgba(255, 255, 255, 0.4);
transition: color 0.2s;
}
.footer-bottom a:hover {
color: #fff;
}
@media (max-width: 900px) {
.footer-grid {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 580px) {
.footer-grid {
grid-template-columns: 1fr;
}
footer {
padding: 48px 20px 24px;
}
}
/* ============================================================
FLOATING ELEMENTS
============================================================ */
#whatsapp-btn {
/*width: 32px;
height: 32px;*/
position: fixed;
bottom: 32px;
right: 32px;
z-index: 900;
display: flex;
align-items: center;
gap: 10px;
background: #25d366;
color: #fff;
font-size: 13px;
font-weight: 700;
/*padding: 12px 20px 12px 16px;*/
padding: 12px 12px;
border-radius: 999px;
/*box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);*/
cursor: pointer;
animation: whatsappPulse 2.5s infinite;
transition: transform 0.2s;
}
#whatsapp-btn:hover {
transform: scale(1.05);
}
#whatsapp-btn .wa-icon {
font-size: 20px;
}
@keyframes whatsappPulse {
0%,
100% {
box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}
50% {
box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7);
}
}
@media (max-width: 480px) {
#whatsapp-btn span.wa-label {
display: none;
}
}

/*****************Footer Social Links*******************/

.footer-social h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

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

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: #fff;
    color: #000;
}