/* ========================================
   VIDEO HERO SECTION
   ======================================== */
/* Video Hero Section */
.video-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #1a1a1a; /* Fallback dark background */
}

.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 3;
}

.hero-overlay-content {
    position: relative;
    z-index: 4;
    width: 100%;
    text-align: left;
    color: white;
    padding: 2rem 0;
}

.hero-text {
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    transition: all 0.5s ease;
}

.hero-underline {
    width: 200px;
    height: 4px;
    background: white;
    margin: 1rem 0 2rem 0;
    border-radius: 2px;
}

.hero-description {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.4;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    margin: 0;
    transition: all 0.5s ease;
}

/* ========================================
   VIDEO NAVIGATION CONTROLS
   ======================================== */
/* Video Navigation */
.video-navigation {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 5;
}

.nav-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.nav-dot:hover {
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.nav-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

/* ========================================
   VIDEO HERO - RESPONSIVE DESIGN
   ======================================== */
/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .video-hero-section {
        height: 90vh;
    }
    
    .hero-overlay-content {
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-underline {
        margin: 1rem auto 2rem auto;
    }
    
    .video-navigation {
        bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-underline {
        width: 150px;
        height: 3px;
    }
}

/* ========================================
   WHO WE ARE SECTION
   ======================================== */
/* Who We Are Section */
.who-we-are-section {
    padding: 80px 0 40px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Geometric solar panel design elements */
.who-we-are-section::before {
    content: '';
    position: absolute;
    top: 50px;
    right: 5%;
    width: 200px;
    height: 200px;
    background: 
        linear-gradient(45deg, #6c757d 25%, transparent 25%),
        linear-gradient(-45deg, #6c757d 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #6c757d 75%),
        linear-gradient(-45deg, transparent 75%, #6c757d 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.08;
    transform: rotate(15deg);
    z-index: 1;
}

.who-we-are-section::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 5%;
    width: 150px;
    height: 150px;
    background: 
        repeating-linear-gradient(
            0deg,
            #495057,
            #495057 2px,
            transparent 2px,
            transparent 12px
        ),
        repeating-linear-gradient(
            90deg,
            #495057,
            #495057 2px,
            transparent 2px,
            transparent 12px
        );
    opacity: 0.06;
    transform: rotate(-10deg);
    z-index: 1;
}

/* Circuit board pattern overlay */
.who-we-are-section .solar-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    background-image: 
        linear-gradient(90deg, #6c757d 1px, transparent 1px),
        linear-gradient(180deg, #6c757d 1px, transparent 1px),
        radial-gradient(circle at 20% 20%, #495057 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, #495057 1px, transparent 1px);
    background-size: 40px 40px, 40px 40px, 80px 80px, 60px 60px;
    background-position: 0 0, 0 0, 0 0, 20px 20px;
    z-index: 1;
    pointer-events: none;
}

.who-background-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}

.who-section-bg-image {
    width: auto;
    height: auto;
    max-width: 1000px;
    max-height: 1000px;
    object-fit: contain;
    opacity: 0.25;
    filter: grayscale(5%) brightness(0.5) contrast(1.2);
}

.who-we-are-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    min-height: 400px;
}

.who-text-side {
    padding: 0;
}

.who-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    color: #333;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}


.who-description {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.who-description strong {
    color: #333;
    font-weight: 700;
}

.who-image-side {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.who-image-container {
    width: 100%;
    max-width: 800px;
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-background-image {
    width: auto;
    height: auto;
    max-width: 200%;
    max-height: 200%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
    border-radius: 0;
    background: transparent;
}

.who-image-container:hover .who-background-image {
    transform: scale(1.02);
}


/* ========================================
   WHO WE ARE - RESPONSIVE DESIGN
   ======================================== */
/* Responsive Design */
@media (max-width: 768px) {
    .who-we-are-section {
        padding: 60px 0;
    }
    
    .who-we-are-content {
        max-width: 95%;
        padding: 0 20px;
    }
    
    .who-section-bg-image {
        max-width: 500px;
        max-height: 500px;
        opacity: 0.12;
    }
}

@media (max-width: 480px) {
    .who-we-are-section {
        padding: 40px 0;
    }
    
    .who-we-are-content {
        max-width: 98%;
        padding: 0 15px;
    }
    
    .who-description {
        margin-bottom: 15px;
    }
    
    .who-section-bg-image {
        max-width: 400px;
        max-height: 400px;
        opacity: 0.1;
    }
}

/* ========================================
   CONCEPT, VISION, MISSION SECTION
   ======================================== */
/* Concept, Vision, Mission Section */
.concept-vision-mission-section {
    padding: 60px 0 100px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
    position: relative;
}

/* Initial hidden state for animations */
.cvm-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.4s ease-out;
}

.cvm-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Text animations */
.cvm-text {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease-out 0.1s;
}

.cvm-item.animate .cvm-text {
    opacity: 1;
    transform: translateX(0);
}

/* Image slide-in animations */
.cvm-image {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease-out 0.2s;
}

.cvm-item.animate .cvm-image {
    opacity: 1;
    transform: translateX(0);
}

/* Reverse layout - image comes from left */
.cvm-item.reverse .cvm-image {
    transform: translateX(-50px);
}

.cvm-item.reverse.animate .cvm-image {
    transform: translateX(0);
}

/* Reverse layout - text comes from right */
.cvm-item.reverse .cvm-text {
    transform: translateX(30px);
}

.cvm-item.reverse.animate .cvm-text {
    transform: translateX(0);
}

/* CVM Item base styles */
.cvm-item {
    margin-bottom: 60px;
    position: relative;
}

.cvm-item:last-child {
    margin-bottom: 0;
}

.cvm-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   ALTERNATING LAYOUT PATTERN
   ======================================== */
/* Reverse layout for alternating pattern */
.cvm-item.reverse .cvm-content {
    grid-template-columns: 1fr 1fr;
}

.cvm-text {
    padding: 40px 0;
}

.cvm-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: #333;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
}


.cvm-description {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
    color: #424242;
    margin: 0;
    text-align: justify;
}

.cvm-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Shift Vision section image to the left */
.cvm-item.reverse .cvm-image {
    justify-content: flex-start;
    padding-left: 20px;
    margin-top: -30px;
}

/* Shift Vision section text to the right */
.cvm-item.reverse .cvm-text {
    padding-left: 40px;
}

.cvm-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
    /* Removed hover scale effect */
}

/* ========================================
   CVM SECTION - RESPONSIVE DESIGN
   ======================================== */
/* Responsive Design for CVM Section */
@media (max-width: 1024px) {
    .cvm-content {
        gap: 60px;
    }
    
    .cvm-item {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .concept-vision-mission-section {
        padding: 80px 0;
    }
    
    .cvm-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .cvm-text {
        padding: 20px 0;
        order: 2;
        width: 100%;
    }
    
    .cvm-image {
        order: 1;
        width: 100%;
        justify-content: center;
        padding: 0;
    }
    
    .cvm-item:not(.reverse) .cvm-image {
        margin-top: -40px;
    }
    
    .cvm-item.reverse .cvm-content {
        flex-direction: column;
    }
    
    .cvm-item.reverse .cvm-text {
        order: 2;
    }
    
    .cvm-item.reverse .cvm-image {
        order: 1;
        justify-content: center;
        padding: 0;
        margin-top: 20px;
    }
    
    .cvm-item {
        margin-bottom: 20px;
    }
    
    .cvm-description {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .concept-vision-mission-section {
        padding: 60px 0;
    }
    
    .cvm-item {
        margin-bottom: 30px;
    }
    
    .cvm-text {
        padding: 15px 0;
    }
    
    .cvm-img {
        max-width: 300px;
    }
}

/* ========================================
   OUR JOURNEY SECTION - PROFESSIONAL
   ======================================== */
.our-journey-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 50%, #f0fdfa 100%);
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.our-journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        linear-gradient(90deg, transparent 49%, rgba(148, 163, 184, 0.1) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(148, 163, 184, 0.1) 50%, transparent 51%);
    background-size: 200px 200px, 300px 300px, 50px 50px, 50px 50px;
    background-position: 0 0, 100px 100px, 0 0, 0 0;
    pointer-events: none;
    z-index: 0;
}

/* Floating Elements */
.our-journey-section::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.15), rgba(34, 197, 94, 0.15));
    border-radius: 50%;
    animation: floatSlow 8s ease-in-out infinite;
    z-index: 0;
}

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

/* Additional Decorative Elements - Removed decorative line */

.journey-header {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.journey-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #333333;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
}

.journey-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: #666666;
    margin: 0;
    font-weight: 400;
}

.journey-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        rgba(37, 99, 235, 0.4) 0%, 
        rgba(34, 197, 94, 0.6) 25%,
        rgba(16, 185, 129, 0.6) 50%,
        rgba(34, 197, 94, 0.6) 75%,
        rgba(37, 99, 235, 0.4) 100%
    );
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-year {
    flex-shrink: 0;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.year-number {
    background: linear-gradient(135deg, #1e40af 0%, #059669 100%);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2), 0 0 20px rgba(34, 197, 94, 0.15);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -11px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #2563eb 0%, #16a34a 100%);
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.3), 0 0 15px rgba(34, 197, 94, 0.4);
    z-index: 3;
    animation: dotGlow 2s ease-in-out infinite alternate;
}

@keyframes dotGlow {
    0% { box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.3), 0 0 15px rgba(34, 197, 94, 0.4); }
    100% { box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.5), 0 0 20px rgba(34, 197, 94, 0.6); }
}

.timeline-content {
    flex: 1;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    margin-left: 40px;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.03) 0%, 
        rgba(34, 197, 94, 0.03) 100%
    );
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.timeline-content:hover::before {
    opacity: 1;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #d1d5db;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #374151;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-icon {
    background: linear-gradient(135deg, #2563eb 0%, #16a34a 100%);
    color: #ffffff;
    transform: scale(1.1);
}

.timeline-icon svg {
    width: 24px;
    height: 24px;
}

.timeline-title {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.timeline-description {
    font-size: clamp(15px, 2vw, 16px);
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.timeline-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.stat {
    background: #f9fafb;
    color: #374151;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.timeline-content:hover .stat {
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    color: #059669;
    border-color: #22c55e;
}

/* ========================================
   OUR JOURNEY - RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .our-journey-section {
        padding: 60px 0;
    }
    
    .journey-header {
        margin-bottom: 40px;
    }
    
    .journey-timeline::before {
        left: 60px;
        width: 2px;
    }
    
    .timeline-year {
        width: 100px;
    }
    
    .year-number {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .timeline-year::after {
        right: -9px;
        width: 16px;
        height: 16px;
        border-width: 3px;
    }
    
    .timeline-content {
        margin-left: 30px;
        padding: 25px;
    }
    
    .timeline-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }
    
    .timeline-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .timeline-stats {
        gap: 12px;
    }
    
    .stat {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .our-journey-section {
        padding: 40px 0;
    }
    
    .journey-timeline {
        padding: 0 15px;
    }
    
    .journey-timeline::before {
        left: 45px;
    }
    
    .timeline-year {
        width: 80px;
    }
    
    .year-number {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .timeline-year::after {
        right: -7px;
        width: 14px;
        height: 14px;
    }
    
    .timeline-content {
        margin-left: 25px;
        padding: 20px;
    }
    
    .timeline-item {
        margin-bottom: 40px;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
    }
    
    .timeline-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* ========================================
   ENQUIRY NOTE SECTION
   ======================================== */
.enquiry-note-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.enquiry-note-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.enquiry-note-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.02) 0%, 
        rgba(34, 197, 94, 0.02) 100%
    );
    border-radius: 20px;
    z-index: 0;
}

.enquiry-note-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.enquiry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #16a34a 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.enquiry-icon svg {
    width: 28px;
    height: 28px;
}

.enquiry-text {
    flex: 1;
}

.enquiry-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.enquiry-description {
    font-size: clamp(16px, 2vw, 18px);
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.enquiry-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.enquiry-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.enquiry-btn svg {
    width: 20px;
    height: 20px;
}

.enquiry-btn.primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.enquiry-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.enquiry-btn.secondary {
    background: #ffffff;
    color: #16a34a;
    border-color: #16a34a;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.enquiry-btn.secondary:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

/* Decorative Elements */
.enquiry-decoration {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.1;
}

.solar-panel-icon {
    width: 120px;
    height: 120px;
    color: #2563eb;
    animation: panelRotate 10s linear infinite;
}

.solar-panel-icon svg {
    width: 100%;
    height: 100%;
}

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

.energy-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wave {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    animation: waveExpand 3s ease-out infinite;
}

.wave-1 {
    animation-delay: 0s;
}

.wave-2 {
    animation-delay: 1s;
}

.wave-3 {
    animation-delay: 2s;
}

@keyframes waveExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* ========================================
   ENQUIRY NOTE - RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .enquiry-note-wrapper {
        padding: 35px 40px;
    }
    
    .enquiry-decoration {
        right: 20px;
    }
    
    .solar-panel-icon {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .enquiry-note-section {
        padding: 40px 0;
    }
    
    .enquiry-note-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
        gap: 30px;
    }
    
    .enquiry-note-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .enquiry-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .enquiry-btn {
        justify-content: center;
        width: 100%;
        padding: 18px 25px;
    }
    
    .enquiry-decoration {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        opacity: 0.05;
        margin-top: 20px;
    }
    
    .solar-panel-icon {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .enquiry-note-wrapper {
        padding: 25px 20px;
        margin: 0 15px;
    }
    
    .enquiry-icon {
        width: 50px;
        height: 50px;
    }
    
    .enquiry-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .enquiry-btn {
        padding: 15px 20px;
        font-size: 15px;
    }
}

/* ========================================
   COMPANIES PAGE STYLES - NEW DESIGN
   ======================================== */
.page-header {
    padding: 80px 0 60px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
    text-align: center;
    position: relative;
}

.page-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 15px 0;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: clamp(18px, 3vw, 22px);
    color: #6b7280;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Section Headers */
.section-header {
    margin-bottom: 40px;
    position: relative;
}

.section-header h2 {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
    padding: 15px 30px;
    margin: 0;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    position: relative;
    display: inline-block;
    min-width: 300px;
}

.subsidiaries-header h2 {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

.joint-ventures-header h2 {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

/* Sections */
.subsidiaries-section {
    padding: 60px 0;
    background: #ffffff;
}

.joint-ventures-section {
    padding: 60px 0;
    background: #f8fafc;
}

/* Company Items */
.company-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.company-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-left-color: #2563eb;
}

.company-logo-section {
    flex-shrink: 0;
}

.company-logo-box {
    width: 120px;
    height: 120px;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* ========================================
   AWARDS HERO SECTION STYLES
   ======================================== */
.awards-hero-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
}

.certificate-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/certificate.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.awards-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
    z-index: 2;
}

.awards-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    transform: translateY(16px);
}

.awards-hero-content h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.awards-hero-content p {
    font-size: clamp(18px, 3vw, 22px);
    color: #e2e8f0;
    margin: 0;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ========================================
   HORIZONTAL TIMELINE SECTION STYLES
   ======================================== */
.horizontal-timeline-section {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
}

/* Company Excellence Info Section */
.company-excellence-info {
    margin-bottom: 80px;
    text-align: center;
}

.excellence-content h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.excellence-content p {
    font-size: clamp(16px, 2vw, 18px);
    color: #6b7280;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px;
}

.excellence-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.excellence-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
    text-align: left;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
}

.highlight-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.highlight-text p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.timeline-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    gap: 20px;
}

.timeline-nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #3b82f6;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.timeline-nav-btn:hover {
    background: #2563eb;
    transform: scale(1.1);
}

.horizontal-timeline {
    position: relative;
    flex: 1;
    max-width: 800px;
}

.timeline-track {
    position: relative;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin: 30px 0;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
    border-radius: 2px;
    width: 25%;
    transition: width 0.5s ease;
}

.timeline-points {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-point {
    position: relative;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.point-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e5e7eb;
    border: 3px solid #ffffff;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-point.active .point-dot {
    background: #3b82f6;
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.point-date {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.timeline-point.active .point-date {
    color: #3b82f6;
    font-weight: 700;
}

.timeline-point:hover .point-dot {
    transform: scale(1.2);
    background: #60a5fa;
}

/* Timeline Click Image Modal */
.timeline-click-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-click-image.visible {
    display: flex;
    opacity: 1;
}

.click-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.click-image-content {
    position: relative;
    z-index: 10000;
    max-width: 90%;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-image-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.close-image-btn:hover {
    background: #dc2626;
    transform: rotate(90deg) scale(1.1);
}

.click-image-content img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}

.image-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    padding: 0 20px;
}

/* Award Details Section */
.timeline-award-details {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.award-info-section {
    padding: 20px 0;
}

.award-date {
    color: #3b82f6;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.award-info-section h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.award-info-section p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.award-certificate-section {
    position: relative;
}

.certificate-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    max-width: 400px;
    margin: 0 auto;
}

.certificate-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.certificate-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.certificate-frame:hover .certificate-overlay {
    opacity: 1;
}

.view-certificate-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.view-certificate-btn:hover {
    background: #2563eb;
    transform: scale(1.05);
}

/* Certificate Modal */
.certificate-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.certificate-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.modal-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design for Horizontal Timeline */
@media (max-width: 1024px) {
    .timeline-award-details {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .horizontal-timeline-section {
        padding: 60px 0;
    }
    
    .company-excellence-info {
        margin-bottom: 60px;
    }
    
    .excellence-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 30px 0 40px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .excellence-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .highlight-item {
        padding: 20px;
    }
    
    .timeline-navigation {
        flex-direction: column;
        gap: 30px;
    }
    
    .horizontal-timeline {
        order: 2;
        max-width: 100%;
    }
    
    .timeline-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .timeline-points {
        flex-direction: column;
        gap: 20px;
    }
    
    .timeline-track {
        display: none;
    }
    
    .point-date {
        white-space: normal;
        text-align: center;
    }
    
    .timeline-award-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .award-info-section h3 {
        font-size: 24px;
    }
    
    .certificate-frame {
        max-width: 300px;
    }
    
    .certificate-frame img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .horizontal-timeline-section {
        padding: 40px 0;
    }
    
    .timeline-navigation {
        margin-bottom: 40px;
    }
    
    .timeline-award-details {
        margin: 0 15px;
    }
    
    .award-info-section h3 {
        font-size: 20px;
    }
    
    .award-date {
        font-size: 16px;
    }
    
    .certificate-frame {
        max-width: 250px;
    }
    
    .certificate-frame img {
        height: 250px;
    }
}

.company-item:hover .company-logo-box {
    border-color: #2563eb;
    background: #eff6ff;
    transform: scale(1.05);
}

.company-logo-img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}

.company-info {
    flex: 1;
}

.company-title {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.company-desc {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.company-website {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.company-website span {
    font-weight: 600;
    color: #374151;
}

.company-website a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.company-website a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* ========================================
   COMPANIES PAGE - RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .company-item {
        gap: 30px;
        padding: 25px;
    }
    
    .company-logo-box {
        width: 100px;
        height: 100px;
    }
    
    .company-logo-img {
        max-width: 70px;
        max-height: 70px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px 0;
    }
    
    .subsidiaries-section,
    .joint-ventures-section {
        padding: 40px 0;
    }
    
    .company-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .company-logo-box {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    
    .company-logo-img {
        max-width: 60px;
        max-height: 60px;
    }
    
    .section-header h2 {
        min-width: auto;
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 40px 0 30px 0;
    }
    
    .subsidiaries-section,
    .joint-ventures-section {
        padding: 30px 0;
    }
    
    .company-item {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .company-logo-box {
        width: 70px;
        height: 70px;
    }
    
    .company-logo-img {
        max-width: 50px;
        max-height: 50px;
    }
    
    .company-website {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* ========================================
   DIRECTORS PAGE STYLES
   ======================================== */
.directors-section {
    padding: 80px 0;
    background: #ffffff;
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.director-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.director-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.02) 0%, 
        rgba(34, 197, 94, 0.02) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.director-card:hover::before {
    opacity: 1;
}

.director-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.director-photo {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.director-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.director-card:hover .director-img {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.2);
}

.director-info {
    position: relative;
    z-index: 2;
}

.director-name {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.director-position {
    font-size: 16px;
    color: #2563eb;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.director-bio {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 25px 0;
    text-align: left;
}

.director-qualifications {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.qualification {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #475569;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.director-card:hover .qualification {
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    color: #059669;
    border-color: #22c55e;
    transform: translateY(-2px);
}

/* ========================================
   DIRECTORS PAGE - RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .directors-section {
        padding: 60px 0;
    }
    
    .directors-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .director-card {
        padding: 25px 20px;
    }
    
    .director-img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .directors-section {
        padding: 40px 0;
    }
    
    .directors-grid {
        padding: 0 15px;
    }
    
    .director-card {
        padding: 20px 15px;
    }
    
    .director-img {
        width: 80px;
        height: 80px;
    }
    
    .qualification {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-choose-section {
    padding: 60px 0 0 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    align-items: stretch;
    position: relative;
    min-height: 600px;
    margin-top: 40px;
}

.why-choose-image-side {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 0;
    margin: 0;
}

.why-main-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    min-height: 600px;
    opacity: 1;
    display: block;
}

.why-choose-content-side {
    position: relative;
    z-index: 2;
    margin-left: -150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 0;
}

.why-choose-main-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #333333;
    margin: 0 auto;
    letter-spacing: -0.5px;
    padding: 0;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 10;
}

.caption-boxes {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.caption-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.6s ease-out forwards;
    position: relative;
    overflow: hidden;
    width: 600px;
    height: 85px;
}

/* Zigzag pattern - alternating left and right positioning */
.caption-box:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
}

.caption-box:nth-child(even) {
    margin-left: 60px;
    margin-right: 0;
}

/* Staggered animation delays */
.caption-box:nth-child(1) { animation-delay: 0.1s; }
.caption-box:nth-child(2) { animation-delay: 0.2s; }
.caption-box:nth-child(3) { animation-delay: 0.3s; }
.caption-box:nth-child(4) { animation-delay: 0.4s; }
.caption-box:nth-child(5) { animation-delay: 0.5s; }
.caption-box:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Color variants */
.caption-blue {
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
}

.caption-green {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
}

.caption-yellow {
    background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%);
}

.caption-orange {
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
}

.caption-pink {
    background: linear-gradient(135deg, #DB2777 0%, #EC4899 100%);
}

.caption-purple {
    background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 100%);
}

.caption-box:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.caption-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    backdrop-filter: blur(10px);
}

.caption-icon svg {
    width: 28px;
    height: 28px;
}

.caption-content {
    flex: 1;
}

.caption-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.caption-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    line-height: 1.3;
}

.caption-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   WHY CHOOSE US - RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .why-choose-wrapper {
        gap: 0;
    }
    
    .caption-boxes {
        gap: 15px;
    }
    
    .why-choose-content-side {
        margin-left: -100px;
    }
    
    .caption-box {
        width: 550px;
    }
}

@media (max-width: 900px) {
    .caption-box {
        width: 100% !important;
        max-width: 500px;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 40px 0;
    }
    
    .why-choose-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }
    
    .why-choose-image-side {
        order: 2;
        height: 300px;
    }
    
    .why-choose-content-side {
        order: 1;
        margin-left: 0;
        padding: 40px 20px;
    }
    
    .why-main-image {
        max-height: 300px;
        min-height: 300px;
    }
    
    .why-choose-main-title {
        text-align: center;
        margin-bottom: 30px;
        padding-top: 0;
    }
    
    .caption-boxes {
        gap: 15px;
    }
    
    .caption-box {
        padding: 15px 18px;
        width: 100% !important;
        max-width: 100%;
        min-height: auto;
        height: auto;
    }
    
    /* Remove zigzag in mobile - all centered */
    .caption-box:nth-child(odd),
    .caption-box:nth-child(even) {
        margin-left: auto;
        margin-right: auto;
    }
    
    .caption-icon {
        width: 45px;
        height: 45px;
    }
    
    .caption-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .caption-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 30px 0;
    }
    
    .why-choose-content-side {
        padding: 30px 15px;
    }
    
    .why-choose-main-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .caption-box {
        padding: 12px 15px;
        gap: 12px;
        width: 100% !important;
        max-width: 100%;
        height: auto;
        flex-direction: column;
        text-align: center;
    }
    
    .caption-content {
        width: 100%;
        text-align: center;
    }
    
    .caption-icon {
        margin: 0 auto 10px auto;
        width: 40px;
        height: 40px;
    }
    
    .caption-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .caption-number {
        font-size: 0.7rem;
    }
    
    .caption-title {
        font-size: 0.95rem;
    }
    
    .caption-boxes {
        gap: 12px;
    }
}

/* ========================================
   COMPANIES PAGE HEADER WITH BACKGROUND
   ======================================== */
.page-header {
    position: relative;
    padding: 120px 0 100px 0;
    margin-top: 20px;
    background-image: url('images/ourcompanies.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.page-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: #ffffff !important;
    opacity: 1;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Responsive Design for Page Header */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 80px 0;
        margin-top: 15px;
        background-attachment: scroll;
    }
    
    .page-title {
        font-size: 2.5rem;
        color: #ffffff !important;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
        color: #ffffff !important;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 80px 0 60px 0;
        margin-top: 10px;
    }
    
    .page-title {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #ffffff !important;
    }
    
    .page-subtitle {
        font-size: 1rem;
        color: #ffffff !important;
        padding: 0 15px;
    }
}

/* ========================================
   MODERN COMPANIES SECTION
   ======================================== */
.companies-section {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.companies-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.company-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    border: none;
    display: flex;
    align-items: center;
    min-height: 120px;
    margin-bottom: 40px;
}

.company-card:hover {
    transform: translateX(10px);
}

.company-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 20px;
    background: transparent;
    position: relative;
    overflow: visible;
}

.company-logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: all 0.4s ease;
    position: relative;
    border: none;
}

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

.company-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: none;
    transition: all 0.4s ease;
}

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

.company-content {
    flex: 1;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.company-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 5px;
    line-height: 1.2;
    transition: all 0.3s ease;
    position: relative;
}

.company-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #25a75f, #2ecc71);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.company-card:hover .company-name {
    color: #25a75f;
    transform: translateX(5px);
}

.company-card:hover .company-name::after {
    width: 60px;
}


.company-description {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
    transition: color 0.3s ease;
}

.company-card:hover .company-description {
    color: #4a5568;
}

.company-website {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.company-website span {
    color: #7f8c8d;
    font-weight: 500;
}

.company-website a {
    color: #25a75f;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.company-website a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #25a75f;
    transition: width 0.3s ease;
}

.company-website a:hover::after {
    width: 100%;
}

.company-website a:hover {
    color: #1e8449;
    transform: translateX(3px);
}

/* Responsive Design for Companies Section */
@media (max-width: 1024px) {
    .companies-grid {
        gap: 25px;
        padding: 0 20px;
    }
    
    .company-card {
        min-height: 160px;
    }
    
    .company-logo-container {
        min-width: 140px;
        padding: 15px;
    }
    
    .company-logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .company-logo {
        width: 80px;
        height: 80px;
    }
    
    .company-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .companies-section {
        padding: 60px 0;
    }
    
    .companies-grid {
        gap: 20px;
        padding: 0 15px;
    }
    
    .company-card {
        flex-direction: column;
        min-height: auto;
        text-align: center;
    }
    
    .company-logo-container {
        min-width: 100%;
        padding: 30px;
        border-radius: 0;
    }
    
    .company-logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .company-logo {
        width: 80px;
        height: 80px;
    }
    
    .company-content {
        padding: 30px 25px;
    }
    
    .company-name {
        font-size: 1.3rem;
    }
    
    .company-description {
        font-size: 0.95rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .companies-section {
        padding: 50px 0;
    }
    
    .companies-grid {
        padding: 0 15px;
        gap: 15px;
    }
    
    .company-card {
        border-radius: 20px;
    }
    
    .company-logo-container {
        padding: 20px;
        border-radius: 0;
    }
    
    .company-logo-circle {
        width: 80px;
        height: 80px;
    }
    
    .company-logo {
        width: 60px;
        height: 60px;
    }
    
    .company-content {
        padding: 25px 20px;
    }
    
    .company-name {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    
    .company-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .company-website {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        text-align: center;
    }
}

/* ========================================
   DIRECTORS PAGE BACKGROUND
   ======================================== */
/* Directors page header with background image */
.page-header.directors-bg {
    background-color: #2c3e50 !important;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), 
                      url('images/directors.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    min-height: 70vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    width: 100% !important;
    padding: 120px 0 100px 0 !important;
}

.page-header.directors-bg .page-title,
.page-header.directors-bg .page-subtitle {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 2;
    position: relative;
}

.page-header.directors-bg::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: none !important;
    z-index: 1 !important;
}

.page-header.directors-bg .container {
    position: relative;
    z-index: 3;
}

/* ========================================
   SEPARATE CARDS DIRECTORS SECTION
   ======================================== */
.directors-showcase {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Diagonal Blue Circle Bubbles Background */
.directors-showcase::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.25), rgba(38, 198, 218, 0.18));
    border-radius: 50%;
    z-index: 0;
}

.directors-showcase::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 550px;
    height: 550px;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.22), rgba(38, 198, 218, 0.15));
    border-radius: 50%;
    z-index: 0;
}

.director-section {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 80px auto;
    position: relative;
    z-index: 1;
}

.director-section:last-child {
    margin-bottom: 0;
}

/* Separate Photo Card */
.director-photo-card {
    flex: 0 0 280px;
    background: transparent;
    border-radius: 15px;
    padding: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.director-photo-separate {
    width: 320px;
    height: 320px;
    position: relative;
    background: linear-gradient(135deg, #60a5fa, #3b82f6, #0ea5e9);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(96, 165, 250, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    filter: drop-shadow(0 8px 16px rgba(96, 165, 250, 0.2));
}

.director-photo-separate img {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    object-fit: cover;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    display: block;
    border-radius: 0;
}

/* Separate Information Card */
.director-info-card {
    flex: 1;
    background: #ffffff;
    border-radius: 0 25px 0 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.welcome-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.director-role {
    font-size: 1.8rem;
    color: #00bcd4;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.director-name-modern {
    font-size: 1.4rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 25px;
}

.director-message {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: justify;
}

.director-signature {
    margin-top: auto;
}

.signature-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 5px;
    font-style: italic;
}

.signature-name {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
}

/* Decorative Elements for Separate Cards - Removed */

/* Responsive Design for Separate Cards */
@media (max-width: 1024px) {
    .director-section {
        max-width: 900px;
        gap: 25px;
        margin-bottom: 70px;
    }
    
    .director-photo-card {
        flex: 0 0 300px;
    }
    
    .director-photo-separate {
        width: 280px;
        height: 280px;
    }
    
    .director-info-card {
        padding: 35px 40px;
    }
    
    .director-role {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .directors-showcase {
        padding: 60px 0;
    }
    
    .director-section {
        flex-direction: column;
        max-width: 500px;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .director-photo-card {
        flex: none;
        max-width: 100%;
    }
    
    .director-photo-separate {
        width: 250px;
        height: 250px;
    }
    
    .director-info-card {
        padding: 30px 35px;
        text-align: center;
    }
    
    .director-message {
        text-align: center;
    }
    
}

@media (max-width: 480px) {
    .directors-showcase {
        padding: 50px 0;
    }
    
    .director-section {
        margin: 0 15px 40px 15px;
    }
    
    .director-photo-card {
        border-radius: 12px;
    }
    
    .director-info-card {
        border-radius: 0 20px 0 20px;
    }
    
    .director-photo-separate {
        width: 220px;
        height: 220px;
    }
    
    .director-info-card {
        padding: 25px 30px;
    }
    
    .director-role {
        font-size: 1.4rem;
    }
    
    .director-name-modern {
        font-size: 1.2rem;
    }
    
    .director-message {
        font-size: 0.95rem;
    }
}

/* ========================================
   FOOTER LOGO IMAGE STYLING
   ======================================== */
.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

@media (max-width: 768px) {
    .footer-logo-img {
        height: 40px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .footer-logo-img {
        height: 35px;
        margin-bottom: 10px;
    }
}

/* Decorative Elements */
.director-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(37, 167, 95, 0.1), rgba(46, 204, 113, 0.1));
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.director-item.reverse::before {
    left: auto;
    right: -100px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .director-content {
        gap: 60px;
    }
    
    .director-image {
        flex: 0 0 350px;
    }
    
    .director-photo {
        width: 300px;
        height: 380px;
    }
    
    .director-name {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .directors-showcase {
        padding: 80px 0;
    }
    
    .director-item {
        margin-bottom: 80px;
    }
    
    .director-content,
    .director-item.reverse .director-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .director-image {
        flex: none;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .director-photo {
        width: 250px;
        height: 320px;
    }
    
    .director-name {
        font-size: 2rem;
    }
    
    .director-description {
        text-align: center;
    }
    
    .director-highlights {
        justify-content: center;
    }
    
    .director-item::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .directors-showcase {
        padding: 60px 0;
    }
    
    .director-item {
        margin-bottom: 60px;
    }
    
    .director-content {
        gap: 30px;
        padding: 0 20px;
    }
    
    .director-image {
        max-width: 220px;
    }
    
    .director-photo {
        width: 200px;
        height: 260px;
    }
    
    .director-name {
        font-size: 1.8rem;
    }
    
    .director-title {
        font-size: 1rem;
    }
    
    .director-position {
        font-size: 1.1rem;
    }
    
    .director-description {
        font-size: 1rem;
    }
    
    .highlight {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

/* ========================================
   OUR JOURNEY HERO SECTION
   ======================================== */
.journey-hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-top: 0;
}

.journey-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.journey-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.journey-hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.journey-hero-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
   OUR JOURNEY TIMELINE - NEW DESIGN
   ======================================== */
.timeline-container {
    display: flex;
    width: 90%;
    max-width: 1400px;
    gap: 4rem;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 24px;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    /* background-image: url('images/promise.png'); */
    background-size: 70%;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    border-radius: 0;
}

@media (max-width: 768px) {
    .timeline-container {
        padding-top: 12px;
    }
}

/* Removed overlay to avoid white straps */

/* Timeline (Left) - Fixed */
.timeline {
    position: sticky;
    top: 70px;
    height: fit-content;
    background: transparent;
    padding: 2rem 1rem;
    min-width: 120px;
    margin-left: 2rem;
    margin-right: 5rem;
    z-index: 10;
}

.timeline ul {
    list-style: none;
    position: relative;
    padding-left: 0;
}

/* Vertical Line on left */
.timeline ul::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #d1d5db;
    z-index: 1;
}

.timeline li {
    margin: 4rem 0;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 40px;
}

/* Title next to active circle */
.timeline li::after {
    content: attr(data-title);
    position: absolute;
    left: 100%;
    margin-left: 25px;
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 600;
    color: transparent;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

/* Dot on the line - bigger */
.timeline li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background: #6b7280;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2;
}

.timeline li:hover {
    color: #3b82f6;
}

.timeline li:hover::before {
    background: #3b82f6;
    transform: scale(1.15);
}

/* Active State */
.timeline li.active {
    color: #3b82f6;
    font-size: 1.05rem;
    font-weight: 700;
    position: relative;
}

.timeline li.active::before {
    background: #3b82f6;
    transform: scale(1.5);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.25);
}

/* Show title next to active circle */
.timeline li.active::after {
    content: attr(data-title);
    color: #3b82f6;
    opacity: 1;
    font-size: 0.85rem;
    font-weight: 700;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 6px 12px;
    border-radius: 6px;
    border: 2px solid #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    min-width: 150px;
    text-align: center;
}

/* Content (Right) - Scrollable with smooth scroll */
.content {
    flex: 1;
    overflow-y: visible;
    padding-right: 2rem;
    padding-left: 3rem;
    scroll-behavior: smooth;
    max-width: 750px;
    margin-left: auto;
    z-index: 10;
    position: relative;
}

/* Enable smooth scrolling with momentum for the whole page */
html {
    scroll-behavior: smooth !important;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
}

/* Smooth scrolling for all elements */
* {
    scroll-behavior: smooth !important;
}

.year-content {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border-left: none;
    max-width: 600px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.year-content:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.year-content h2 {
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.year-content p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.year-content img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .journey-hero {
        height: 400px;
        margin-top: 0;
    }
    
    .journey-hero-overlay {
        padding-top: 60px;
    }

    .journey-hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .journey-hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .timeline-container {
        flex-direction: column;
        width: 95%;
        gap: 2rem;
        padding-top: 16px;
    }

    .timeline {
        position: relative;
        top: 0;
        width: 100%;
        padding: 1.5rem;
    }

    .timeline ul {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        padding-bottom: 10px;
    }

    .timeline ul::before {
        display: none;
    }

    .timeline li {
        margin: 0;
        white-space: nowrap;
    }

    .timeline li.active::after {
        display: none;
    }

    .timeline li::before {
        position: relative;
        left: 0;
    }

    .year-content {
        padding: 1.5rem;
    }

    .year-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .journey-hero {
        height: 350px;
    }
    
    .journey-hero-overlay {
        padding-top: 50px;
    }

    .journey-hero-title {
        font-size: 2rem;
    }

    .journey-hero-subtitle {
        font-size: 0.9rem;
    }
}