:root{
    --app-color: #D1362A;
}

/* Global fix for layout overflow */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Make all elements respect container bounds */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Add to your global CSS */
body.scroll-lock {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.mobile-menu-overlay {
  -webkit-overflow-scrolling: touch;
  touch-action: none; /* disable pinch zoom scroll */
}


section {
    width: 100%;
    height: 100vh;
    max-height: auto;
    overflow-x: hidden !important;
}
/* About Us Page Styles */
.about-us {
    padding: 60px 0;
}

.about-us .img-fluid {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-us h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--app-color);
}

.about-us p {
    font-size: 1.1rem;
    color: #555;
}

/* Company Values Section */
.company-values {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.company-values h2 {
    color: var(--app-color);
    margin-bottom: 40px;
}

.company-values i {
    margin-bottom: 20px;
}

.company-values p {
    font-size: 1rem;
    color: #666;
}

/* Team Section */
.team {
    padding: 60px 0;
}

.team img {
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team h2 {
    font-size: 2.5rem;
    color: var(--app-color);
    margin-bottom: 40px;
}

.team h5 {
    font-size: 1.3rem;
    color: #333;
}

@media (max-width: 768px){
    .bg-image-effect{
        display: none;
    }
}
