/* css/style.css */

/*
  Final Consolidated Stylesheet
  This file combines all @font-face declarations for Inter and Font Awesome,
  with your custom website-specific styles.
  This is the single file to be used in production.
*/


/* --- Inter Font Declarations --- */
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-v19-latin-200.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-v19-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-v19-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-v19-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-v19-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-v19-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- Font Awesome Declarations (Optimized) --- */

/* Font family for Brands icons */
@font-face {
  font-family: "Font Awesome 7 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/webfonts/fa-brands-400.woff2") format("woff2");
}

/* Font family for Solid icons */
@font-face {
  font-family: "Font Awesome 7 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/webfonts/fa-solid-900.woff2") format("woff2");
}

/* Font family for Regular icons */
@font-face {
  font-family: "Font Awesome 7 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/webfonts/fa-regular-400.woff2") format("woff2");
}

/* Universal styles for all icons */
.fa, .fas, .fab {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

/* Base styles for Solid icons (using fas prefix) */
.fas {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
}

/* Base styles for Brands icons (using fab prefix) */
.fab {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

/* Specific icon declarations from your list */
.fa-envelope:before { content: "\f0e0"; }
.fa-phone-alt:before { content: "\f879"; }
.fa-map-marker-alt:before { content: "\f3c5"; }
.fa-eye:before { content: "\f06e"; }
.fa-heart:before { content: "\f004"; }
.fa-star:before { content: "\f005"; }
.fa-tools:before { content: "\f7d9"; }
.fa-hand-holding-heart:before { content: "\f4be"; }
.fa-handshake:before { content: "\f2b5"; }
.fa-bolt:before { content: "\f0e7"; }
.fa-infinity:before { content: "\f534"; }
.fa-lightbulb:before { content: "\f0eb"; }
.fa-gem:before { content: "\f3a5"; }
.fa-comments:before { content: "\f086"; }
.fa-palette:before { content: "\f53f"; }
.fa-rocket:before { content: "\f135"; }
.fa-arrow-right:before { content: "\f061"; }
.fa-chevron-left:before { content: "\f053"; }
.fa-chevron-right:before { content: "\f054"; }
.fa-ship:before { content: "\f21a"; }
.fa-paint-brush:before { content: "\f1fc"; }
.fa-store:before { content: "\f54e"; }
.fa-wine-bottle:before { content: "\f72f"; }
.fa-box:before { content: "\f466"; }
.fa-desktop:before { content: "\f390"; }
.fa-suitcase-rolling:before { content: "\f5c1"; }
.fa-chevron-down:before { content: "\f078"; }
.fa-times:before { content: "\f00d"; }
.fa-linkedin-in:before { content: "\f0e1"; }

body {
    font-family: 'Inter', sans-serif;
    background-color: #f2eadf; /* Light blue-gray #f8fafc background */
    color: #334155; /* Darker text for readability */
    overflow-x: hidden; /* Prevent horizontal scroll */
    scroll-snap-type: y mandatory; /* Services page specific, but applied globally for now */
    scroll-behavior: smooth; /* Smooth scroll transition */
}

/* AK added class - consistent image treatment across all bold or new design images */
.image-muted-tone {
  filter: contrast(0.95) brightness(1.05) sepia(0.05) saturate(0.5);
}

.section-title {
    font-size: 4rem; /* Equivalent to text-4xl */
    font-weight: 200; /* Equivalent to font-bold */
    color: #3e3d46; /* Even darker for titles. #3c16d4 nice colour */
    margin-bottom: 1.5rem; /* Equivalent to mb-6 */
}

/* Specific to Services Page */
body#services-page {
    background-color: #f2eadf; /* Services page specific background #3f0e56c7;*/
}
body#services-page .section-title {
    font-size: 5rem; /* Equivalent to text-4xl */
    font-weight: 100; /* Equivalent to font-bold */
    color: #334155; /* Even darker for titles old #f9f2ff */
    margin-bottom: 1rem; /* Equivalent to mb-6 */
}
body#services-page p .section-title {
    color: #334155; /* Light text for dark background old #f9f2ff */
}


.sub-section-title {
    font-size: 1.75rem; /* Equivalent to text-3xl */
    font-weight: 600; /* Equivalent to font-semibold */
    color: #334155;
    margin-bottom: 1rem; /* Equivalent to mb-4 */
}

/* Section Styling (from index.html) */
.home-section {
    min-height: 750px; /* Each section height */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    padding: 4rem 1rem; /* Generous padding */
    box-sizing: border-box; /* Include padding in height calculation */
    position: relative; /* For background images/carousels */
    text-align: center;
    background-size: cover; /* Ensure background images cover the section */
    background-position: center; /* Center background images */
    background-repeat: no-repeat; /* Prevent background image repetition */
    color: #334155; /* Default text color for sections */
}
/* Overlay for sections with background images to ensure text readability */
.home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6); /* Light overlay for dark text */
    z-index: 0;
}
/* Specific overlay for dark sections */
#why-airkraft-section::before {
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for light text */
}
/* Ensure content is above the overlay */
.home-section > *:not(.section-background-image) {
    position: relative;
    z-index: 1;
}

/* Work Section Carousel (from index.html) */
#work-section {
    background-color: #f6e0ce; /* Light background for contrast */
    overflow: hidden; /* Hide overflowing images */
    padding: 0; /* Remove padding to allow full width carousel */
}
.work-carousel-container {
  width: 100vw;           /* Full viewport width */
  max-width: 100vw;       /* Prevent overflow */
  height: 56vw;           /* 16:9 aspect ratio (adjust as needed) */
  max-height: 80vh;       /* Prevents it from being too tall on desktop */
  position: relative;
  overflow: hidden;
  margin-left: calc(-50vw + 50%); /* Center the full-width carousel in a container */
}

@media (max-width: 640px) {
  .work-carousel-container {
    height: 60vw;         /* Slightly taller on mobile, adjust as needed */
    max-height: 60vw;
  }
}

.work-carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    cursor: pointer; /* Make images clickable */
}
.work-carousel-image.active {
    opacity: 1;
}
.work-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.1); /* Semi-transparent black */
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 2rem;
    z-index: 20;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.work-carousel-arrow:hover {
    background-color: rgba(0, 0, 0, 0.4);
    transform: translateY(-50%) scale(1.05);
}
.work-carousel-arrow.left-arrow {
    left: 1rem;
}
.work-carousel-arrow.right-arrow {
    right: 1rem;
}
.work-carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}
.work-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.3);
}
.work-dot.active {
    background-color: #e6ad7d; /* Gold color */
    transform: scale(1.2);
    border-color: #e6ad7d;
}
.work-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Services Section (from index.html) */
#services-section {
    background-color: #f6e0ce; /* Slightly darker background */
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 900px;
    width: 100%;
    margin-top: 2rem;
}
@media (min-width: 640px) { /* sm breakpoint */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) { /* lg breakpoint */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.service-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0rem;
    border-radius: 2rem;
    box-shadow: 0 3px 8px rgba(12, 12, 12, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Center content vertically */
    text-align: center;
    transition: transform 0.2s ease;
    aspect-ratio: 1/ 1; /* Make tiles square */
    cursor: pointer; /* Make service tiles clickable */
    position: relative; /* For overlay */
}
.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(197, 134, 33, 0.3); /* Dark overlay for text readability */
    border-radius: 2rem;
    z-index: 1;
}
.service-item:hover {
    transform: translateY(-5px);
}
.service-item i, .service-item h3 {
    position: relative;
    z-index: 2; /* Bring text and icon above overlay */
    color: white; /* Ensure text is white for dark overlay */
}
.service-item i {
    font-size: 2.5rem;
    /* color: #e6ad7d; Removed specific color, now white */
    margin-bottom: 1rem;
}
.service-item h3 {
    font-weight: 300;
    /* color: #1e293b; Removed specific color, now white */
    font-size: 2.25rem;
}

/* Insights Section (from index.html) */
#insights-section {
    background-color: #f6e0ce;
}
.insights-tiles-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    margin-top: 2rem;
}
@media (min-width: 768px) {
    .insights-tiles-container {
        grid-template-columns: repeat(3, 1fr);
    }
}
.insight-tile-home {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    overflow: hidden;
    text-align: left;
    padding: 1rem;

    transition: transform 0.2s ease;
}
.insight-tile-home:hover {
    transform: translateY(-5px);
}

.insight-tile-home img {
    width: 100%;
    height: 180px; /* Fixed height for image */                             
    object-fit: cover;
    margin-bottom: 2rem;
    
}
.insight-text-container {
    flex-grow: 1; /* Allow text container to take remaining space */        
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.insight-text-container h3 {
    font-weight: 300;
    color: #1e293b;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.insight-text-container p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.4;
}
.section-descriptor {
    font-size: 1.125rem; /* text-lg */                                      
    color: #475569; /* slate-600 */                                         
    text-align: center;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.section-link {
    display: inline-block;
    background-color: #3b82f6; /* blue-500 */                               
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1.5rem;
}                                                                           
.section-link:hover {
    background-color: #2563eb; /* blue-600 */                                  
    transform: translateY(-2px);
}

/* Microscopic Section (from index.html) */
#microscopic-section {
    background-image: url('../images/microscopic_details_background.jpg'); /* Background image for microscopic section */
    background-size: cover;
    background-position: center;
    padding: 6rem 1rem; /* More vertical padding for text-heavy section */
}
#microscopic-section .section-descriptor {
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 3rem;
    color: #1e293b; /* Ensure text is readable on light background */
}

/* Why Air/Kraft Section (from index.html) */
#why-airkraft-section {
    background-image: url('../images/distinct_approach_background.jpg'); /* Background image for why air/kraft section */
    background-size: cover;
    background-position: center;
    color: white;
}
#why-airkraft-section .section-title {
    color: #dd9c05;
}
#why-airkraft-section .section-descriptor {
    color: #e5e6e7; /* Light gray text */
    font-size: 1.125rem;
    line-height: 1.6;
}
.logo-culture {
    max-width: 850px;
    margin: 1.25rem auto;
    padding: 4.25rem;
    background-color: rgba(12, 7, 0, 0.5);
    border-radius: 2.25rem;
}
.logo-culture h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #dd9c05; /* Gold accent */
}
.logo-culture p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #f6e0ce; /* Old #e2e8f0 */
}

/* Work Grid (from work.html) */
.work-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Default to 1 column on small screens */
    gap: 2.5rem; /* gap-6 */
}
@media (min-width: 768px) { /* md breakpoint */
    .work-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }
}
@media (min-width: 1024px) { /* lg breakpoint */
    .work-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on large screens */
    }
}

.work-tile {
    position: relative;
    overflow: hidden;
    border-radius: 2rem; /* rounded-xl */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-lg */
    cursor: pointer;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    aspect-ratio: 9 / 14 ; /* Maintain aspect ratio for images */
    will-change: transform; /* Optimize for animation */
}

.work-tile:hover {
    transform: translateY(-8px); /* Subtle lift on hover */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.work-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Initial Title Overlay */
.tile-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    padding: 1rem;
    /* background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)); /* Subtle gradient */
    color: rgb(255, 255, 255);
    font-weight: 300;
    font-size: 1.5rem; /* text-xl */
    border-top-left-radius: 0.75rem;
    transition: opacity 0.3s ease;
    z-index: 10;
}

/* Project Description Overlay */
.tile-description-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% transparent black */
    color: white; /* Default text color, will be adjusted by JS */
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0; /* Initially hidden */
    pointer-events: none; /* Allow clicks to pass through when hidden */
    transition: opacity 0.3s ease;
    border-radius: 0.75rem;
    z-index: 20;
}

.tile-description-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.tile-description-content {
    max-height: 100%; /* Allow content to scroll within the overlay */
    overflow-y: auto;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #e6ad7d #334155; /* thumb track */
    padding-right: 0.5rem; /* Space for scrollbar */
}

/* Webkit scrollbar styles */
.tile-description-content::-webkit-scrollbar {
    width: 8px;
}
.tile-description-content::-webkit-scrollbar-track {
    background: #334155; /* Dark track */
    border-radius: 10px;
}
.tile-description-content::-webkit-scrollbar-thumb {
    background-color: #e6ad7d; /* Gold thumb */
    border-radius: 10px;
    border: 2px solid #334155;
}

.tile-description-overlay h3 {
    font-size: 1.6rem; /* text-2xl */
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.tile-description-overlay p {
    font-size: 1.2rem; /* text-base */
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Close button for description overlay */
.close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease;
    z-index: 30; /* Ensure it's above the overlay */
}
.close-button:hover {
    transform: rotate(90deg);
    color: #e6ad7d; /* Gold on hover */
}

/* Parallax/Floating Effect (JavaScript controlled) */
.parallax-effect {
    transition: transform 3s linear; /* Smooth movement for parallax */
}


/* Service Section Styling for Scroll Snap (from services.html) */
.service-section {
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
}

/* New: Styling for the text slide */
.carousel-image.text-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eddec9;
    color: #1c1a18;
}

.text-content-wrapper {
    display: flex;
    flex-direction: column;
    padding: 4rem;
    max-width: 700px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.service-title-on-slide {
    font-size: clamp(1.5rem, 4vw, 2.5rem); /* Scales between 1.25rem and 2.5rem based on viewport width */
    font-weight: 300;
    color: #334155;
    margin-bottom: 0.8rem;
    padding-top: 1rem;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    font-size: clamp(0.65rem, 2.5vw, 1.1rem); /* Scales between 0.95rem and 1.25rem */
    line-height: 1.35;
    margin-bottom: clamp(0.5rem, 2.5vw, 1.1rem);
}

.service-list li span {
    font-weight: 600;
    color: #334155;
}

/* Carousel Tile Styling (from services.html) */
.carousel-tile {
    width: 100vw;
    max-width: 100vw;
    height: 56vw; /* 16:9 aspect ratio, adjust as needed */
    max-height: 80vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: calc(-50vw + 50%);
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}

@media (max-width: 640px) {
  .carousel-tile {
    height: 60vw; /* Slightly taller on mobile, adjust as needed */
    max-height: 60vw;
  }
}

.service-carousel-title {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    color: rgb(255, 255, 255);
    font-size: 3.5rem;
    font-weight: 200;
    z-index: 10;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-images-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 2rem;
    z-index: 20;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.carousel-arrow:hover {
    background-color: rgba(0, 0, 0, 0.5);
    transform: translateY(-50%) scale(1.05);
}

.carousel-arrow.left-arrow {
    left: 1rem;
}

.carousel-arrow.right-arrow {
    right: 1rem;
}

/* ... (rest of the CSS) ... */

/* Insights Section - Blog Tiles (from insights.html) */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* 1 column on small screens */
    gap: 2rem; /* gap-8 */
}
@media (min-width: 768px) { /* md breakpoint */
    .insights-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }
}
@media (min-width: 1024px) { /* lg breakpoint */
    .insights-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on large screens */
    }
}

.insight-tile {
    background-color: #ffffff;
    border-radius: 1.5rem; /* rounded-xl */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-lg */
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Stack image and text vertically on small screens */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.insight-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.insight-image-container {
    width: 100%;
    aspect-ratio: 14 / 9 ; /* Image aspect ratio */
    overflow: hidden;
}
.insight-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* This is likely causing visual cropping if original image isn't 9:12 (3:4) ratio */
.insight-tile-home img {
    width: 100%;
    height: 180px; /* Fixed height for image */
    object-fit: cover;
}

.insight-text-container {
    flex-grow: 1; /* Allow text container to take remaining space */
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.insight-text-container h3 {
    font-weight: 600;
    color: #1e293b;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}
.insight-text-container p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.4;
}
.section-descriptor {
    font-size: 1.125rem; /* text-lg */
    color: #475569; /* slate-600 */
    text-align: center;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.section-link {
    display: inline-block;
    background-color: #3b82f6; /* blue-500 */
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1.5rem;
}
.section-link:hover {
    background-color: #2563eb; /* blue-600 */
    transform: translateY(-2px);
}

/* Microscopic Section - Detail Tiles (from insights.html) */
.microscopic-container {
    max-width: 1400px; /* Limit width for readability */
    margin: 0 auto;
}
.micro-tile {
    background-color: #ffffff;
    border-radius: 0rem; /* More rounded */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Slightly stronger shadow */
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-bottom: 4rem; /* Space between tiles */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.micro-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.micro-tile-image {
    width: 50%; /* Half side */
    height: 400px; /* Fixed height for consistency */
    object-fit: cover;
}
.micro-tile-content {
    width: 50%; /* Other half side */
    padding: 3rem; /* Generous padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.micro-tile-content h3 {
    font-size: 2.5rem; /* text-3xl */
    font-weight: 700;
    color: #3e4552;
    margin-bottom: 1rem;
    margin-left: 2rem
}
.micro-tile-content ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0;
}
.micro-tile-content ul li {
    position: relative;
    padding-left: 2rem; /* Space for custom bullet */
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: hsl(214, 10%, 27%);
    line-height: 1.5;
}
.micro-tile-content ul li::before {
    content: "\2022"; /* Unicode bullet point */
    color: #e6ad7d; /* Gold color */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: 0em;
    position: absolute;
    left: 0;
}

/* Mobile adjustments for Microscopic tiles */
@media (max-width: 767px) {
    .micro-tile {
        flex-direction: column; /* Stack image and content vertically */
    }
    .micro-tile-image, .micro-tile-content {
        width: 100%; /* Full width when stacked */
    }
    .micro-tile-image {
        height: 200px; /* Smaller height on mobile */
    }
    /* Reverse order for alternating effect on mobile if needed, or just stack */
    .micro-tile:nth-child(odd) {
        flex-direction: column;
    }
    .micro-tile:nth-child(even) {
        flex-direction: column;
    }
}

/* About Page Specific Styles */
/* Custom style for elegant value words - thinner font */
.value-word {
    font-size: 1.75rem; /* text-4xl */
    font-weight: 200; /* Thinnest font weight */
    color: #1e293b; /* Dark text */
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
/* Adjusted value icon size to match quote icons (text-4xl equivalent) */
.value-icon {
    font-size: 2.25rem; /* Equivalent to text-4xl */
    color: #e6ad7d; /* Gold color */
    margin-bottom: 0.75rem; /* Space below icon */
}
/* Custom style for craftsmanship list items */
.craftsmanship-item {
    text-align: center; /* Center align the entire list item */
    margin-left: auto; /* Center the block */
    margin-right: auto; /* Center the block */
}
.craftsmanship-item strong {
    display: block; /* Make the bold text take its own line */
    margin-bottom: 0.25rem; /* Small space after the bold title */
    font-size: 1.125rem; /* text-lg */
    color: #1e293b;
}
/* Style for the new large content tiles */
.content-tile {
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-lg */
    margin-bottom: 2rem;
}
.content-tile h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}
/* Center align text within tiles, but allow lists to be left-aligned within their centered block */
.content-tile p {
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.content-tile ul {
    text-align: center; /* Center the ul block itself */
    list-style: none; /* Remove default bullet points */
    padding-left: 0; /* Remove default padding */
}
.quote-box {
    background-color: #fdf4e5; /* Light blue background for quotes */
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ... (existing CSS) ... */

/* New Founder's Note section styles */
.founder-note-section {
    display: flex;
    flex-direction: column; /* Default to column on small screens */
    align-items: center;
    gap: 4rem; /* Gap between image and text */
    padding: 4rem;
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) { /* lg breakpoint for desktop layout */
    .founder-note-section {
        flex-direction: row;
        align-items: flex-start; /* Align items to the top */
    }
}

.founder-image-container {
    flex-shrink: 0;
    width: 250px; /* Set a fixed width for the image container */
    height: 450px; /* Adjust height to maintain aspect ratio, or use object-fit */
    border: 16px solid white; /* White frame */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Shadow for depth */
    overflow: hidden;
    position: relative;
}

.founder-portrait-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-text-container {
    flex-grow: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    padding-right: 2rem;
}

.founder-text-container p {
    margin-bottom: 0.75rem; /* Adds a bottom margin to each paragraph for spacing */
}

.founder-text-container .sub-section-title {
    text-align: left;
    margin-bottom: 1rem;
}

/* ... (rest of the CSS) ... */

/* Contact Page Specific Styles */
.contact-info-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-lg */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.contact-info-card i {
    font-size: 3rem; /* Large icon size */
    color: #e6ad7d; /* Gold color */
    margin-bottom: 1rem;
}
.contact-info-card h3 {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}
.contact-info-card p, .contact-info-card a {
    font-size: 1rem; /* text-base */
    color: #475569; /* slate-600 */
    line-height: 1.5;
}
.contact-form-container {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-lg */
    max-width: 800px; /* Limit width for better readability on large screens */
    margin: 0 auto; /* Center the form */
}
.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1; /* slate-300 */
    border-radius: 0.375rem; /* rounded-md */
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #334155;
    transition: border-color 0.3s ease;
}
.form-input:focus {
    outline: none;
    border-color: #3b82f6; /* blue-500 */
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25); /* blue-500 with opacity */
}
.submit-button {
    background-color: #3b82f6; /* blue-500 */
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
}
.submit-button:hover {
    background-color: #2563eb; /* blue-600 */
    transform: translateY(-2px);
}

/* Blog Post Page General Styling */
.blog-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.blog-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.blog-post-container h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
    margin-left: 2rem;
    margin-right: 2rem;
}

.blog-meta {
    text-align: center;
    color: #64748b; /* slate-500 */
    font-size: 0.9rem;
    margin-bottom: 2rem;
    margin-left: 2rem;
    margin-right: 2rem;
}

.blog-content p {
    font-size: 1.125rem; /* text-lg */
    line-height: 1.8;
    color: #334155;
    margin-bottom: 1.5rem;
    margin-left: 2rem;
    margin-right: 2rem;
}

.blog-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    margin-left: 2rem;
    margin-right: 2rem;
}

.blog-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    margin-left: 2rem;
    margin-right: 2rem;
}

.blog-content ul {
    list-style: disc;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
    margin-left: 2rem;
    margin-right: 2rem;
}

.blog-content li {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 0.5rem;
    margin-left: 2rem;
    margin-right: 2rem;
}

/* Header GIF background style */
.header-with-gif {
    background-image: url('../images/header_background.gif'); /* THIS IS THE CRUCIAL LINE */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

/* Footer bottom section adjustments */
footer .border-t.border-gray-700 {
    margin-top: 2rem; /* Reduced from 3rem (mt-12 to mt-8) for general footer spacing */
    padding-top: 1rem; /* Reduced from 2rem (pt-8 to pt-4) for smaller top padding */
}
/* Footer gradient background */
footer {
    background: linear-gradient(to top, /* #ede2cc, Sencond colour on hold - AK */ #d8c19d); /* Example gradient from dark gray to darker gray */
}