img {
    max-width: 100%; /* Ensure the image does not exceed the container's width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Adjust this value to increase or decrease the roundness */
}

  
html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal overflow */
}

/* Header Section */
#sticky-banner {
    display: none;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #ffffff; /* white background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* enhanced shadow for more depth */
    border-bottom: 1px solid #ff7b00; /* primary color border */
    z-index: 1000;
    padding: 0 20px; /* padding for breathing space around the contents */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}



/* Use a media query to display the header on desktops */
@media (min-width: 992px) { /* This width can be adjusted based on your design requirements */
    #sticky-banner {
        display: flex; /* or your original display type */
    }
}


#back-link {
    color: #000000; /* black text */
    text-decoration: none;
    padding: 8px 12px; /* reduced padding */
    display: block;
    transition: background-color 0.3s, border-radius 0.3s; /* added transition for border-radius */
    border-radius: 4px; /* rounded corners */
}

#back-link:hover {
    background-color: #d3d3d3; /* light gray for hover effect */
}

.logo {
    padding: 10px; /* added padding around the logo */
}

.logo img {
    height: 40px; /* Adjust based on your logo's dimensions */
}

/* Container removed - using global.css version to avoid conflicts */

h2, h1 {
    color: #ff7b00; /* orange color for headings */
    font-size: 2em;
    margin-bottom: 10px; /* space below headings */
}

.smaller-text {
    font-size: 0.7em; /* Makes the text smaller than the rest of the h2 content */
    color: black;
}

p, ul {
    color: #666; /* dark grey for text */
    font-size: 1.1em;
    line-height: 1.6; /* line height for readability */
}

ul {
    list-style-type: none; /* no bullets */
    padding: 0; /* remove padding */
}

li {
    margin-bottom: 10px; /* space between list items */
}

/* Footer Section */
footer {
    padding: 20px;
    background-color: #333; /* dark background for footer */
    color: #fff; /* white text in footer */
    text-align: center;
    font-size: 0.9em;
}

a {
    color: #ff7b00; /* orange links */
    text-decoration: none; /* no underline */
}

a:hover {
    text-decoration: underline; /* underline on hover */
}

/* Call to Action Button */
.button {
    background-color: #ff7b00; /* orange background */
    color: #fff; /* white text */
    padding: 10px 20px;
    border-radius: 5px; /* rounded corners */
    display: inline-block;
    margin-top: 20px; /* space above button */
    transition: background-color 0.3s; /* smooth transition for hover effect */
}

.button:hover {
    background-color: #e66a00; /* darker orange on hover */
}

/* Footer Section */
footer {
    background-color: #f0f0f0;
    padding: 5px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto 10px;
}

.footer-left, .footer-center, .footer-right {
    display: flex;
    align-items: center;
}

.footer-left, .footer-right {
    gap: 20px;
}

.footer-left a, .footer-right p, .footer-contact p, .footer-contact a {
    color: #333;
    text-decoration: none;
}

.footer-left a:hover, .footer-contact a:hover {
    color: #ff7b00; /* match the theme's primary color */
    text-decoration: underline;
}

.footer-center img {
    width: 50px; /* Logo size adjusted */
}

.footer-right p {
    margin: 0;
    text-align: right;
}

/* Other page styles should follow or precede as organized in your full CSS file. */

/* About Page Styles */

/* Hero Section */
.about-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 123, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 149, 0, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.about-hero .lead {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Vision Section */
.vision-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vision-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ff7b00;
}

.vision-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Story Section */
.story-section {
    padding: 80px 0;
}

.story-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ff7b00, #ff9500);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    padding: 40px 0;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid #ff7b00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff7b00;
    z-index: 1;
}

.timeline-content {
    width: 45%;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 123, 0, 0.15);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff7b00;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 123, 0, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff7b00, #ff9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Technology Section */
.technology-section {
    padding: 80px 0;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ff7b00;
}

.tech-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.tech-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.tech-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #666;
}

.tech-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: #ff7b00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.tech-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Responsibility Section */
.responsibility-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.responsibility-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff7b00;
}

.responsibility-content {
    max-width: 800px;
    margin: 0 auto;
}

.responsibility-image {
    width: 100%;
    max-width: 400px;
    margin: 40px auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.responsibility-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* CTA Section */
.about-cta {
    padding: 80px 0;
    background: #2c3e50;
    color: white;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.about-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.cta-buttons .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .vision-content,
    .tech-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .vision-image,
    .tech-image img {
        margin: 0 auto;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
    }
    
    .story-timeline::before {
        left: 30px;
    }
    
    .timeline-icon {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .lead {
        font-size: 1.15rem;
        padding: 0 20px;
    }
    
    .vision-text h2,
    .tech-text h2,
    .responsibility-section h2,
    .about-cta h2 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .story-timeline {
        padding: 0 15px;
    }
    
    .timeline-content {
        padding: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .vision-text h2,
    .tech-text h2,
    .responsibility-section h2,
    .about-cta h2 {
        font-size: 1.75rem;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        padding: 20px;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .value-card {
        padding: 30px 20px;
    }
}
