/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');


/* Prevent the glitch by hiding everything until styles are applied */
html {
    background-color: #fff; /* Match your page background to avoid a flash */
}


/* Global Styles */
body {
    margin: 0;
    padding: 0;



}



body, .about-text p, .about-text, .gallery, .image-gallery {
    font-family: 'Spectral', serif;
    color: #2D3E5B;
    font-size: 14pt;
}

/* Navigation */



nav {

position: absolute;  /* Ensures nav is above content */
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    height: auto;
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px); /* Optional: Adds a subtle blur effect */
    z-index: 1000; /* Ensures nav stays above everything */


}





nav a {
    margin: 0 20px;
    text-decoration: none;
    color: #2D3E5B;
    font-weight: 600;
    font-size: 18px;
}
nav a:hover {
    color: #0077b6;
}

nav a:active { color: #0C859B; font-weight: 300;}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;

}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #2D3E5B;
    font-family: "Spectral", sans-serif;
    font-weight: 300;
}

/* Hero Section */
.hero {
    text-align: center;
    background: url('img/IMG_4692.JPG') no-repeat center center/cover;
    height:200px;
    color: white;
    font-family: 'Spectral', serif;

}


.about-hero {
    position: relative;
    background: url('img/IMG_4607.jpg') no-repeat center center/cover;
    height: 200px;
    color: white;
    font-family: 'Spectral', serif;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1; /* Ensures text stays above overlay */
    padding: 20px;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1); /* Adjust opacity as needed */
    z-index: 0; /* Places overlay behind text but above background */
}

.about-hero h1 { 

    position: relative;
    z-index: 2;
    padding-top: 25px;
    font-size: 36px;
    font-weight: 600;
    color: white;


 }


.about-hero h2 { 


    position: relative;
    z-index: 2;
    padding-top: 25px;
    font-size: 36px;
    font-weight: 600;
    color: white;
 }



.hero h1 {
    font-size: 32pt;
    margin: 15px 0 5px;
    font-weight: 500;
}
.hero h2 {
    color: #aad3d6;
    font-size: 24pt;
    font-family: Spectral;
    font-weight: lighter;
}
.hero p {
    max-width: 600px;
    margin: 10px auto;
    font-size: 1em;
}


/* Main Section */

.main { 

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -75px;


 }

.main img {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 4px solid white;
}

.main h1 { 
    font-family: 'Spectral', serif;
    font-weight: 400;
    font-size: 24pt;
    color: #2D3E5B;
    padding: 0px;
    margin: 0px;

 }



 .main p {

    font-family: 'Spectral', serif;
    font-weight: 200;
    font-size: 12pt;
    color: #2D3E5B;
    padding: 25px;
    margin: 0px;
    line-height: 2.5; /* Adjust this value for more or less spacing */


 }

.subtitle { 

  font-family: 'Lato', sans-serif;
  font-weight: 500;
  font-size: 15pt;
  color: #0C859B;
  letter-spacing: 0.15em; /* Adjust this value */
  padding: 0px;

 }


.btn, .btn-secondary {
    display: inline-flex;  /* Use flexbox for proper alignment */
    align-items: center;  /* Align text and icon vertically */
    justify-content: center;
    gap: 8px;  /* Space between text and icon */
    padding: 10px 20px;
    margin: 10px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 12pt;
}

.btn {
    background: #007b8f;
    color: white;
}

.btn:hover {
    background: #00566b;
}

.btn-secondary {
    background: #F8FBFF;
    color: #2D3E5B;
    border: 1px solid #CCD1DA;
}

.btn-secondary:hover {
    background: #D4DCE8;
}

/* Ensure the icon matches the text size */
.btn i, .btn-secondary i {
    font-size: 1em; /* Match the font size of the text */
    vertical-align: middle; /* Align with text */
}



/* Only applies to About page */


.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #2D3E5B;
    font-family: 'Spectral', serif;
    font-size: 14pt;
    line-height: 1.8;
}


.about-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

.about-page .about-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Bio Section (About page only) */
.about-page .bio {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.about-page .bio img {
    width: 200px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Art Gallery (About page only) */
.about-page .gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.about-page .gallery img {
    width: 30%;
    height: auto;
    border-radius: 8px;
}

/* Travel Photo Grid (About page only) */
.about-page .travel-photos h3 {
    text-align: center;
    margin-bottom: 10px;

}

.about-page .travel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.about-page .travel-grid img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}


.profile-img {
    width: 200px;
    height: auto;
    border-radius: 8px;
    display: block;
    margin-bottom: 0px;
    margin-right: 20px;
    float: left;
}


/*Gallery stuff */

.gallery {
    display: flex;
    justify-content: center;
    gap: 15px;  /* Adds spacing between images */
    align-items:center;
    flex-wrap: wrap; /* Allows them to stack on smaller screens */
    margin-bottom: 40px;
    padding-right: 125px;
    padding-left: 125px;
}

.gallery-item {
    width: 250px;
    height: 200px; /* Set a consistent height for all images */
    overflow: hidden; /* Ensures no overflow */
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the images fill the box while cropping the excess */
    border-radius: 8px;
}


.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); 
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}


.about-text {
  max-width: 800px;
    margin: 0 auto;
    text-align: justify; /* Helps with natural text flow */
    overflow: hidden; /* Ensures container wraps around floated elements */

    font-family: 'Spectral', serif;
    font-size: 14pt;
    color: #2D3E5B;
}



.about-text p {
    margin-bottom: 15px; /* Adds spacing between paragraphs */
    line-height: 1.6;
      font-family: 'Spectral', serif;
    font-size: 16px;
    color: #2D3E5B;
    padding: 10px;
    flex: 1;
}


.about-text ul {
    margin-bottom: 15px; /* Adds spacing between paragraphs */
    margin-left: 30px;
    line-height: 1.8;
    font-family: 'Spectral', serif;
    font-size: 16px;
    color: #2D3E5B;
    padding: 5px;
    flex: 1;
}



.about-text h2 {

    text-align: center;
    font-size: 18pt;
    font-weight: 400;
    font-family: 'Spectral', serif;
    margin-bottom: 30px;

}

.profile-img {
   width: 210px; /* Adjust as needed */
    height: auto;
    border-radius: 8px;
    float: left;
margin: 30px 20px 10px 0; /* Adjust right margin for better spacing */
    }



.image-gallery img {
    width: 100%;
    height: 100px; /* Adjust as needed */
    object-fit: cover; /* Ensures uniform sizing while cropping excess */
    border-radius: 6px;

}


.image-gallery + p {
    max-width: 800px;
    margin: 10px auto;
    text-align: center;
}





/* Case Studies */

.case-studies-content {
      display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
}

/* Style for Each Case Study Card */
.case-study-card {
   display: flex;
    align-items: center;
    background: white;
    border-radius: 8px; /* Softer edges */
    border-style: solid;
    border-width: 1px;
    border-color: #CCD1DA;
    overflow: hidden;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    width: 100%;
    transition: transform 0.2s ease-in-out;
    padding-left: 20px; /* Add more padding inside */
}

.case-study-card:hover {
    transform: translateY(-3px);
}

/* Case Study Images */
.case-study-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px; /* Softer image edges */
    margin-right: 24px; /* Space between image and text */
}

/* Case Study Text */
.case-study-text {
    padding: 10px 24px; /* Consistent padding */
    max-width: 600px;
}

.case-study-text h2 {
    font-size: 22px; /* Slightly bigger */
    font-weight: 400;
    color: #2D3E5B;
    margin-bottom: 12px;
    margin-top: 15px;
}

.case-study-text p {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 16px;
}



.case-study-cta {

    margin-left: -10px;

}



/* Contact Info Styling */
.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; /* Adjusts spacing between items */
    font-family: 'Lato', sans-serif;
    font-size: 13pt;
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
}

/* Style for Icons */
.contact-info i {
    vertical-align: middle;
    font-size: 20px; /* Adjust icon size slightly larger than text */
    color: #4A5568; /* Dark gray for subtle contrast */
    margin-right: 8px;
}

/* Links */
.contact-info a {
    text-decoration: none;
    color: #2D3E5B;
    font-weight: 300;
    transition: color 0.3s ease-in-out;
}

.contact-info a:hover {
    color: #007b8f; /* Matches your branding */
}








/* Footer */
footer {
    position: relative;
    background-image: url('img/kc.png'); /* Ensure this path is correct */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    margin-top: 50px;
    padding: 0px 0px 0px 0px;
    line-height: 2; /* Adjust this value for more or less spacing */


}


.download-button { 

    padding-top: 50px;
    padding-bottom: 50px;

 }

.resume-body { 
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    text-align: left; /* Keep text left-aligned for readability */
    padding: 20px 20px;
 }


 .resume-body h2 { 
    text-align: center;
    font-size: 18pt;
    font-weight: 400;
    font-family: 'Spectral', serif;
    margin-bottom: 35px;

}

/* Work Experience Entry */
.resume-entry {
    margin-bottom: 30px;
    padding-bottom: 20px;

}


/* Job Header (Title + Company + Date) */
.resume-header {
    display: flex;
    justify-content: space-between;  /* Pushes company & date to the right */
    align-items: center;  /* Aligns everything in one row */
    flex-wrap: wrap;  /* Prevents breaking on smaller screens */
}


/* Job Title - Left Aligned */
.resume-header h3 {
    font-family: 'Spectral', serif;
    font-size: 16pt;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 5px;
    flex: 1;  /* Allows title to take up available space */
}

/* Company Name & Date (Lato Sans-Serif) */
.resume-meta {
    display: flex;
    gap: 40px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 11pt;
    color: #4A5568;
    white-space: nowrap;
    margin-top: 12px;

}


/* Material Icons */
.resume-meta i {
    font-size: 16px;
    vertical-align: middle;
    margin-right: 4px;
    color: #2D3E5B;
}

/* Job Description (Spectral Serif, Readable) */
.resume-entry p {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #2D3E5B;
    line-height: 1.85;
    margin: 0;

}

.resume-entry ul,
.resume-entry ul li {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #2D3E5B;
  line-height: 1.85;
  margin: 0;
}


/* When the screen is smaller (e.g., iPhone width), stack the company & date under the job title */
@media (max-width: 600px) {
    .resume-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 10px;
    }

    .resume-meta-container {
        flex-direction: column; /* Stack company & date */
        align-items: flex-start; /* Keep left-aligned */


    }
}





/*--------EDUCATION SECTION-------- *//* Education Section */
/* Education Section */


.education h2 { 

 text-align: center;
    font-size: 16pt;
    font-weight: 400;
    font-family: 'Spectral', serif;
    margin-bottom: 35px;

 }

 /* Adjust education & certification container */
.education-container {
    max-width: 800px;  /* Ensuring it doesn't exceed 800px */
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Ensure left and right columns are aligned */
    align-items: flex-start;
    margin-bottom: 30px;
}

/* Ensure the columns are balanced */
.education-column {
    flex: 1; /* Makes both columns equal width */
}

/* Ensure left (education) stays aligned left */
.education-left {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
}

/* Ensure right (certifications) stays aligned right */
.education-right {
    flex: 1;
    text-align: left; /* Aligns text to the left */
    display: flex;
    flex-direction: column;
    gap: 0px;
}

/* Entry Styling */
.education-entry
{
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
    margin-bottom: 6px;
}


.education-entry h3 { 

 font-weight: 400;
    font-size: 12pt;
    font-family: Spectral;
    font-style: italic;
    font-weight: 500;


 }

.education-entry i {
    font-size: 18px;
    color: #2D3E5B;
    margin-right: 5px;
    margin-top: -20px;

}

.schoola { margin-right: 35px; }

.schoolb { margin-right: 5px; }

.education-meta {
    display: flex;
    align-items: center;
    gap: 6px; /* Space between icon and year */
    font-size: 12pt;
    color: #4A5568;
      margin-left: -30px;
    margin-right: 10px; 
    padding-right: 20px;
    margin-top: 0px;
}


.education-meta i { 
    margin-top: 0px;
    margin-left: 10px;

     }



/* certification side */

.certification-entry {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: -8px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 13pt;

}

.certification-entry h3 { 

    display: flex;
    align-items: center;
    justify-content: space-between; /* Keeps text and date aligned */
    font-weight: 500;
    font-size: 12pt;

 }


.cert-date { margin-left: 5px; }


.certification-entry i {
    font-size: 18px;
    color: #2D3E5B;
    margin-left: 10px;
}





/* Ensure the right side text and icons align */
.certification-meta {
    justify-content: flex-end; /* Push year & icon to the right */
    display: flex;
    align-items: center;
    gap: 6px; /* Space between icon and year */
    font-size: 12pt;
    color: #4A5568;

}




/* Responsive fixes for smaller screens */
@media (max-width: 800px) {
    .education-container {
        flex-direction: column; /* Stack on smaller screens */
        gap: 20px;
    }

    .education-left,
    .education-right {
        text-align: left; /* Stack both left on mobile */
    }
}







/*-------skills-------*/


.skills { 
    max-width: 800px;
    margin: 0 auto;
    text-align: left; /* Keep text readable */
    padding: 20px;

 }


.skills h2 { 
    text-align: center;
    font-size: 18pt;
    font-weight: 400;
    font-family: 'Spectral', serif;
    margin-bottom: 20px;
    margin-top: 20px;

 }


.skills-container { 
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}

.category {
    margin-bottom: 20px;
}


.category h3 { 

    font-weight: 400;
    font-size: 14pt;
    font-family: Spectral;
    font-weight: 500;
    font-style: italic;

 }


.category ul { 
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 12pt;
    padding-left: 20px;
    line-height: 25px;
    
 }


.category p { 

    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 12pt;
    
 }


/* ----- individual case-study template page ---------- */

/* General Styles for Case Study Page */
.case-study-header {
    position: relative;
    text-align: center;
    color: white;
    padding: 50px 20px;
    min-height: 150px; 
    max-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    background-size: cover;
    background-position: center;
}

/* Custom background for each case study */
.discovery-student {
    background-image: url('img/child-on-pc-header.png');
}

.team-collab {
    background-image: url('img/group-design2.png');
}

.growth-framework {
    background-image: url('img/colored-pencils.png');
}

/* Add the black overlay */
.case-study-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Black overlay with 30% opacity */
    z-index: 1;
}


/* When scrolled, shrink the header */
.case-study-header.shrunk {
    min-height: 80px;
    padding: 20px;
}


/* Fade out the "Case Study" title */
.case-study-header.shrunk .main-title {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}


/* Sticky Container - Holds Both Title & Sub-Navigation */
.sticky-container {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}



/* Styling for the Sticky Title */
.sticky-title-bar {
    text-align: center;
    padding-top: 10px;
}

.sticky-title-bar h2 {
    font-size: 24px;
    font-weight: 600;
    color: #0C859B;
    padding-bottom: 10px;
}

.sticky-title-bar p {
    font-size: 16px;
    color: #2D3E5B;
}


.case-details p { 

    text-align: center;
 }

/* Ensure text is above the overlay */
.case-study-header .header-content {
    position: relative;
    z-index: 2;
}



/* Case Study Title */
.case-study-header h1 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 10px;
    transition: opacity 0.3s ease-in-out;
}

/* Subtitle */
.header-content h2 { 
    font-size: 24px;
    font-weight: bold;
    color: white;
    font-family: Spectral, serif;
    letter-spacing: 1px;
}

/* Meta details */
.case-study-meta {
    font-size: 18px;
    font-weight: 300;
    color: white;
    margin-top: 8px;
}

/* Sticky Header on Scroll */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;

    padding: 15px 20px;
    font-size: 20px;
    font-weight: 600;
    color: #2D3E5B;
    text-align: center;
    z-index: 1000;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    transform: translateY(-100%);
    opacity: 0;
}

.sticky-header.visible {
    transform: translateY(0);
    opacity: 1;
}

.sticky-header.hide {
    transform: translateY(-100%);
    opacity: 0;
}

/* =============== SUB-NAVIGATION =============== */
.sub-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 0px;
    margin-botom: 20px;
    padding-top: 0px;
    padding-bottom: 30px;
    background: white;
    position: sticky;
    top: 0;
    z-index: 999;
}

.sub-nav ul {
    
    display: flex;
    justify-content: space-between;
    gap: 30px;
    list-style: none;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;



    padding-bottom: 10px;


}

/* Positioning each nav item */
.sub-nav li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Number Circle */
.sub-nav a {
    display: flex;
    flex-direction: column; /* Stack number & label */
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #B6D4D9;
    color: #0C859B;
    font-family: Spectral, serif;
    font-size: 18px; /* Slightly larger */
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    line-height: 60px; /* Ensure the number is centered */
}


/* Ensure number is perfectly centered */
.sub-nav a::before {
    content: attr(data-step); /* Pulls number from data attribute */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers exactly */
    font-size: 20px; /* Ensures it's readable */
    font-family: Spectral, serif;
    font-weight: 600; /* Bold for clarity */
    color: inherit; /* Adapts based on active state */
    line-height: 1; /* Prevents extra spacing */
}



/* Label below numbers */
.sub-nav .label {
    margin-top: 60px; /* Moves label below circle */
    font-size: 14px;
    font-family: Lato, sans-serif;
    color: #0C859B;
    font-weight: 500;
    text-align: center;
    padding-top: 10px;
}



/* Hover effect */
.sub-nav a:hover {
    background-color: #0C859B;
    color: white;
}

/* Active number */
.sub-nav a.active {
    background-color: #2D3E5B;
    color: white;
}

/* Active label color */
.sub-nav a.active div {
    color: #2D3E5B; /* Dark Blue */
}

/* Connecting Line */
.sub-nav ul::before {
     content: "";
    position: absolute;
    top: 15px; /* Adjust based on number position */
    left: 5%;
        width: calc(100% - 10%); /* Prevents overflow beyond last circle */

    height: 2px;
    background-color: #B6D4D9;
    z-index: -1;
}




.cs-images { 
    width: 100%; /* Full width */
    max-width: 800px; /* Restrict max width */
    text-align: center; /* Center caption */
    margin: 0 auto; /* Center the whole figure */
    padding-bottom: 20px;
}

.cs-images img { 
    width: 100%; /* Make sure it scales properly */
    height: auto; /* Keep aspect ratio */
    max-height: 500px; /* Ensure it doesn’t exceed max height */
    object-fit: cover; /* Crop image */
    display: block; /* Prevents whitespace issues */
    margin-bottom: 20px;
}

.cs-images figcaption {
    font-size: 14px;
    color: #2D3E5B;
    text-align: center;
    margin-top: 8px;
    font-style: italic;
    display: block; /* Ensure it appears */
}


.readMore p { 


    line-height:5px; }








/* Flexbox Layout */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0;
}

/* Left Section with Transparent Background */

.footer-left {
    text-align: left;
    padding: 25px 75px;  /* Reduce left/right padding */
    background: rgba(45, 62, 91, 0.90);

    max-width: 420px; /* Slightly reduce width */
}

.footer-left h2 {
    font-size: 20pt;
    margin-bottom: 10px;
    font-family: Spectral;
    font-weight: 300;
}

.footer-left p {
    font-size: 12pt;
    margin: 5px 0;
    display: flex;
    align-items: center;
    font-family: Lato;
    font-weight: lighter;
}

/* Links */
.footer-left a {
    color: #aad3d6;
    text-decoration: none;
    font-family: Lato;
    font-weight: 300;
}

.footer-left a:hover {
    text-decoration: underline;
}

/* Material Icons */
.footer-left .material-icons {
    font-size: 16px;
    margin-right: 8px;
    vertical-align: middle;

}

/* Button */
.footer-left .btn-secondary {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    margin-left: 0px;
    margin-right: 0px;
    padding: 5px 20px;
    border-radius: 8px;
    border: 1px solid #aad3d6;
    background: transparent;
    color: white;
    font-weight: 500;
    font-size: 12pt;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.footer-left .btn-secondary:hover {
    background: #2D3E5B;
    color: #002b36;
}

/* Right Section */
.footer-right {
    position: absolute;
    bottom: 15px; /* Adjust as needed */
    right: 20px;
    color: white;
    font-size: 10pt;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Adds a soft shadow for readability */
    text-align: right;
}

.footer-right p {
    margin: 5px 0;
    color: #D4DCE8;
}