/* Basic Reset & Body Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background-color: #1a1a1a; /* Dark background overall */
    color: #f0f0f0; /* Light text color */
    line-height: 1.6;
    padding-top: 60px; /* Add space for fixed nav */
    font-feature-settings: 'cv01' 1, 'cv02' 1, 'cv03' 1, 'cv04' 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fixed-nav {
position: fixed;
top: 0;
left: 0;
width: 100%;
background: #222;
z-index: 1000;
padding: 10px 0;
text-align: center;
}
.fixed-nav a {
color: #fff !important;
margin: 0 15px;
text-decoration: none;
font-weight: 500;
transition: color 0.2s;
display: inline-block;
}
.fixed-nav a:hover {
color: #e74c3c !important;
text-decoration: underline;
}
.nav-toggle {
display: none;
font-size: 2rem;
color: #fff;
cursor: pointer;
margin-right: 20px;
vertical-align: middle;
}
.fixed-nav-links {
display: inline-block;
}
@media (max-width: 768px) {
.nav-toggle {
    display: inline-block;
}
.fixed-nav-links {
    display: none;
    width: 100%;
    background: #222;
    position: absolute;
    left: 0;
    top: 100%;
    text-align: left;
    padding: 10px 0;
}
.fixed-nav-links.show {
    display: block;
}
.fixed-nav-links a {
    display: block;
    margin: 10px 20px;
}
}

.logo {
position: absolute;
top: 15px;
left: 15px;
width: 120px; /* Smaller default for better mobile experience */
height: auto;
z-index: 1001; /* Higher than nav to prevent overlap */
}

.hero .container {
position: relative;
padding-top: 50px; /* Add more space at top for logo */
}

h1, h2, h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

h1 {
    font-weight: 700;
}

h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.015em;
}

p {
    margin-bottom: 1rem;
    color: #cccccc; /* Slightly dimmer text for paragraphs */
}

a {
    color: #e74c3c; /* Accent color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative; /* Needed for absolute positioning of section numbers */
}

section {
    padding: 60px 0;
    position: relative; /* Needed for absolute positioning of section numbers */
    overflow: hidden; /* Prevent content spillover */
}

.dark-section {
    background-color: #2c2c2c; /* Slightly lighter dark for contrast */
    border-top: 1px solid #444; /* Subtle separator */
    border-bottom: 1px solid #444;
}

.btn {
    display: inline-block;
    background-color: #e74c3c; /* Accent color red/orange */
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #c0392b; /* Darker shade on hover */
    text-decoration: none;
}

/* Section Numbers (as seen in the example image) */
.section-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    border: 1px solid #555;
}

/* Hide all section numbers */
.section-number {
    display: none;
}


/* Section 1: Hero */
.hero {
    /* Replace the URL below with your image URL */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./images/slide1background.png') no-repeat center center/cover;
    min-height: 70vh; /* Use min-height for better iPhone Safari compatibility */
    height: auto; /* Allow content to determine height if needed */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.value-proposition {
    background: rgba(231, 76, 60, 0.9);
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: normal;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
}

.button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-phone {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border: 2px solid #27ae60;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.btn-phone:hover {
    background: linear-gradient(135deg, #229954 0%, #27ae60 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Section 2: Our Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid */
    gap: 30px;
    text-align: left;
}

.service-item h3 {
    color: #e74c3c; /* Accent color for service titles */
    margin-bottom: 0.5rem;
}

/* Section 3: Why Choose Us */
.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-item {
    text-align: left; /* Align text left as in image */
}

.why-item-header {
    display: flex;
    align-items: flex-start; /* Changed from center to flex-start for consistent top alignment */
    gap: 15px;
    margin-bottom: 1rem;
    min-height: 40px; /* Ensure consistent minimum height */
}

.why-item .icon-placeholder {
    width: 30px;
    height: 30px;
    background-color: #e74c3c; /* Red square placeholder */
    flex-shrink: 0; /* Prevent square from shrinking */
    margin-bottom: 0; /* Remove bottom margin since we're using flex */
    margin-top: 5px; /* Small top margin to align with first line of text */
}

.why-item h3 {
     font-size: 1.1rem;
     margin-bottom: 0; /* Remove bottom margin since we're in flex container */
     margin-top: 0; /* Ensure no top margin */
     line-height: 1.3; /* Consistent line height for multi-line headings */
     flex: 1; /* Allow heading to take available space */
}


/* Section 4: Case Studies */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.case-study-item {
    background-color: #8B0000; /* Dark red background */
    padding: 25px;
    border-radius: 5px;
    border: 1px solid #a52a2a; /* Slightly lighter border */
}

.case-study-item h3 {
     font-size: 1.1rem;
     margin-bottom: 0.5rem;
     color: #fff; /* White heading on red background */
}
.case-study-item p {
     color: #f0f0f0; /* Light text on red background */
}


/* Section 5: Valley of Uncertainty Process */
.valley-process-section {
    background-color: #2c2c2c;
    padding: 60px 0;
}

.valley-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #bdc3c7;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-style: italic;
}

.valley-process {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.valley-phase {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.phase-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.phase-content h3 {
    color: #e74c3c;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.phase-content p {
    color: #bdc3c7;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.valley-arrow {
    font-size: 2rem;
    color: #e74c3c;
    font-weight: bold;
    margin: 0 10px;
}

.valley-outcome {
    background: rgba(231, 76, 60, 0.1);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    text-align: center;
    margin-top: 3rem;
}

.valley-outcome h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.valley-outcome p {
    color: #ecf0f1;
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Section 6: Industry Expertise */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center; /* Center align items */
}

.expertise-item .icon-placeholder.square {
    width: 40px;
    height: 40px;
    background-color: transparent; /* No background */
    border: 2px solid #e74c3c; /* Red border */
    margin: 0 auto 1rem auto; /* Center the icon */
    display: flex; /* Needed if you add an actual icon inside */
    justify-content: center;
    align-items: center;
}
.expertise-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Section 7: POC Methodology */
.poc-methodology-section {
    background-color: #2c3e50;
    padding: 60px 0;
    color: #fff;
}

.poc-methodology-section h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #bdc3c7;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.poc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 3rem;
}

.poc-item {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #34495e;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.poc-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-color: #e74c3c;
}

.poc-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.poc-item h3 {
    color: #fff;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.poc-summary {
    color: #bdc3c7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.poc-details {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #34495e;
}

.poc-details.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.poc-details h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.poc-details ul {
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
}

.poc-details li {
    color: #ecf0f1;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.poc-details li strong {
    color: #e74c3c;
}

.poc-outcome {
    background: rgba(231, 76, 60, 0.1);
    padding: 15px;
    border-radius: 4px;
    border-left: 4px solid #e74c3c;
    font-size: 0.9rem;
}

.poc-outcome strong {
    color: #e74c3c;
}

.click-hint {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 0.8rem;
    color: #7f8c8d;
    font-style: italic;
}

.poc-item:hover .click-hint {
    color: #e74c3c;
}

.poc-commitment {
    background: rgba(52, 73, 94, 0.5);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #34495e;
}

.poc-commitment h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.poc-commitment p {
    color: #bdc3c7;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.poc-cta {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: none;
}

.poc-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Section 8: Contact & Consultation */
.contact-section {
     background: rgba(0, 0, 0, 0.8);
     text-align: center;
     padding: 80px 0;
     color: #fff;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #444;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #ccc;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e74c3c;
    background-color: rgba(255, 255, 255, 0.15);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
}

/* Footer Styles */
.site-footer {
    background-color: #1a1a1a;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #444;
}

.site-footer p {
    color: #ccc;
    margin: 0;
}

.site-footer a {
    color: #e74c3c;
}

/* --- Responsive Adjustments --- */

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    
    /* Mobile section spacing adjustments */
    section {
        padding: 50px 20px; /* Reduce padding and add horizontal spacing */
    }
    
    .hero { 
        min-height: 60vh; /* Use min-height for iPhone compatibility */
        height: auto;
        padding: 60px 20px 60px; /* Increase bottom padding to match section spacing */
    }
    
    .hero .container {
        padding-top: 40px; /* Adjust for smaller logo */
    }
    
    .hero h1 {
        font-size: 2.2rem; /* Slightly larger on tablets for better readability */
    }
    
    .logo {
        width: 100px;
        top: 12px;
        left: 12px;
    }

    .services-grid,
    .why-choose-us-grid,
    .case-studies-grid,
    .expertise-grid,
    .poc-grid {
        grid-template-columns: 1fr 1fr; /* Two columns on medium screens */
    }

    /* Valley Process Mobile Stacking */
    .valley-process {
        flex-direction: column;
        gap: 30px;
    }
    
    .valley-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
        margin: 10px 0;
    }
    
    .valley-phase {
        max-width: 100%;
    }

    .expertise-item-full {
         grid-column: span 2; /* Ensure full span on smaller grids */
    }
}

@media (max-width: 576px) {
    h1 { font-size: 2rem; }
    
    /* Smaller mobile section spacing */
    section {
        padding: 40px 15px; /* Tighter spacing for small screens */
    }
    
    .hero {
        min-height: 65vh; /* More space on very small screens */
        height: auto;
        padding: 50px 15px 50px; /* Match section spacing for smooth transition */
    }
    
    .hero .container {
        padding-top: 35px;
    }
    
    .logo {
        width: 80px;
        top: 10px;
        left: 10px;
    }

    .services-grid,
    .why-choose-us-grid,
    .case-studies-grid,
    .expertise-grid,
    .poc-grid {
        grid-template-columns: 1fr; /* Single column on small screens */
    }
    
    /* POC section mobile adjustments */
    .poc-item {
        padding: 20px;
    }
    
    .poc-icon {
        font-size: 2rem;
    }
    
    .click-hint {
        position: static;
        margin-top: 1rem;
        text-align: center;
        font-size: 0.75rem;
    }
    
    .poc-commitment {
        padding: 20px;
    }

    .section-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        top: 10px;
        left: 10px;
    }

    /* Valley Process Small Mobile */
    .phase-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .valley-outcome {
        padding: 20px;
    }
     .expertise-item-full {
         grid-column: span 1;
    }
}

/* Blog Styles */
.blog-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./images/slide1background.png') no-repeat center center/cover;
    padding: 120px 0 60px 0;
    text-align: center;
    color: #fff;
}

.blog-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.blog-listing {
    background-color: #2c2c2c;
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #444;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: #e74c3c;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.blog-meta .category {
    background: #e74c3c;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-meta .date {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.blog-card h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card h2 a {
    color: #fff;
    text-decoration: none;
}

.blog-card h2 a:hover {
    color: #e74c3c;
}

.blog-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-tags span {
    background: #444;
    color: #bdc3c7;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
}

/* Coming Soon Articles */
.blog-card.coming-soon {
    opacity: 0.8;
    border: 2px dashed #555;
}

.blog-card.coming-soon h2 {
    color: #bdc3c7;
}

.coming-soon-notice {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid #e74c3c;
    border-radius: 4px;
    padding: 15px;
    margin-top: 15px;
    text-align: center;
}

.coming-soon-notice p {
    margin: 0;
    color: #f0f0f0;
    font-size: 0.9rem;
}

.coming-soon-notice a {
    color: #e74c3c;
    font-weight: 600;
    text-decoration: underline;
}

/* Article Styles */
.article-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../../images/slide1background.png') no-repeat center center/cover;
    padding: 120px 0 60px 0;
    text-align: center;
    color: #fff;
}

.article-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-subtitle {
    font-size: 1.2rem;
    color: #bdc3c7;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.article-content {
    background-color: #1a1a1a;
    padding: 60px 0;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    color: #f0f0f0;
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-body h2 {
    color: #e74c3c;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 10px;
}

.article-body h3 {
    color: #fff;
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
}

.article-body ul {
    margin: 20px 0;
    padding-left: 25px;
}

.article-body li {
    margin-bottom: 10px;
    color: #cccccc;
}

.article-body blockquote {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid #e74c3c;
    margin: 30px 0;
    padding: 20px;
    font-style: italic;
}

.article-body blockquote p {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.article-body blockquote cite {
    color: #e74c3c;
    font-size: 0.9rem;
    font-style: normal;
}

.article-body strong {
    color: #fff;
    font-weight: 600;
}

.article-cta {
    background: rgba(231, 76, 60, 0.1);
    border: 2px solid #e74c3c;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin: 40px 0;
}

.article-cta h3 {
    color: #e74c3c;
    margin-bottom: 15px;
}

.article-cta p {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .article-hero h1 {
        font-size: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .article-body {
        padding: 0 20px;
    }
}

/* Additional Mobile Breakpoints */

/* Landscape phones - iPhone specific fix */
@media (max-width: 667px) and (orientation: landscape) {
    .hero { 
        min-height: 100vh; /* Full viewport in landscape to prevent truncation */
        height: auto;
        padding: 60px 20px 40px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}

/* Extra small devices (iPhone SE, small phones) */
@media (max-width: 375px) {
    /* Ultra-tight section spacing for small screens */
    section {
        padding: 35px 10px; /* Minimal padding for content density */
    }
    
    .hero {
        min-height: 70vh; /* Ensure adequate space on iPhone SE */
        height: auto;
        padding: 45px 10px 45px; /* Match section spacing pattern */
    }
    
    .hero h1 { 
        font-size: 1.8rem; 
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem; /* Reduce space before buttons */
    }
    
    .logo { 
        width: 70px;
        top: 8px;
        left: 8px;
    }
    
    .button-container {
        flex-direction: column;
        gap: 15px;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        padding: 12px 20px;
        text-align: center;
    }
}

/* Mobile Navigation Enhancements */
@media (max-width: 768px) {
    .fixed-nav {
        z-index: 1000; /* Below logo */
    }
    
    .nav-toggle {
        right: 15px; /* Match logo positioning */
        top: 15px;
        font-size: 1.2rem;
        padding: 8px;
    }
    
    .fixed-nav-links {
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    }
}

/* FAQ Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    max-width: calc(100vw - 40px);
    background: #2c3e50;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.chatbot-container.minimized .chatbot-body {
    display: none;
}

.chatbot-header {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.chatbot-container.minimized .chatbot-header {
    border-radius: 8px;
}

.chatbot-icon {
    font-size: 1.2rem;
    margin-right: 10px;
}

.chatbot-title {
    flex: 1;
    font-weight: 600;
    font-size: 0.9rem;
}

.chatbot-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
}

.chatbot-body {
    background: #34495e;
    border-radius: 0 0 8px 8px;
    display: flex;
    flex-direction: column;
    height: 400px;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bot-message, .user-message {
    padding: 12px 15px;
    border-radius: 15px;
    max-width: 85%;
    word-wrap: break-word;
    line-height: 1.4;
    font-size: 0.9rem;
}

.bot-message {
    background: #e74c3c;
    color: white;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.user-message {
    background: #95a5a6;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.chatbot-input-container {
    padding: 15px;
    background: #2c3e50;
    border-radius: 0 0 8px 8px;
    display: flex;
    gap: 10px;
}

.chatbot-input-container input {
    flex: 1;
    padding: 10px 12px;
    border: none;
    border-radius: 20px;
    background: #34495e;
    color: white;
    font-size: 0.9rem;
    outline: none;
}

.chatbot-input-container input::placeholder {
    color: #bdc3c7;
}

.chatbot-input-container button {
    padding: 10px 20px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.chatbot-input-container button:hover {
    background: #c0392b;
}

/* Mobile responsiveness for chatbot */
@media (max-width: 768px) {
    .chatbot-container {
        width: calc(100vw - 20px);
        right: 10px;
        bottom: 10px;
    }
    
    .chatbot-body {
        height: 350px;
    }
    
    .chatbot-messages {
        padding: 10px;
    }
    
    .chatbot-input-container {
        padding: 10px;
    }
}