/* ========================================
FITORA TECH - ABOUT US PAGE
======================================== */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

body {
font-family: -apple-system, BlinkMacSystemFont, â€˜Segoe UIâ€™, Roboto, sans-serif;
background-color: #fff;
color: #2C2C2C;
line-height: 1.6;
overflow-x: hidden;
overflow-y: auto;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
}

/* ========================================
NAVIGATION (Same as home page)
======================================== */
.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
background-color: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(10px);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
max-width: 1400px;
margin: 0 auto;
padding: 20px 40px;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-size: 24px;
font-weight: 700;
letter-spacing: 4px;
color: #05323D;
}

.nav-links {
display: flex;
list-style: none;
gap: 50px;
align-items: center;
}

.nav-link {
text-decoration: none;
color: #2C2C2C;
font-size: 16px;
font-weight: 400;
letter-spacing: 0.5px;
position: relative;
transition: color 0.3s ease;
}

.nav-link::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background-color: #05323D;
transition: width 0.3s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
width: 100%;
}

.nav-link:hover {
color: #05323D;
}

.contact-btn {
padding: 12px 32px;
background-color: transparent;
color: #05323D;
border: 2px solid #05323D;
text-decoration: none;
font-size: 14px;
font-weight: 600;
letter-spacing: 1.5px;
transition: all 0.4s ease;
}

.contact-btn:hover {
background-color: #05323D;
color: #fff;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(11, 79, 95, 0.3);
}

.mobile-menu-btn {
display: none;
flex-direction: column;
gap: 5px;
background: transparent;
border: none;
cursor: pointer;
}

.mobile-menu-btn span {
width: 25px;
height: 2px;
background-color: #05323D;
transition: all 0.3s ease;
}

/* ========================================
HERO SECTION
======================================== */
.about-hero {
padding: 140px 40px 80px;
background: linear-gradient(135deg, #05323D 0%, #006B8A 100%);
text-align: center;
}

.about-hero-content {
max-width: 800px;
margin: 0 auto;
animation: fadeInUp 0.8s ease;
}

.page-title {
font-size: 72px;
font-weight: 700;
letter-spacing: 6px;
color: #fff;
margin-bottom: 20px;
}

.page-subtitle {
font-size: 28px;
font-weight: 300;
color: rgba(255, 255, 255, 0.9);
letter-spacing: 2px;
}

/* ========================================
SECTIONS
======================================== */
.section {
padding: 100px 0;
}

.section-header {
text-align: center;
margin-bottom: 60px;
}

.section-title {
font-size: 52px;
font-weight: 700;
color: #05323D;
margin-bottom: 20px;
letter-spacing: 2px;
}

.title-underline {
width: 80px;
height: 4px;
background: linear-gradient(90deg, #05323D, #006B8A);
margin: 0 auto;
}

.section-description {
font-size: 26px;
color: #666;
margin-top: 20px;
font-weight: 300;
}

/* ========================================
CONTENT GRID
======================================== */
.content-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.content-grid.reverse {
direction: rtl;
}

.content-grid.reverse > * {
direction: ltr;
}

.content-text {
animation: fadeInLeft 0.8s ease;
}

.lead-text {
font-size: 28px;
font-weight: 500;
color: #05323D;
margin-bottom: 25px;
line-height: 1.7;
}

.content-text p {
font-size: 22px;
line-height: 1.8;
color: #555;
margin-bottom: 20px;
}

.content-image {
position: relative;
animation: fadeInRight 0.8s ease;
}

.content-image img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 10px 40px rgba(11, 79, 95, 0.15);
}

.image-caption {
text-align: center;
font-size: 19px;
color: #888;
margin-top: 15px;
font-style: italic;
}

/* ========================================
MISSION & VISION SECTION
======================================== */
.mission-vision-section {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mission-vision-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
max-width: 1100px;
margin: 0 auto;
}

.mission-card {
background: #fff;
padding: 50px 40px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
text-align: center;
transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mission-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(11, 79, 95, 0.2);
}

.card-icon {
margin-bottom: 30px;
display: flex;
justify-content: center;
}

.mission-card h3 {
font-size: 34px;
color: #05323D;
margin-bottom: 25px;
font-weight: 700;
letter-spacing: 1px;
}

.mission-card p {
font-size: 22px;
line-height: 1.8;
color: #555;
}

/* ========================================
PROBLEM SECTION
======================================== */
.problem-section {
background: #fff;
}

.problem-content {
max-width: 1000px;
margin: 0 auto;
}

.problem-text {
text-align: center;
margin-bottom: 60px;
}

.problem-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
}

.problem-card {
background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
padding: 40px 30px;
border-radius: 12px;
border: 2px solid #e9ecef;
text-align: center;
transition: all 0.4s ease;
}

.problem-card:hover {
border-color: #05323D;
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(11, 79, 95, 0.15);
}

.problem-icon {
margin-bottom: 25px;
display: flex;
justify-content: center;
}

.problem-card h4 {
font-size: 27px;
color: #05323D;
margin-bottom: 15px;
font-weight: 600;
}

.problem-card p {
font-size: 21px;
line-height: 1.7;
color: #666;
}

/* ========================================
EXPERIENCE SECTION
======================================== */
.experience-section {
background: linear-gradient(135deg, #05323D 0%, #006B8A 100%);
color: #fff;
}

.experience-section .section-title {
color: #fff;
}

.experience-section .lead-text {
color: rgba(255, 255, 255, 0.95);
}

.experience-section .content-text p {
color: rgba(255, 255, 255, 0.85);
}

.experience-section .image-caption {
color: rgba(255, 255, 255, 0.7);
}

.expertise-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-top: 40px;
}

.stat-item {
text-align: center;
padding: 25px;
background: rgba(255, 255, 255, 0.1);
border-radius: 8px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
font-size: 54px;
font-weight: 700;
color: #fff;
margin-bottom: 10px;
}

.stat-label {
font-size: 20px;
color: rgba(255, 255, 255, 0.8);
text-transform: uppercase;
letter-spacing: 1px;
}

/* ========================================
CORE VALUES SECTION
======================================== */
.values-section {
background: #f8f9fa;
}

.values-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 40px;
max-width: 1100px;
margin: 0 auto;
}

.value-card {
background: #fff;
padding: 45px 35px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
text-align: center;
transition: all 0.4s ease;
border: 2px solid transparent;
}

.value-card:hover {
border-color: #006B8A;
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(0, 180, 216, 0.2);
}

.value-icon {
margin-bottom: 25px;
display: flex;
justify-content: center;
}

.value-card h3 {
font-size: 29px;
color: #05323D;
margin-bottom: 18px;
font-weight: 600;
}

.value-card p {
font-size: 21px;
line-height: 1.8;
color: #666;
}

/* ========================================
TEAM SECTION
======================================== */
.team-section {
background: #fff;
}

/* ========================================
WHY WEâ€™RE DIFFERENT SECTION
======================================== */
.different-section {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.different-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 40px;
max-width: 1100px;
margin: 0 auto;
}

.different-card {
background: #fff;
padding: 40px 35px;
border-radius: 12px;
border-left: 5px solid #006B8A;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
transition: all 0.4s ease;
}

.different-card:hover {
transform: translateX(10px);
box-shadow: 0 15px 40px rgba(11, 79, 95, 0.15);
}

.card-number {
font-size: 58px;
font-weight: 700;
color: #05323D;
opacity: 0.15;
margin-bottom: 15px;
}

.different-card h3 {
font-size: 29px;
color: #05323D;
margin-bottom: 18px;
font-weight: 600;
}

.different-card p {
font-size: 21px;
line-height: 1.8;
color: #666;
}

/* ========================================
FOOTER
======================================== */
.footer {
background: #05323D;
padding: 60px 0;
color: #fff;
text-align: center;
}

.footer-logo {
font-size: 34px;
font-weight: 700;
letter-spacing: 4px;
margin-bottom: 15px;
}

.footer-text {
color: rgba(255, 255, 255, 0.7);
margin-bottom: 30px;
font-size: 21px;
}

.footer-links {
display: flex;
justify-content: center;
gap: 40px;
margin-bottom: 30px;
flex-wrap: wrap;
}

.footer-links a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
font-size: 20px;
transition: color 0.3s ease;
}

.footer-links a:hover {
color: #006B8A;
}

.footer-copyright {
color: rgba(255, 255, 255, 0.5);
font-size: 19px;
}

/* ========================================
ANIMATIONS
======================================== */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes fadeInLeft {
from {
opacity: 0;
transform: translateX(-30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}

@keyframes fadeInRight {
from {
opacity: 0;
transform: translateX(30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}

/* ========================================
RESPONSIVE
======================================== */
@media (max-width: 1024px) {
.content-grid,
.mission-vision-grid,
.values-grid,
.different-grid {
grid-template-columns: 1fr;
gap: 40px;
}


.content-grid.reverse {
    direction: ltr;
}

.problem-grid {
    grid-template-columns: 1fr;
}

.expertise-stats {
    grid-template-columns: repeat(3, 1fr);
}


}

@media (max-width: 768px) {
.mobile-menu-btn {
display: flex;
}


.nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 30px 20px;
    gap: 25px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-links.active {
    transform: translateX(0);
}

.container {
    padding: 0 20px;
}

.about-hero {
    padding: 120px 20px 60px;
}

.page-title {
    font-size: 46px;
    letter-spacing: 3px;
}

.page-subtitle {
    font-size: 22px;
}

.section {
    padding: 60px 0;
}

.section-title {
    font-size: 38px;
}

.lead-text {
    font-size: 24px;
}

.content-text p {
    font-size: 21px;
}

.expertise-stats {
    grid-template-columns: 1fr;
}

.footer-links {
    gap: 25px;
}


}

@media (max-width: 480px) {
.page-title {
font-size: 36px;
}


.page-subtitle {
    font-size: 19px;
}

.section-title {
    font-size: 32px;
}

.lead-text {
    font-size: 22px;
}

.content-text p {
    font-size: 20px;
}


}
