/* ABOUT HERO WRAPPER-About specific */
.header-wrapper {
  background: url("/ASSETS/jorge-ramirez-_zrJMDHVUxc-unsplash.jpg") 
              no-repeat center center/cover;
  color: white;
  position: relative;
  height: 110%;
  width: 100%;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

/* HERO SECTION */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 90vh;
  padding: 50px;
  position: relative;
  z-index: 5;
}

.hero-texts {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-section hr {
  width: 1px;
  height: 150px;
  margin-left: 50px;
  background: rgb(255, 255, 255);
  border: none;
}

.hero-texts p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-left: 70px;
  position: relative;
  bottom: 180px;
}

.hero-texts button {
  padding: 12px 25px;
  border-radius: 5px;
  border: none;
  background: white;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  margin-left: 70px;
  position: relative;
  bottom: 180px;
  font-family: "Poppins", sans-serif;
}

.hero-texts button:hover {
  background: #333;
  color: white;
}

/* Main Content Layout */
main {
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    gap: 40px;
    padding: 80px 20px;
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
}

/* Sidebars */
.sidebar-left, .sidebar-right {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sidebar-left {
    border-left: 4px solid #003366;
}

.sidebar-right {
    border-right: 4px solid #003366; /* This should now show! */
}

.sidebar-left h3, .sidebar-right h3 {
    color: #003366;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.leftsidebar-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-preview {
    background: white;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.blog-preview:hover {
    transform: translateY(-5px);
}

.blog-preview h4 {
    color: #003366;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.blog-preview p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-preview a {
    color: #003366;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Center Content */
.about-content {
    animation: fadeIn 1s ease 0.5s both;
}

.content-section {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.content-section:nth-child(1) { animation-delay: 0.6s; }
.content-section:nth-child(2) { animation-delay: 0.8s; }
.content-section:nth-child(3) { animation-delay: 1.0s; }
.content-section:nth-child(4) { animation-delay: 1.2s; }
.content-section:nth-child(5) { animation-delay: 1.4s; }
.content-section:nth-child(6) { animation-delay: 1.6s; }

.section-title {
    color: #003366;
    font-size: 2.2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #003366;
}

/* Our Story Section - Side by Side Layout */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.story-text p {
    margin-bottom: 20px;
}

.read-story-btn {
    padding: 12px 30px;
    background: #003366;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
    font-family: "Poppins", sans-serif;
}

.read-story-btn:hover {
    background: #1a4d80;
    transform: translateY(-2px);
}

.story-media {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

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

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

.story-video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Mission & Vision */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.mission-card, .vision-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
}

.mission-card i, .vision-card i {
    font-size: 3rem;
    color: #003366;
    margin-bottom: 20px;
}

.mission-card h3, .vision-card h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.mission-card p, .vision-card p {
    color: #666;
    line-height: 1.6;
}

/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

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

.approach-item:hover {
    transform: translateY(-5px);
}

.approach-item i {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 20px;
}

.approach-item h4 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.approach-item p {
    color: #666;
    line-height: 1.5;
}

/* Companies Showcase */
.companies-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.company-logo {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.company-logo:hover {
    transform: scale(1.05);
}

.company-logo img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    object-fit: contain;
}

.company-logo span {
    display: block;
    font-weight: 600;
    color: #003366;
    font-size: 0.9rem;
}

/* Team Section with Photos */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.member-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.fallback-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: white;
    opacity: 0.8;
}

.member-image img ~ .fallback-icon {
    display: none;
}

.member-info {
    padding: 25px 20px;
}

.member-info h4 {
    color: #003366;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.member-role {
    color: #003366;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1rem;
}

.member-bio {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.cta-btn {
    padding: 15px 30px;
    background: #003366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
    text-align: center;
}

.cta-btn:hover {
    background: #1a4d80;
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid #003366;
    color: #003366;
}

.cta-btn.secondary:hover {
    background: #003366;
    color: white;
}

/* Right Sidebar */
.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.quick-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-links a:hover {
    color: #003366;
}

.quick-links i {
    color: #003366;
    font-size: 0.9rem;
}

/* Company Stats */
.company-stats {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
}

.stat-item {
    margin-bottom: 20px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #003366;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-item p {
    color: #666;
    font-size: 0.9rem;
}



/* Responsive Design for Story Section */
@media (max-width: 992px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-media {
        order: -1;
    }
    
    .story-image, .story-video {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .member-image {
        height: 200px;
    }
}

/* Video Controls Styling */
.story-video {
    background: #000;
}

.story-video::-webkit-media-controls-panel {
    background-color: rgba(0, 51, 102, 0.8);
}

.story-video::-webkit-media-controls-play-button {
    background-color: #d4af37;
    border-radius: 50%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    main {
        grid-template-columns: 200px 1fr 200px;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sidebar-left, .sidebar-right {
        position: static;
        order: 3;
    }
    
    .about-content {
        order: 2;
    }
    
    .mission-vision,
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-texts h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 30px;
        text-align: center;
    }
    
    .hero-texts {
        align-items: center;
    }
    
    .hero-section hr {
        height: 80px;
        margin: 20px auto;
    }
    
    main {
        padding: 50px 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-texts h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .companies-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-card, .vision-card {
        padding: 30px 20px;
    }
}