* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

:root {
    --primary-gold: #d6a019;
    --primary-gold-light: #ffcc00;
    --bg-dark: #0a0a0a;
    --bg-light: #fafafa;
    --bg-glass: rgba(255, 255, 255, 0.08);
    --bg-glass-hover: rgba(255, 255, 255, 0.12);
    --text-primary: #1a1a1a;
    --text-secondary: rgba(26, 26, 26, 0.7);
    --text-tertiary: rgba(26, 26, 26, 0.5);
    --text-dark: #000000;
    --text-white: #ffffff;
    --text-light-alpha: rgba(255, 255, 255, 0.9);
    --text-light-secondary: rgba(255, 255, 255, 0.7);
    --border-glass: rgba(214, 160, 25, 0.3);
    --shadow-primary: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.4);
    --blur-amount: 20px;
    --transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --background: rgb(214, 160, 25);
    --hover-color: #ffcc00;
    --primary-gradient: rgba(0, 0, 0, 0.8);
    --secondary-gradient: rgba(0, 0, 0, 1);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --overlay-color: rgba(0, 0, 0, 0.5);
    --accent-glow: rgba(214, 160, 25, 0.3);
    --glass-border: rgba(214, 160, 25, 0.2);
    --news-section-bg: #141414;
    --card-bg: rgba(20, 20, 20, 0.6);
    --card-border: rgba(214, 160, 25, 0.15);
    --gradient-overlay: linear-gradient(135deg, rgba(214, 160, 25, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    --gradient-mesh: linear-gradient(135deg, rgba(214, 160, 25, 0.15) 0%, rgba(255, 204, 0, 0.08) 50%, rgba(0, 0, 0, 0.3) 100%);
    
}

body {
    font-family: 'Epilogue', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-light);
    overflow-x: hidden;
    
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    
}

/* Modern Hero Section */ .about-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 clamp(20px, 8vw, 120px);
    background: var(--gradient-mesh), linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%), url('axflo/sea.jpg') center/cover no-repeat;
    background-attachment: fixed;
    
}

/* Dynamic Background Pattern */ .hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.6;
    background: radial-gradient(circle at 20% 80%, rgba(214, 160, 25, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 204, 0, 0.12) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(214, 160, 25, 0.08) 0%, transparent 50%);
    
}

/* Animated Grid Overlay */ .grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(214, 160, 25, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(214, 160, 25, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 1;
    
}

/* Floating Geometric Elements */ .geometric-elements {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    
}

.geometric-shape {
    position: absolute;
    background: linear-gradient(45deg, var(--accent-glow), rgba(255, 204, 0, 0.1));
    backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    animation: floatRotate 15s ease-in-out infinite;
    
}

.shape-1 {
    width: 200px;
    height: 100px;
    top: 15%;
    right: 10%;
    animation-delay: 0s;
    clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 15% 100%);
    
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 20%;
    animation-delay: 5s;
    border-radius: 50%;
    
}

.shape-3 {
    width: 120px;
    height: 60px;
    top: 60%;
    right: 5%;
    animation-delay: 10s;
    transform: rotate(45deg);
    
}

/* Glassmorphism Card */ .glass-accent {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    width: 300px;
    height: 400px;
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    z-index: 2;
    animation: glassFloat 8s ease-in-out infinite;
    
}

.glass-accent::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    border-radius: inherit;
    animation: gradientShift 10s ease-in-out infinite;
    
}

/* Hero Content */ .hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    animation: contentSlideIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(60px);
    
}

/* Status Badge */ .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--accent-glow);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
    animation: badgePulse 2s ease-in-out infinite;
    
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-gold-light);
    border-radius: 50%;
    animation: dotBlink 1.5s ease-in-out infinite;
    
}

/* Hero Title */ .hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 0.9;
    color: var(--text-primary);
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(214, 160, 25, 0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
    
}

/* Hero Subtitle */ .hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin-bottom: 40px;
    
}

/* CTA Button */ .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px var(--accent-glow);
    
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(214, 160, 25, 0.5);
    background: linear-gradient(135deg, var(--primary-gold-light) 0%, var(--hover-color) 100%);
    
}

.cta-arrow {
    transition: transform 0.3s ease;
    
}

.cta-button:hover .cta-arrow {
    transform: translateX(4px);
    
}

/* CSR Introduction Section */ .csr-intro {
    padding: 120px 0;
    background: var(--bg-light);
    position: relative;
    
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    
}

.intro-text h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    
}

.intro-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    
}

.intro-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-primary);
    
}

.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
    max-width: 100%;
    
}

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

/* Pillars of CSR Section */ .pillars-section {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    
}

.pillars-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23d6a019" opacity="0.1"/></svg>') repeat;
    background-size: 80px 80px;
    
}

.pillars-content {
    position: relative;
    z-index: 2;
    
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    
}

.section-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
}

.section-title2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-glow) 0%, var(--bg-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light-secondary);
    max-width: 700px;
    margin: 0 auto;
    
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    
}

.pillar-card {
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-overlay);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-gold);
    
}

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

.pillar-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--text-dark);
    box-shadow: 0 10px 30px var(--accent-glow);
    transition: var(--transition);
    
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 20px 40px rgba(214, 160, 25, 0.6);
    
}

.pillar-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
    
}

.pillar-description {
    color: var(--text-light-secondary);
    font-size: 1rem;
    line-height: 1.6;
    
}

/* Impact Stats Section */ .impact-stats {
    padding: 120px 0;
    background: var(--bg-light);
    
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    
}

.stat-card {
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    transform: scaleX(0);
    transition: var(--transition);
    
}

.stat-card:hover::before {
    transform: scaleX(1);
    
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
    
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    
}

/* Projects Carousel */ .projects-section {
    padding: 120px 0;
    background: var(--news-section-bg);
    position: relative;
    
}

.carousel-container {
    position: relative;
    margin-top: 4rem;
    
}

.project-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    
}

.project-carousel::-webkit-scrollbar {
    display: none;
    
}

.project-slide {
    min-width: 400px;
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    
}

.project-slide:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    
}

.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
    
}

.project-slide:hover .project-image {
    transform: scale(1.1);
    
}

.project-content {
    padding: 2rem;
    
}

.project-category {
    display: inline-block;
    padding: 6px 12px;
    background: var(--accent-glow);
    color: var(--primary-gold);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    
}

.project-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.3;
    
}

.project-description {
    color: var(--text-light-secondary);
    line-height: 1.6;
    
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    cursor: pointer;
    transition: var(--transition);
    
}

.carousel-btn:hover {
    background: var(--primary-gold);
    color: var(--text-dark);
    transform: scale(1.1);
    
}

/* Commitment Section */ .commitment-section {
    padding: 120px 0;
    background: var(--bg-light);
    position: relative;
    
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    
}

.commitment-card {
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 3rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(214, 160, 25, 0.1), transparent);
    transition: var(--transition);
    
}

.commitment-card:hover::before {
    left: 100%;
    
}

.commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-gold);
    
}

.commitment-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    
}

.commitment-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    
}

.commitment-description {
    color: var(--text-secondary);
    line-height: 1.6;
    
}

/* Animations */ @keyframes gridMove {
    0% {
    transform: translate(0, 0);
    
}

100% {
    transform: translate(50px, 50px);
    
}


}

@keyframes floatRotate {
    0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.4;
    
}

50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.7;
    
}


}

@keyframes glassFloat {
    0%, 100% {
    transform: translateY(-50%) translateX(0);
    
}

50% {
    transform: translateY(-50%) translateX(-10px);
    
}


}

@keyframes gradientShift {
    0%, 100% {
    opacity: 0.4;
    
}

50% {
    opacity: 0.7;
    
}


}

@keyframes contentSlideIn {
    0% {
    opacity: 0;
    transform: translateY(60px);
    
}

100% {
    opacity: 1;
    transform: translateY(0);
    
}


}

@keyframes badgePulse {
    0%, 100% {
    transform: scale(1);
    
}

50% {
    transform: scale(1.05);
    
}


}

@keyframes dotBlink {
    0%, 100% {
    opacity: 1;
    
}

50% {
    opacity: 0.3;
    
}


}

@keyframes titleGlow {
    0%, 100% {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    
}

50% {
    filter: drop-shadow(0 0 30px var(--accent-glow));
    
}


}

/* Responsive Design */ @media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        
    }
    
    .about-hero {
        padding: 0 20px;
        text-align: center;
        
    }

.glass-accent, .geometric-elements {
    display: none;
    
}

.hero-content {
    max-width: 100%;
    
}

.hero-subtitle {
    max-width: 100%;
    
}

.intro-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    
}

.intro-text h2 {
    font-size: 2.2rem !important;
    line-height: 1.2;
    word-break: break-word;
    overflow-wrap: break-word;
    
}

.intro-text p {
    font-size: 1rem;
    
}

.intro-image {
    margin: 0 auto;
    max-width: 100%;
    
}

.intro-image img {
    height: 300px;
    
}

.section-title {
    font-size: 2.5rem;
    
}

.section-title2 {
    font-size: 2.5rem;
    
}

.pillars-grid {
    grid-template-columns: 1fr;
    
}

.project-slide {
    min-width: 300px;
    
}

.commitment-grid {
    grid-template-columns: 1fr;
    
}


}

@media (max-width: 480px) {
    .status-badge {
    font-size: 0.7rem;
    padding: 6px 12px;
    
}

.cta-button {
    padding: 14px 28px;
    font-size: 0.9rem;
    
}

.hero-title {
    font-size: 2.2rem;
    
}

.pillar-card, .commitment-card {
    padding: 2rem;
    
}

.intro-text h2 {
    font-size: 1.8rem !important;
    
}

.container {
    padding: 0 0.5rem;
    
}

.intro-content {
    gap: 2rem;
    
}


}