/* ===========================================
   About Page Specific Styles
   SwentaSolutions - Modern Professional Design
   =========================================== */

/* About Page Specific Styles - Professional Typography */
.about-page {
  background-color: #000 !important;
}

section {
  margin: 0;
  padding: 0;
}

/* ===============================
   Hero Section Styles
   =============================== */
.about-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-content {
    color: white;
    max-width: 600px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: var(--text-sm, 0.875rem);
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: var(--text-sm, 0.875rem);
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

/* Hero Navigation */
.hero-navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.hero-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.hero-indicators {
    display: flex;
    gap: 10px;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator.active {
    background: white;
    transform: scale(1.2);
}

/* ===============================
   Section Styling
   =============================== */
.section-padding {
    padding: 100px 0;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #1A2740 0%, #A3D1F6 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: var(--text-sm, 0.875rem);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* ===============================
   Our Story Section
   =============================== */
.our-story {
    background: #fff;
}

.story-content {
    padding-right: 40px;
}

.story-timeline {
    margin-top: 40px;
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 45px;
    top: 60px;
    width: 2px;
    height: calc(100% + 10px);
    background: linear-gradient(135deg, #1A2740 0%, #A3D1F6 100%);
    opacity: 0.3;
}

.timeline-year {
    background: linear-gradient(135deg, #1A2740 0%, #A3D1F6 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-base, 1rem);
    flex-shrink: 0;
    margin-right: 20px;
    position: relative;
    z-index: 2;
}

.timeline-content h4 {
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.story-visual {
    position: relative;
}

.story-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.story-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.story-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1A2740;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===============================
   Mission & Vision Section
   =============================== */
.mission-vision {
    background: #f8f9fa;
}

.mission-card,
.vision-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1A2740 0%, #A3D1F6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 25px;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.mission-points,
.vision-points {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.mission-points li,
.vision-points li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #666;
}

.mission-points i,
.vision-points i {
    color: #1A2740;
    margin-right: 12px;
    width: 16px;
}

/* ===============================
   Values Section
   =============================== */
.values {
    background: white;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #f1f3f4;
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    border-color: #1A2740;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(192, 120, 53, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1A2740 0%, #A3D1F6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* ===============================
   Leadership Section
   =============================== */
.leadership {
    background: #f8f9fa;
}

.leader-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.leader-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.leader-card:hover .leader-image img {
    transform: scale(1.05);
}

.leader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-card:hover .leader-overlay {
    opacity: 1;
}

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

.social-link {
    background: white;
    color: #1A2740;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #1A2740;
    color: white;
    transform: scale(1.1);
}

.leader-info {
    padding: 30px;
    text-align: center;
}

.leader-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.leader-title {
    color: #1A2740;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    display: block;
}

.leader-info p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* ===============================
   Global Presence Section
   =============================== */
.global-presence {
    background: white;
}

.global-presence .section-title {
  color: #000 !important;
  text-align: center;
  margin-top: 0.5em;
  margin-bottom: 0.2em;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.global-presence .section-description {
  color: #222 !important;
  text-align: center;
}

.office-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #f1f3f4;
    transition: all 0.3s ease;
    height: 100%;
}

.office-card:hover {
    border-color: #1A2740;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(192, 120, 53, 0.1);
}

.office-flag {
    width: 60px;
    height: 60px;
    /* background: linear-gradient(135deg, #1A2740 0%, #A3D1F6 100%); */
    border-radius: -50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}
/* Flag Icons Styling for About Page */
.office-flag .fi {
    font-size: 2rem;
    width: 70%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: -50%;
}

.office-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-badge {
    background: #1A2740;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.office-address {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.office-details span {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.office-details i {
    color: #1A2740;
    width: 16px;
}

/* ===============================
   Innovative Mission & Vision Section
   =============================== */
.innovative-mission-vision-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.innovative-mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(163, 209, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(168, 230, 163, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 49%, rgba(255, 255, 255, 0.02) 50%, transparent 51%);
    pointer-events: none;
}

.mission-vision-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header .section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #A3D1F6 0%, #A8E6A3 100%);
    color: #1A2740;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #A3D1F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.section-header .section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Mission & Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Modern Cards */
.mission-card-modern,
.vision-card-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.mission-card-modern:hover,
.vision-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(163, 209, 246, 0.3);
}

/* Card Background Effects */
.card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: 30px;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(163, 209, 246, 0.1), rgba(168, 230, 163, 0.1));
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 40px;
    height: 40px;
    bottom: 30%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 2;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.mission-icon-modern {
    background: linear-gradient(135deg, #A3D1F6 0%, #A8E6A3 100%);
    color: #1A2740;
}

.vision-icon-modern {
    background: linear-gradient(135deg, #A8E6A3 0%, #A3D1F6 100%);
    color: #1A2740;
}

.icon-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(163, 209, 246, 0.3), rgba(168, 230, 163, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission-card-modern:hover .icon-glow,
.vision-card-modern:hover .icon-glow {
    opacity: 1;
}

.header-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 5px 0;
}

.header-text .subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Mission Image */
.mission-image-container {
    position: relative;
    margin: 30px 0;
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
}

.mission-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.mission-image-container:hover .image-overlay {
    opacity: 1;
}

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

.overlay-content i {
    font-size: 3rem;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.overlay-content i:hover {
    transform: scale(1.2);
}

/* Vision Visualization */
.vision-visualization {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    margin: 30px 0;
}

.globe-container {
    position: relative;
    width: 200px;
    height: 200px;
}

.globe {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 50%;
    background: linear-gradient(135deg, #A3D1F6 0%, #A8E6A3 100%);
    animation: rotate 20s linear infinite;
}

.globe-inner {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 39, 64, 0.8) 0%, rgba(44, 62, 80, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rotate 10s linear infinite reverse;
}

.orbit-1 {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    animation-duration: 8s;
}

.orbit-2 {
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    animation-duration: 12s;
}

.orbit-3 {
    width: 160%;
    height: 160%;
    top: -30%;
    left: -30%;
    animation-duration: 16s;
}

.satellite {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #A3D1F6;
    border-radius: 50%;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(163, 209, 246, 0.6);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Card Description */
.card-description {
    margin: 30px 0;
}

.card-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Mission Pillars */
.mission-pillars {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.pillar {
    flex: 1;
    text-align: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.pillar:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.pillar-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #A3D1F6 0%, #A8E6A3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #1A2740;
    font-size: 1.5rem;
}

.pillar span {
    font-size: 0.9rem;
    color: white;
    font-weight: 500;
}

/* Vision Goals */
.vision-goals {
    margin-top: 30px;
}

.goal {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.goal:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.goal-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #A3D1F6;
    width: 40px;
    text-align: center;
}

.goal-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 5px 0;
}

.goal-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* Mission Vision CTA */
.mission-vision-cta {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-modern,
.btn-outline-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #A3D1F6 0%, #A8E6A3 100%);
    color: #1A2740;
    border: 2px solid transparent;
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(163, 209, 246, 0.4);
    color: #1A2740;
    text-decoration: none;
}

.btn-outline-modern {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #A3D1F6;
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .mission-vision-grid {
        gap: 40px;
    }
    
    .section-header .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .mission-pillars {
        flex-direction: column;
        gap: 15px;
    }
    
    .pillar {
        padding: 15px;
    }
    
    .section-header .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .innovative-mission-vision-section {
        padding: 80px 0;
    }
    
    .mission-vision-container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-header .section-title {
        font-size: 2rem;
    }
    
    .section-header .section-description {
        font-size: 1rem;
    }
    
    .mission-card-modern,
    .vision-card-modern {
        padding: 30px 20px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .header-text h3 {
        font-size: 1.5rem;
    }
    
    .mission-image-container,
    .vision-visualization {
        height: 200px;
    }
    
    .globe-container {
        width: 150px;
        height: 150px;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-modern,
    .btn-outline-modern {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .mission-card-modern,
    .vision-card-modern {
        padding: 25px 15px;
    }
    
    .mission-vision-cta {
        padding: 40px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* ===============================
   CTA Section
   =============================== */
/* .cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
} */

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #A8E6A3 0%, #A3D1F6 100%);
    color: white;
    text-align: center;
    padding: 120px 0;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta .btn-outline {
    background: none;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-2px);
}

/* Ensure primary buttons in CTA match the orange/brown theme */
.cta .btn-primary {
    background-color: #A8E6A3;
    border-color: #A8E6A3;
    color: #1A2740;
}

.cta .btn-primary:hover {
    background-color: #A3D1F6;
    border-color: #A3D1F6;
    color: #1A2740;
    transform: translateY(-2px);
}

/* Specific styling for the "View Services" button */
.cta .btn-outline-primary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.cta .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.values-video-section {
  background: #000;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.values-video-container {
  position: relative;
  width: 600px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.values-circle-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #000;
  box-shadow: none;
  filter: none;
  display: block;
}

.values-list {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  list-style: none;
  margin: 0; padding: 0;
  pointer-events: none;
}

.values-list li {
  position: absolute;
  right: -120px;
  color: #fff;
  font-size: 1.6rem;
  font-family: 'Inter', 'Space Grotesk', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-shadow: 0 2px 8px #000a;
  pointer-events: auto;
  font-style: italic;
}

.values-list li::before {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  margin-right: 16px;
  box-shadow: 0 0 8px #fff8;
}

/* Arc positioning for 6 values */
.values-list li:nth-child(1) { top: 40px; right: -90px; }
.values-list li:nth-child(2) { top: 120px; right: -110px; }
.values-list li:nth-child(3) { top: 220px; right: -120px; }
.values-list li:nth-child(4) { top: 320px; right: -110px; }
.values-list li:nth-child(5) { top: 420px; right: -90px; }
.values-list li:nth-child(6) { top: 500px; right: -60px; }

@media (max-width: 900px) {
  .values-video-container {
    width: 350px;
    height: 350px;
  }
  .values-list li {
    font-size: 1rem;
    right: -50px;
  }
  .values-list li:nth-child(1) { top: 10px; right: -30px; }
  .values-list li:nth-child(2) { top: 50px; right: -40px; }
  .values-list li:nth-child(3) { top: 110px; right: -50px; }
  .values-list li:nth-child(4) { top: 170px; right: -40px; }
  .values-list li:nth-child(5) { top: 230px; right: -30px; }
  .values-list li:nth-child(6) { top: 280px; right: -10px; }
}

.circular-video-section {
  background: #000;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.video-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: auto;
  margin: 0;
  padding: 0;
}

.circle-video {
  position: relative;
  width: 920px;
  height: 920px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-video .video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #000;
  box-shadow: none;
  filter: none;
  display: block;
}

.curve-values {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  list-style: none;
  margin: 0; padding: 0;
  pointer-events: none;
}

.curve-item {
  position: absolute;
  color: #fff;
  font-size: 1.5rem;
  font-family: 'Inter', 'Space Grotesk', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-shadow: 0 2px 8px #000a;
  pointer-events: auto;
  font-style: italic;
}

.curve-item::before {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  margin-right: 16px;
  box-shadow: 0 0 8px #fff8;
}

/* Arc positioning for 6 values (right side of circle) */
.curve-item:nth-child(1) { left: 59%; top: 21%; }
.curve-item:nth-child(2) { left: 72%; top: 30%; }
.curve-item:nth-child(3) { left: 77%; top: 42%; }
.curve-item:nth-child(4) { left: 77%; top: 56%; }
.curve-item:nth-child(5) { left: 71%; top: 67%; }
.curve-item:nth-child(6) { left: 56%; top: 76%; }

@media (max-width: 900px) {
  .circle-video {
    width: 450px;
    height: 450px;
  }
  .curve-item {
    font-size: 1rem;
  }
  .curve-item:nth-child(1) { left: 63%; top: 20%; }
  .curve-item:nth-child(2) { left: 74%; top: 31%; }
  .curve-item:nth-child(3) { left: 78%; top: 42%; }
  .curve-item:nth-child(4) { left: 78%; top: 53%; }
  .curve-item:nth-child(5) { left: 74%; top: 65%; }
  .curve-item:nth-child(6) { left: 62%; top: 74%; }
}

.values-intro {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
  color: #fff;
  z-index: 2;
  position: relative;
  padding: 2rem 1rem 0 1rem;
}
.values-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
  color: #fff;
}
.values-intro p {
  font-size: 1.15rem;
  font-weight: 400;
  color: #e0e0e0;
  margin-bottom: 0;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .values-intro {
    max-width: 95vw;
    padding: 1.5rem 0.5rem 0 0.5rem;
  }
  .values-intro h2 {
    font-size: 2rem;
  }
  .values-intro p {
    font-size: 1rem;
  }
}


/* ===============================
   Responsive Design
   =============================== */
@media (max-width: 1200px) {
    .story-content {
        padding-right: 20px;
    }
    
    .sustainability-content {
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .story-content,
    .sustainability-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-year {
        margin: 0 auto 20px;
    }
    
    .timeline-item:not(:last-child)::after {
        left: 50%;
        transform: translateX(-50%);
        top: 100px;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 30px 20px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .office-card {
        padding: 25px 20px;
    }
    
    .office-info h4 {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* ===============================
   Animation Classes
   =============================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.scale-in.active {
    opacity: 1;
    transform: scale(1);
} 


