/* General Body Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff8e1; /* Subtle yellow tone for warmth */
    color: #121212; /* Deep black for contrast */
    line-height: 1.6;
}

/* Back to Home Button */
.home-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    text-decoration: none;
    background: #ffa726; /* Bright orange */
    color: #ffffff; /* White text for visibility */
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.5);
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

.home-btn:hover {
    background: #fb8c00; /* Slightly darker orange */
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.7);
    transform: scale(1.1);
}

/* Hero Section */
.hero-section {
    text-align: center;
    background: linear-gradient(135deg, #ff9800, #ffd54f);
    padding: 100px 20px;
    color: #ffffff; /* White text for bright contrast */
    box-shadow: 0px 5px 20px rgba(255, 165, 0, 0.5);
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: #fff8e1; /* Soft yellow highlight */
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0 auto;
    max-width: 600px;
}

.hero-subtitle .highlight {
    color: #696b01; /* Bright yellow highlight */
    font-weight: bold;
}

/* About Container */
.about-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-overview {
    text-align: center;
    margin-bottom: 50px;
}

.about-overview h2 {
    font-size: 2.5rem;
    color: #ffa726;
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(255, 152, 0, 0.6);
}

.overview-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.overview-text .highlight {
    color: #fb8c00;
    font-weight: bold;
}

/* Overview Stats */
.overview-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    flex: 1;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.stat-item:hover {
    transform: scale(1.1);
    background: #fff3e0; /* Light orange for hover effect */
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.5);
}

.stat-icon {
    font-size: 2.5rem;
    color: #ffa726;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #121212;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .overview-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .home-btn {
        top: 10px;
        right: 10px;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Core Values */
.about-values {
    padding: 60px 20px;
    background: linear-gradient(145deg, #f4f4f4, #e8e8e8);
    text-align: center;
}

.about-values h2 {
    font-size: 2.5rem;
    color: #ff7f00;
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(255, 127, 0, 0.5);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s, box-shadow 0.4s;
    text-align: center;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 3rem;
    color: #ff7f00;
    margin-bottom: 10px;
}

.value-item h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Scroll-to-Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff7f00, #ffd700);
    color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #ffd700, #ff7f00);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.scroll-to-top i {
    font-size: 1.5rem;
    transition: transform 0.3s ease-in-out;
}

.scroll-to-top:hover i {
    transform: scale(1.1);
}

/* Show button when scrolling */
.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Custom Scrollbar */
body {
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: #ffd700 transparent; /* For Firefox */
}

/* Webkit Browsers */
body::-webkit-scrollbar {
    width: 12px;
    background-color: transparent;
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff7f00, #ffd700);
    border-radius: 6px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ffd700, #ff7f00);
}

body::-webkit-scrollbar-track {
    background: transparent;
}
.footer {
    background-color: #222; /* Dark and authentic color */
    color: #f3f3f3;
    padding: 50px 20px;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact,
.footer-social {
    min-width: 250px;
    margin-top: 20px;
}

.footer-contact h3,
.footer-social h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffa500; /* Orange accent for headings */
}

.footer-contact p,
.footer-contact a {
    font-size: 14px;
    color: #f3f3f3;
    text-decoration: none;
    line-height: 1.6;
}

.footer-contact a:hover {
    color: #ffa500;
    text-decoration: underline;
}

.footer-social .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #333; /* Neutral dark background */
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #f3f3f3; /* Light text color */
    font-size: 18px;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #ffa500; /* Orange hover effect */
    color: #222; /* Contrast color for hover */
}

.social-icon i {
    pointer-events: none; /* Ensures icon interaction doesn't disrupt hover effect */
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 30px;
    font-size: 14px;
}

.footer-bottom a {
    color: #ffa500;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
