:root {
    /* Deep Navy (Professional text, replaces stark black) */
    --primary-text: #1a3c5e; 
    /* Logo Blue (extracted from the KA logo concept) */
    --brand-blue: #5b9bd5; 
    /* Soft Sand (Warm background, gives the beach vibe) */
    --bg-sand: #f9f7f2; 
    /* Clean White */
    --white: #ffffff;
    /* Muted Grey for secondary text */
    --text-grey: #64748b;
    
    --font-heading: 'Playfair Display', serif; /* Elegant, matches logo style */
    --font-body: 'Lato', sans-serif; /* Clean, modern */
}

/* --- GLOBAL STYLES --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--primary-text);
    background-color: var(--white);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER --- */
header {
    background: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Styling for the uploaded logo */
.logo-img {
    height: 80px; 
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-text);
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { 
    font-weight: 600; 
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-links a:hover { color: var(--brand-blue); }

.btn-nav {
    background-color: var(--brand-blue);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 2px; 
}
.btn-nav:hover { opacity: 0.9; }

/* --- HERO SECTION --- */
.hero {
    /* Subtle gradient: White to very light blue/sand */
    background: linear-gradient(to bottom, #ffffff 0%, #eaf4f9 100%);
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary-text);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-grey);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    background-color: var(--primary-text); /* Navy button */
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(26, 60, 94, 0.2);
}
.hero-btn:hover { background-color: var(--brand-blue); transform: translateY(-2px); }

/* --- INTRO / WELCOME --- */
.intro {
    background-color: var(--white);
    padding: 4rem 0;
    text-align: center;
}
.intro h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.intro-text {
    max-width: 800px; 
    margin: 0 auto; 
    color: var(--text-grey);
}
.divider {
    height: 3px;
    width: 60px;
    background-color: var(--brand-blue);
    margin: 0 auto 2rem auto;
}

/* --- SERVICES GRID --- */
.services-section {
    background-color: var(--bg-sand); /* Sand color background */
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-text);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-top: 4px solid var(--brand-blue);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: 0.3s;
    text-align: center;
}
.service-card:hover { transform: translateY(-5px); }
.service-card h3 { 
    font-family: var(--font-heading);
    margin-bottom: 1rem; 
    font-size: 1.5rem;
}

/* --- RESOURCES --- */
.resources { padding: 5rem 0; }
.resource-intro {
    text-align: center; 
    margin-bottom: 2rem; 
    color: var(--text-grey);
}
.resource-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.resource-btn {
    border: 1px solid var(--primary-text);
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
}
.resource-btn:hover { background: var(--primary-text); color: var(--white); }

/* --- CONTACT --- */
.contact-section {
    background-color: #1a3c5e; /* Navy Background */
    color: var(--white);
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 { font-family: var(--font-heading); margin-bottom: 1rem; }
.contact-info p { margin-bottom: 1rem; font-size: 1.1rem; opacity: 0.9; }
.contact-info a { color: white; } 

.contact-link {
    color: #b0d4f1 !important;
    font-weight: bold;
    text-decoration: underline;
}

/* Form Styling */
form { display: flex; flex-direction: column; gap: 1rem; }
input, textarea, select {
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-family: inherit;
}
button[type="submit"] {
    background-color: var(--brand-blue);
    color: var(--white);
    padding: 1rem;
    border: none;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}
button[type="submit"]:hover { background-color: #ffffff; color: var(--primary-text); }

/* --- FOOTER --- */
footer {
    background-color: #102a43; /* Darker Navy */
    color: rgba(255,255,255,0.6);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; } 
    .logo-img { height: 60px; }
    .hero h1 { font-size: 2.5rem; }
}





.my-scrollbox {
    overflow-y: scroll; /* Adds a vertical scrollbar */
    height: 600px;      /* Sets a fixed height */
    width: 100%;       /* Sets the width */
    border: 1px solid #ddd; /* Optional: adds a border */
    padding: 10px;     /* Optional: adds some padding */
}
header img {
  /* This creates the fade effect */
  -webkit-mask-image: radial-gradient(
    circle, 
    black 50%, 
    rgba(0, 0, 0, 0.5) 85%, 
    transparent 100%
  );
  mask-image: radial-gradient(
    circle, 
    black 50%, 
    rgba(0, 0, 0, 0.5) 85%, 
    transparent 100%
  );

  /* Optional: Adjust size to ensure the fade is visible */
  max-width: 180px; 
  height: auto;
  display: block;
}