/* AOS Animation Enhancements */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Custom AOS Animation Overrides for Professional Look */
[data-aos="fade-up"] {
    transform: translate3d(0, 60px, 0);
    opacity: 0;
}

[data-aos="fade-up"].aos-animate {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

[data-aos="slide-right"] {
    transform: translate3d(-100px, 0, 0);
    opacity: 0;
}

[data-aos="slide-right"].aos-animate {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

[data-aos="slide-left"] {
    transform: translate3d(100px, 0, 0);
    opacity: 0;
}

[data-aos="slide-left"].aos-animate {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

[data-aos="slide-down"] {
    transform: translate3d(0, -50px, 0);
    opacity: 0;
}

[data-aos="slide-down"].aos-animate {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

[data-aos="slide-up"] {
    transform: translate3d(0, 50px, 0);
    opacity: 0;
}

[data-aos="slide-up"].aos-animate {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
    opacity: 0;
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
    opacity: 1;
}

/* Legendary Hero Section Enhancement */
.hero-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section.legendary-loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Hover Effects for Animated Elements */
.hero-title.aos-animate {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-title.aos-animate:hover {
    transform: translateY(-3px);
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-card.aos-animate {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card.aos-animate:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.timeline-item.aos-animate {
    transition: all 0.3s ease;
}

.timeline-item.aos-animate:hover {
    transform: translateX(10px);
}

.timeline-item.aos-animate:hover .timeline-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(181, 7, 15, 0.3);
}

/* Progressive Loading Animation for Better UX */
.hero-section .hero-content > * {
    will-change: transform, opacity;
}

.stats-section .stat-card {
    will-change: transform, opacity;
}

.about-us-section .highlight-item {
    will-change: transform, opacity;
}

/* Smooth Scrolling Enhancement */
html {
    scroll-behavior: smooth;
}

/* Custom Easing Functions for Legendary Feel */
[data-aos] {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="zoom-in"] {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos="slide-up"], 
[data-aos="slide-down"] {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos="fade-up"] {
    transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
}

/* Performance Optimizations */
.hero-section,
.stats-section,
.about-us-section,
.services-process-section,
.cta-section {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Special Effects for Key Elements */
.hero-title.aos-animate {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.hero-title {
    background-size: 200% auto;
}

/* Legendary Glow Effects */
.timeline-icon.aos-animate {
    position: relative;
}

.timeline-icon.aos-animate::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-item:hover .timeline-icon.aos-animate::before {
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

/* Enhanced Button Animations */
.read-more-button.aos-animate,
.about-btn-primary.aos-animate,
.cta-btn-primary.aos-animate {
    position: relative;
    overflow: hidden;
}

.read-more-button.aos-animate::before,
.about-btn-primary.aos-animate::before,
.cta-btn-primary.aos-animate::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.read-more-button:hover.aos-animate::before,
.about-btn-primary:hover.aos-animate::before,
.cta-btn-primary:hover.aos-animate::before {
    width: 300px;
    height: 300px;
}

/* Mobile Optimizations for AOS Animations */
@media (max-width: 768px) {
  [data-aos] {
    transition-duration: 0.8s !important;
  }
  
  [data-aos="slide-right"],
  [data-aos="slide-left"] {
    transform: translateY(30px) !important;
    opacity: 0;
  }
  
  [data-aos="slide-right"].aos-animate,
  [data-aos="slide-left"].aos-animate {
    transform: translateY(0) !important;
    opacity: 1;
  }
  
  .stat-card {
    margin-bottom: 20px;
  }
  
  .stat-number {
    font-size: 2.5rem !important;
  }
}

@media (max-width: 576px) {
  [data-aos] {
    transition-duration: 0.6s !important;
  }
  
  .stats-section {
    padding: 60px 0 !important;
  }
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    [data-aos] {
        animation-duration: 0.1ms !important;
        transition-duration: 0.1ms !important;
    }
    
    .hero-title {
        animation: none !important;
    }
    
    .timeline-icon::before {
        animation: none !important;
    }
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif !important;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    overflow-x: hidden;
}

a{
    text-decoration: none !important;
}



@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Stack+Sans+Text:wght@200..700&display=swap');

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Stack Sans Text", sans-serif !important;
}

p{
    line-height: 1.5;
    font-size: 1.1rem;
}

:root{
    --primary-color: #b5070f;
    --secondary-color: #f5f5f5 ;
    --accent-color: #e7cb7c;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
    --section-padding: 80px 0;
}


.read-more-button{
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 20px 40px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* backdrop-filter: blur(10px); */
    margin-top: 20px;
    transition: all .5s ease-in-out;
}

.read-more-button:hover{
    color: white;
    background-color: var(--primary-color);
}




/* Stats Section Styles */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/><circle cx="10" cy="60" r="1" fill="%23000" opacity="0.02"/><circle cx="90" cy="40" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.stats-content {
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    /* border-radius: 20px; */
    padding: 30px 25px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* backdrop-filter: blur(10px); */
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleY(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d6051e 100%);
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(181, 7, 15, 0.3);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    /* box-shadow: 0 12px 25px rgba(181, 7, 15, 0.4); */
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 8px 0;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d6051e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-description {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
}

/* Video Section */
.stats-video-container {
    position: relative;
    /* border-radius: 20px; */
    overflow: hidden;
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); */
    height: 100%;
}

.stats-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(181, 7, 15, 0.8) 0%, rgba(231, 203, 124, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    cursor: pointer;
}

.stats-video-container:hover .video-overlay {
    opacity: 1;
}

.stats-video-container:hover .stats-video {
    transform: scale(1.05);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number.counting {
    animation: countUp 0.6s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
    .stats-section {
        padding: 60px 0;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stats-video-container {
        margin-top: 40px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 40px 0;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stats-video-container {
        height: 250px;
    }
}

/* Animation for stats when in viewport */
.stat-card.animate {
    animation: slideInUp 0.6s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-summary h4{
    font-size: 2.2rem;
    font-weight: 800;
}


.report-button {
    padding: 0.6em 1em;
   color: white;
   background-color: var(--primary-color);
    /* margin-top: 10px; */
    margin-right: 10px;
    transition: all .5s ease-in-out;
}

.report-button:hover{
    background: var(--accent-color);
    color: #333;
}

.partner-button{
    padding: 0.6em 1em;
    color: #333;
    background-color: var(--accent-color);
    transition: all .5s ease-in-out;
}


.partner-button:hover{
    background-color: var(--primary-color);
    color:white;
}

/* About Us Section Styles */
.about-us-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(245, 245, 245, 0.3) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}

.about-content-wrapper {
    padding: 60px 40px;
    height: 100%;
    position: relative;
    z-index: 2;
}

.about-header {
    margin-bottom: 40px;
}

.about-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title-line {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0;
}

.about-description {
    margin-bottom: 50px;
}

.about-text-primary {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.6;
    margin-bottom: 25px;
}

.about-text-secondary {
    font-size: 1.1rem;
    font-weight: 400;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

.about-highlights {
    margin-bottom: 50px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.highlight-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.highlight-item:hover {
    transform: translateX(10px);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    background: #1a1a1a;
    transform: scale(1.1);
}

.highlight-content {
    flex: 1;
}

.highlight-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.about-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.about-btn-primary,
.about-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.about-btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.about-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    transition: left 0.4s ease;
    z-index: 0;
    color: white !important;
}

.about-btn-primary:hover::before {
    left: 0;
}

.about-btn-primary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(181, 7, 15, 0.3);
}

.about-btn-primary i,
.about-btn-primary span {
    position: relative;
    z-index: 1;
}

.about-btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.about-btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(181, 7, 15, 0.2);
}

.about-visual-wrapper {
    padding: 60px 40px;
    height: 100%;
    position: relative;
}

.about-image-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-container:hover .about-main-image {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(181, 7, 15, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.about-image-container:hover .about-image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.overlay-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin: 0;
}

.about-stats-mini {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding: 30px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.mini-stat {
    text-align: center;
    flex: 1;
}

.mini-stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.mini-stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section Responsive Design */
@media (max-width: 1200px) {
    .about-title {
        font-size: 2.4rem;
    }
    
    .about-content-wrapper,
    .about-visual-wrapper {
        padding: 50px 30px;
    }
}

@media (max-width: 992px) {
    .about-us-section {
        padding: 80px 0;
    }
    
    .about-content-wrapper {
        padding: 40px 25px 60px 25px;
    }
    
    .about-visual-wrapper {
        padding: 20px 25px 40px 25px;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-text-primary {
        font-size: 1.15rem;
    }
    
    .about-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .about-btn-primary,
    .about-btn-secondary {
        width: 100%;
        max-width: 300px;
        align-self: center;
    }
    
    .about-image-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 60px 0;
    }
    
    .about-content-wrapper,
    .about-visual-wrapper {
        padding: 30px 20px;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-text-primary {
        font-size: 1.1rem;
    }
    
    .about-text-secondary {
        font-size: 1rem;
    }
    
    .highlight-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 0;
    }
    
    .highlight-icon {
        margin-bottom: 15px;
    }
    
    .highlight-title {
        font-size: 1.2rem;
    }
    
    .about-btn-primary,
    .about-btn-secondary {
        padding: 15px 25px;
        font-size: 0.9rem;
    }
    
    .about-image-container {
        height: 300px;
    }
    
    .overlay-title {
        font-size: 2.5rem;
    }
    
    .overlay-subtitle {
        font-size: 1rem;
    }
    
    .about-stats-mini {
        padding: 20px 15px;
        margin-top: 20px;
    }
    
    .mini-stat-number {
        font-size: 1.8rem;
    }
    
    .mini-stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 1.6rem;
    }
    
    .about-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .about-stats-mini {
        flex-direction: column;
        gap: 20px;
    }
    
    .mini-stat {
        border-bottom: 1px solid #ddd;
        padding-bottom: 15px;
    }
    
    .mini-stat:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* Our Processes Timeline Section */
.our-processes {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.processes-header {
    text-align: center;
}

.processes-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.processes-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.processes-title-line {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 30px auto;
}

.processes-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.timeline-container {
    position: relative;
    padding: 60px 0;
    margin: 0 auto;
    max-width: 1200px;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #ddd;
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--primary-color);
    transition: width 2s ease;
}

.timeline-container.animate .timeline-line::before {
    width: 100%;
}

.timeline-step {
    position: relative;
    width: 25%;
    float: left;
    text-align: center;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: white;
    border: 4px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    position: relative;
    transition: all 0.4s ease;
    z-index: 3;
}

.timeline-step.active .step-number {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.step-content {
    background: white;
    padding: 30px 25px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.timeline-step .step-content {
    opacity: 1;
    transform: translateY(0);
}

.step-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.8);
}

.timeline-step .step-icon {
    opacity: 1;
    transform: scale(1);
}

.step-icon:hover {
    background: #1a1a1a;
    transform: scale(1.1);
}




.processes-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.processes-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    transition: left 0.4s ease;
    z-index: 0;
}

.processes-btn:hover::before {
    left: 0;
}

.processes-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(181, 7, 15, 0.3);
}

.processes-btn i,
.processes-btn span {
    position: relative;
    z-index: 1;
}

/* Responsive Design for Processes */
@media (max-width: 1200px) {
    .processes-title {
        font-size: 2.4rem;
    }
    
    .timeline-container {
        max-width: 1000px;
    }
    
    .processes-stats {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .our-processes {
        padding: 80px 0;
    }
    
    .processes-header {
        margin-bottom: 60px;
    }
    
    .processes-title {
        font-size: 2.2rem;
    }
    
    .timeline-container {
        padding: 40px 0;
    }
    
    .timeline-step {
        width: 50%;
    }
    
    .timeline-step:nth-child(odd) {
        margin-bottom: 40px;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }
    
    .step-content {
        padding: 25px 20px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .processes-stats {
        gap: 30px;
    }
    
    .stat-value {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .our-processes {
        padding: 60px 0;
    }
    
    .processes-title {
        font-size: 1.8rem;
    }
    
    .timeline-container {
        padding: 20px 0;
    }
    
    .timeline-step {
        width: 100%;
        float: none;
        margin-bottom: 30px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .step-content {
        padding: 20px 15px;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .processes-footer {
        margin-top: 50px;
        padding-top: 40px;
    }
    
    .processes-stats {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .processes-btn {
        padding: 15px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .processes-title {
        font-size: 1.6rem;
    }
    
    .processes-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .processes-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .step-content {
        margin: 0 10px 20px 10px;
    }
}

/* CTA Section Styles */
.cta-section {
    padding: 100px 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.cta-container {
    position: relative;
    z-index: 2;
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    pointer-events: none;
}

.pattern-dot {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.pattern-dot:nth-child(1) {
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.pattern-dot:nth-child(2) {
    top: 60%;
    right: 10%;
    animation: float 8s ease-in-out infinite reverse;
}

.pattern-dot:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation: float 7s ease-in-out infinite;
}

.pattern-dot:nth-child(4) {
    top: 30%;
    right: 20%;
    animation: float 9s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.cta-header {
    margin-bottom: 40px;
}

.cta-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-color);
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-title-line {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto;
}

.cta-description {
    margin-bottom: 50px;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.cta-btn-primary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: left 0.4s ease;
    z-index: 0;
}

.cta-btn-primary:hover::before {
    left: 0;
}

.cta-btn-primary:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-btn-primary i,
.cta-btn-primary span {
    position: relative;
    z-index: 1;
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}


/* CTA Section Responsive Design */
@media (max-width: 1200px) {
    .cta-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content {
        padding: 0 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 16px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    .pattern-dot {
        width: 100px;
        height: 100px;
    }
}


.contact-info-section{
    background-color: var(--primary-color);
    color: white;
}
.contact-info-part{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-contact-item{
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--accent-color);
}
.footer-contact-item i {
    color: var(--accent-color);
    margin-bottom: 10px;
    margin-right: 10px;
    font-size: 2.75rem;
}
.footer{
    background-color: var(--primary-color) !important;
}

.footer-title{
    padding-bottom: 20px;
    border-bottom: 1px solid var(--accent-color);
}

.google-map-part iframe{
    width: 100%;
    height: 100%;
}


.page-header {
    padding: 80px 40px;
    width: 100%;
    /* height: 100vh; */
    background-image: url("../images/salt-mine-image-1.jpg");
    position: absolute;
}

/* Main Content */
.about-main-content {
    margin-left: 280px;
    margin-top: 50px;
    min-height: calc(100vh - 50px);
}

/* Hero Section */
.about-hero-section {
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
        url('../images/salt-mines.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(181, 7, 15, 0.1);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-hero-text{
    padding: 16px;
    background-color: #d1d1d16e;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

/* Story Section */
.about-story-section {
    padding: var(--section-padding);
    background: var(--primary-color);
}

.about-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 30px;
    position: relative;
}

.about-title-underline {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin-bottom: 30px;
}

.story-content-container{
    background-color: var(--primary-color);
}

.about-story-content {
    padding-right: 40px;
}

.about-story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
    margin-bottom: 25px;
    text-align: justify;
}

.about-story-image {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.about-image-responsive {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.about-story-image:hover .about-image-overlay {
    opacity: 0.9;
}

.about-story-image:hover .about-image-responsive {
    transform: scale(1.1);
}

.about-overlay-icon {
    font-size: 4rem;
    color: var(--white);
    opacity: 0.8;
}

/* Mission & Vision Section */
.about-mission-section {
    padding: var(--section-padding);
    background: var(--secondary-color);
}

.about-mission-card,
.about-vision-card {
    background: var(--white);
    padding: 50px 40px;
    height: 100%;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-mission-card:hover,
.about-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-mission-card::before,
.about-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.about-mission-icon,
.about-vision-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.about-mission-title,
.about-vision-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-mission-text,
.about-vision-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    text-align: justify;
}

/* Core Values Section */
.about-values-section {
    padding: var(--section-padding);
    background: var(--white);
}

.about-values-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
    font-weight: 300;
}

.about-value-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border: 1px solid #e0e0e0;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.about-value-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transition: top 0.3s ease;
    z-index: 1;
}

.about-value-card:hover::before {
    top: 0;
}

.about-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.about-value-card:hover .about-value-icon,
.about-value-card:hover .about-value-title,
.about-value-card:hover .about-value-description {
    color: var(--white);
    position: relative;
    z-index: 2;
    background: none;;
}

.about-value-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.about-value-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.about-value-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

/* CTA Section */
.about-cta-section {
    padding: var(--section-padding);
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)),
        url('../images/salt-mine-image-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.about-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(181, 7, 15, 0.1);
}

.about-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.about-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-primary,
.about-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.about-cta-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.about-cta-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.about-cta-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.about-cta-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-main-content {
        margin-left: 250px;
    }

    .about-hero-title {
        font-size: 3rem;
    }

    .about-section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .about-story-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .about-story-image {
        height: 400px;
    }

    .about-mission-card,
    .about-vision-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .about-main-content {
        margin-left: 0;
    }

    .about-hero-section {
        height: 300px;
        background-attachment: scroll;
    }

    .about-hero-title {
        font-size: 2.2rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .about-section-title {
        font-size: 2rem;
    }

    :root {
        --section-padding: 60px 0;
    }

    .about-story-text {
        font-size: 1rem;
    }

    .about-mission-card,
    .about-vision-card {
        padding: 30px 25px;
    }

    .about-value-card {
        padding: 30px 15px;
    }

    .about-cta-title {
        font-size: 2rem;
    }

    .about-cta-subtitle {
        font-size: 1rem;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .about-cta-primary,
    .about-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .about-cta-section {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 1.8rem;
    }

    .about-section-title {
        font-size: 1.6rem;
    }

    .about-mission-card,
    .about-vision-card {
        padding: 25px 20px;
    }

    .about-mission-title,
    .about-vision-title {
        font-size: 1.4rem;
    }

    .about-value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .about-value-title {
        font-size: 1.2rem;
    }

    .about-overlay-icon {
        font-size: 3rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-story-content,
.about-mission-card,
.about-vision-card,
.about-value-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Animation */
.about-story-content {
    animation-delay: 0.2s;
}

.about-mission-card {
    animation-delay: 0.4s;
}

.about-vision-card {
    animation-delay: 0.6s;
}

/* ===================================
   SERVICES PAGE STYLES
   =================================== */

/* Main Content */
.services-main-content {
    margin-left: 280px;
    margin-top: 50px;
    min-height: calc(100vh - 50px);
}

/* Hero Section */
.services-hero-section {
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                url('../images/salt-mine-image-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(181, 7, 15, 0.1);
}

.services-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.services-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Overview Section */
.services-overview-section {
    padding: var(--section-padding);
    background: var(--white);
}

.services-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    position: relative;
}

.services-title-underline {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin-bottom: 30px;
}

.services-overview-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Services Grid Section */
.services-grid-section {
    padding: var(--section-padding);
    background: var(--secondary-color);
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    height: 100%;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    z-index: 1;
}

.service-icon {
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon-bg {
    background: var(--primary-color);
}

.service-card:hover .service-icon {
    color: var(--white);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 5px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Process Section */
.services-process-section {
    padding: var(--section-padding);
    background: var(--white);
}

.services-process-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    /* margin-bottom: 60px; */
    font-weight: 300;
}

/* Timeline Design */
.services-process-timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    padding: 20px 0;
}

.services-process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    flex-direction: row;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-content {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.timeline-number {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    border: 4px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-icon {
    width: 100px;
    height: 100px;
    background: var(--white);
    color: var(--primary-color);
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.timeline-details {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-details::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-details::before {
    left: -30px;
    border-right-color: var(--white);
}

.timeline-item:nth-child(even) .timeline-details::before {
    right: -30px;
    border-left-color: var(--white);
}

.timeline-item:hover .timeline-details {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.timeline-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Industries Section */
.services-industries-section {
    padding: var(--section-padding);
    background: var(--secondary-color);
}

.services-industries-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 60px;
    font-weight: 300;
}

.industry-card {
    background: var(--white);
    padding: 40px 25px;
    text-align: center;
    height: 100%;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-color);
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid var(--primary-color);
}

.industry-card:hover .industry-icon {
    background: var(--primary-color);
    color: var(--white);
}

.industry-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.industry-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-light);
}

/* CTA Section */
.services-cta-section {
    padding: var(--section-padding);
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), 
                url('../images/salt-mine-image-3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.services-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(181, 7, 15, 0.1);
}

.services-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services-cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.services-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-cta-primary,
.services-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.services-cta-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.services-cta-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.services-cta-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.services-cta-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-main-content {
        margin-left: 250px;
    }
    
    .services-hero-title {
        font-size: 3rem;
    }
    
    .services-section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .service-card {
        margin-bottom: 30px;
    }
    
    .process-step {
        margin-bottom: 40px;
    }
    
    .industry-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .services-main-content {
        margin-left: 0;
    }
    
    .services-hero-section {
        height: 300px;
        background-attachment: scroll;
    }
    
    .services-hero-title {
        font-size: 2.2rem;
    }
    
    .services-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    /* Timeline Responsive */
    .services-process-timeline::before {
        left: 30px;
        transform: none;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        flex-direction: row;
        text-align: left;
    }
    
    .timeline-number {
        left: 30px;
        transform: translateY(-50%);
    }
    
    .timeline-content {
        margin-left: 80px;
        gap: 20px;
    }
    
    .timeline-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .timeline-details {
        padding: 20px;
    }
    
    .timeline-details::before {
        left: -15px;
        border-right-color: var(--white);
        border-left-color: transparent;
        border-width: 10px;
    }
    
    .timeline-title {
        font-size: 1.3rem;
    }
    
    .timeline-description {
        font-size: 0.95rem;
    }
    
    .industry-card {
        padding: 30px 20px;
    }
    
    .services-cta-title {
        font-size: 2rem;
    }
    
    .services-cta-subtitle {
        font-size: 1rem;
    }
    
    .services-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .services-cta-primary,
    .services-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .services-cta-section {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .services-hero-title {
        font-size: 1.8rem;
    }
    
    .services-section-title {
        font-size: 1.6rem;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-icon-container {
        width: 60px;
        height: 60px;
    }
    
    .service-icon {
        font-size: 1.5rem;
    }
    
    /* Timeline Mobile Styles */
    .timeline-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        left: 22px;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .timeline-content {
        margin-left: 70px;
        gap: 15px;
    }
    
    .timeline-details {
        padding: 18px;
    }
    
    .timeline-title {
        font-size: 1.2rem;
    }
    
    .timeline-description {
        font-size: 0.9rem;
    }
    
    .services-process-timeline::before {
        left: 22px;
        width: 3px;
    }
    
    .industry-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .industry-title {
        font-size: 1.1rem;
    }
}

/* Contact Hero Section */
.contact-hero-section {
    background-color: var(--white);
    padding: 80px 0 60px;
    border-bottom: 3px solid var(--accent-color);
    position: relative;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contactPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23b5070f" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23contactPattern)"/></svg>');
    pointer-events: none;
}

.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-family: "Stack Sans Text", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

/* Section Headers */
.section-header-contact {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-contact {
    font-family: "Stack Sans Text", sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 15px;
    position: relative;
}

.section-title-contact::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle-contact {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Information Section */
.contact-info-section {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.contact-info-card {
    background-color: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 0;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    transition: left 0.4s ease;
}

.contact-info-card:hover::before {
    left: 0;
}

.contact-info-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-light);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.contact-info-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-info-icon {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.contact-info-card:hover .contact-info-icon i {
    color: var(--white);
}

.contact-info-title {
    font-family: "Stack Sans Text", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-info-details p {
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info-details i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.contact-info-details strong {
    color: var(--text-dark);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.contact-form-container {
    background-color: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 0;
    padding: 50px;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.professional-contact-form {
    max-width: 100%;
}

.form-group-contact {
    margin-bottom: 25px;
}

.form-label-contact {
    font-family: "Stack Sans Text", sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 8px;
    display: block;
}

.form-control-contact {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-light);
    border-radius: 0;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--white);
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.form-control-contact:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(231, 203, 124, 0.2);
}

.form-control-contact::placeholder {
    color: #aaa;
}

textarea.form-control-contact {
    resize: vertical;
    min-height: 120px;
}

select.form-control-contact {
    cursor: pointer;
}

/* Form Checkbox */
.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
}

.form-checkbox-contact {
    margin-top: 4px;
    accent-color: var(--primary-color);
}

.form-checkbox-label {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.privacy-link:hover {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
}

/* Submit Button */
.contact-submit-btn {
    background-color: var(--primary-color);
    color: var(--white) !important;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: "Stack Sans Text", sans-serif;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--text-dark);
    transition: left 0.4s ease;
    z-index: 1;
    color: white !important;
}

.contact-submit-btn:hover::before {
    left: 0;
}

.contact-submit-btn:hover {
    color: var(--white) !important;
    /* border-color: var(--text-dark); */
}

.contact-submit-btn i {
    margin-right: 10px;
    position: relative;
    z-index: 2;
}

.contact-submit-btn span {
    position: relative;
    z-index: 2;
}

/* Mining Locations Section */
.mining-locations-section {
    padding: 80px 0;
    background-color: var(--white);
}

.mining-location-card {
    background-color: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.mining-location-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px var(--shadow-medium);
    transform: translateY(-5px);
}

.mining-location-header {
    padding: 30px;
    background-color: var(--secondary-color);
    border-bottom: 3px solid var(--accent-color);
    text-align: center;
}

.mining-location-title {
    font-family: "Stack Sans Text", sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.mining-location-title i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.mining-location-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0;
    font-style: italic;
}

/* Google Maps Styling */
.mining-location-map {
    position: relative;
    padding-bottom: 300px; /* Fixed height for maps */
    height: 0;
    overflow: hidden;
}

.google-maps-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.4s ease;
}

.mining-location-card:hover .google-maps-iframe {
    filter: grayscale(0%);
}

.mining-location-info {
    padding: 30px;
}

.mining-location-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

.detail-item span {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-content {
        margin-left: 0;
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title-contact {
        font-size: 2.2rem;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .mining-location-header {
        padding: 20px;
    }
    
    .mining-location-info {
        padding: 20px;
    }
    
    .mining-location-title {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .mining-location-map {
        padding-bottom: 250px;
    }
}

@media (max-width: 576px) {
    .contact-hero-section {
        padding: 60px 0 40px;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .section-title-contact {
        font-size: 1.8rem;
    }
    
    .contact-info-section,
    .contact-form-section,
    .mining-locations-section {
        padding: 60px 0;
    }
    
    .section-header-contact {
        margin-bottom: 40px;
    }
    
    .contact-submit-btn {
        width: 100%;
        padding: 16px;
        font-size: 1rem;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        text-align: left;
    }
    
    .detail-item span {
        padding-left: 32px;
    }
}

/* Loading States and Animations */
.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-submit-btn:disabled:hover::before {
    left: -100%;
}

/* Focus Accessibility */
.form-control-contact:focus,
.contact-submit-btn:focus,
.form-checkbox-contact:focus {
    outline: 3px solid rgba(231, 203, 124, 0.5);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .contact-info-card {
        border-color: var(--text-dark);
    }
    
    .mining-location-card {
        border-color: var(--text-dark);
    }
    
    .form-control-contact {
        border-color: var(--text-dark);
    }
}