:root {
    --royal-blue: #0891b2;
    --light-blue: #06b6d4;
    --orange: #f97316;
    --dark-orange: #ea580c;
    --light-gray: #f3f4f6;
    --dark-gray: #374151;
    --text-dark: #1f2937;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-gray);
    overflow-x: hidden;
    margin: 0;
        padding: 0;
        width: 100%;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border-top: 4px solid var(--royal-blue);
    border-right: 4px solid var(--orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Navbar */
.navbar {
    background: var(--text-dark);
    backdrop-filter: blur(8px);
    margin: 0 15px 0 15px;
    border-radius: 15px;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--light-blue) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar-brand span {
    color: var(--orange);
}
.logo {
    height: 60px;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--orange) !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}


.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600') center/cover;
    padding: 180px 0 100px;
    color: white;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--royal-blue) 0%, transparent 100%);
    opacity: 0.5;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-top: 20px;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: var(--orange);
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--orange);
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--royal-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 20px auto 0;
}

/* Story Section */
.story-section {
    background: white;
}

.story-content {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.story-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-img:hover img {
    transform: scale(1.05);
}

.story-text h3 {
    color: var(--royal-blue);
    font-size: 2rem;
    margin-bottom: 20px;
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.highlight-text {
    background: linear-gradient(135deg, var(--orange) 0%, var(--dark-orange) 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.highlight-text h4 {
    color: white;
    margin-bottom: 15px;
}

.highlight-text p {
    margin: 0;
    font-size: 1.05rem;
}

/* Vision Mission Values */
.vmv-section {
    background: var(--light-gray);
}

.vmv-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vmv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.5s ease;
}

.vmv-card:hover::before {
    left: 100%;
}

.vmv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.vmv-icon {
    width: 80px;
    height: 80px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.vmv-icon i {
    font-size: 2.5rem;
    color: white;
}

.vmv-card h3 {
    color: var(--royal-blue);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.vmv-card p,
.vmv-card ul {
    color: var(--dark-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.vmv-card ul {
    list-style: none;
    padding: 0;
}

.vmv-card ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.vmv-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--orange);
}

/* Commitment Section */
.commitment-section {
    background: var(--text-dark);
    color: white;
}

.commitment-section .section-title h2,
.commitment-section .section-title p {
    color: white;
}

.commitment-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
}

.commitment-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.commitment-icon {
    width: 70px;
    height: 70px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.commitment-icon i {
    font-size: 2rem;
    color: white;
}

.commitment-item h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.commitment-item p {
    text-align: center;
    opacity: 0.95;
    margin: 0;
}

/* Growth Strategy */
.growth-section {
    background: white;
}

.growth-content {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.growth-content h3 {
    color: var(--royal-blue);
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
}

.growth-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 20px;
}

.growth-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.goal-item {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.goal-item i {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 20px;
}

.goal-item h5 {
    color: var(--royal-blue);
    margin-bottom: 10px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg,
                rgba(0, 0, 0, 0.75),
                rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1600') center/cover fixed;
    color: white;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.7);
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stat-box {
    text-align: center;
    padding: 40px 20px;
}

.stat-box i {
    font-size: 4rem;
    color: var(--orange);
    margin-bottom: 20px;
}

.stat-box h3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.stat-box p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: var(--light-gray);
    text-align: center;
}

.cta-content {
    background: linear-gradient(135deg, var(--orange) 0%, var(--dark-orange) 100%);
    border-radius: 20px;
    padding: 60px 40px;
    color: white;
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.3);
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-custom {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-white {
    background: white;
    color: var(--orange);
    border: none;
}

.btn-white:hover {
    background: var(--royal-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--orange);
}

.footer-content p {
    opacity: 0.9;
    line-height: 1.8;
}

.footer-links h5 {
    color: var(--orange);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--orange);
    padding-left: 5px;
}
.footer-bottom p a {
    color: var(--orange);
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
}

/* Scroll to top button */
#scrollTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

#scrollTop:hover {
    background: var(--dark-orange);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 150px 0 80px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .story-img {
        height: 300px;
        margin-bottom: 30px;
    }

    .growth-content {
        padding: 30px 20px;
    }

    .cta-content {
        padding: 40px 30px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}