/* style.css */
:root {
    --primary-bg: #1a2a3a;
    --secondary-bg: #0d1b2a;
    --tertiary-bg: #2c3e50;
    --light-bg: #f8f9fa;
    --accent-color: #FB7722 ;
    --dark-text: #212529;
    --light-text: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Background Classes */
.bg-primary-custom {
    background-color: var(--primary-bg);
    color: var(--light-text);
}

.bg-secondary-custom {
    background-color: var(--secondary-bg);
    color: var(--light-text);
}

.bg-tertiary-custom {
    background-color: var(--tertiary-bg);
    color: var(--light-text);
}

.bg-light-custom {
    background-color: var(--light-bg);
    color: var(--dark-text);
}

/* Video Hero Section */
.video-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 27, 42, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 20px;
}

.video-hero .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.video-hero .text-center {
    max-width: 800px;
    margin: 0 auto;
}

.video-hero h1 {
    margin-bottom: 20px;
}

.video-hero h2 {
    margin-bottom: 25px;
}

.video-hero p.lead {
    margin-bottom: 30px;
}

.video-hero .d-flex {
    margin-top: 30px;
}

.section-title {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    margin-bottom: 25px;
    display: inline-block;
}


/* Gallery Styles */
.gallery-item {
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.gallery-item img {
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Testimonials */
.testimonial {
    padding: 30px;
}

/* Mission Page */
.approach-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.approach-card:hover {
    transform: translateY(-10px);
}

.bg-accent-custom {
    background-color: var(--accent-color);
}


/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Pulse animation for buttons */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse-animate {
    animation: pulse 2s infinite;
}

/* Mission SVG container */
.mission-svg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 300px;
    padding: 20px;
}

/* Mission SVG adjustments */
.mission-svg {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.circle {
    stroke-dasharray: 427;
    stroke-dashoffset: 427;
    animation: drawCircle 2s ease forwards;
}

.arrow {
    transform-origin: center;
    opacity: 0;
    animation: popIn 1s 1.5s ease forwards;
}

.text {
    font: 900 64px/1 "Arial", sans-serif;
    letter-spacing: 2px;
    fill: var(--accent-color);
    opacity: 0;
    animation: fadeIn 1s 2.5s ease forwards, pulse 2s infinite 3.5s;
}

@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}

@keyframes popIn {
    from { transform: scale(0.2) rotate(-180deg); opacity: 0; }
    to { transform: scale(1) rotate(0deg); opacity: 1; }
}

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

/* Card hover effects */
.card-hover {
    transition: all 0.3s ease;
}

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

/* Image zoom effect */
.img-zoom {
    transition: transform 0.5s ease;
}

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



/* Rest of your CSS styles... */
/* [Include all other CSS rules from your original index.html here] */


        /* Center the text content */
        .video-hero .text-center {
            max-width: 800px;
            margin: 0 auto;
        }

        /* Adjust spacing between elements */
        .video-hero h1 {
            margin-bottom: 20px;
        }

        .video-hero h2 {
            margin-bottom: 25px;
        }

        .video-hero p.lead {
            margin-bottom: 30px;
        }

        /* Button spacing */
        .video-hero .d-flex {
            margin-top: 30px;
        }
    .section-title {
        color: var(--accent-color);
        border-bottom: 2px solid var(--accent-color);
        padding-bottom: 10px;
        margin-bottom: 25px;
        display: inline-block;
    }
    
    .dark .section-title {
        color: var(--accent-color);
    }
    
    .light .section-title {
        color: var(--primary-bg);
        border-bottom-color: var(--primary-bg);
    }
    
    .value-card {
        background-color: var(--tertiary-bg);
        border-radius: 10px;
        padding: 20px;
        height: 100%;
        transition: transform 0.3s;
    }
    
    .light .value-card {
        background-color: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .value-card:hover {
        transform: translateY(-5px);
    }
    
    .contact-info {
        background-color: var(--secondary-bg);
        padding: 30px;
        border-radius: 10px;
    }
    
    .btn-primary {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
    }
    
    .btn-primary:hover {
        background-color: #3e8e41;
        border-color: #3e8e41;
    }
    
    .btn-outline-dark {
        border-color: var(--primary-bg);
        color: var(--primary-bg);
    }
    
    .btn-outline-dark:hover {
        background-color: var(--primary-bg);
        color: white;
    }
    
    /* Portfolio Cards */
    .portfolio-card {
        border-radius: 10px;
        overflow: hidden;
        transition: transform 0.3s;
        height: 100%;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .portfolio-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .portfolio-card-body {
        padding: 20px;
    }
    
    .portfolio-card:hover {
        transform: translateY(-10px);
    }
    
    /* Gallery Carousel */
    .gallery-carousel .carousel-item img {
        height: 500px;
        object-fit: cover;
    }
    
    .carousel-caption {
        background-color: rgba(0,0,0,0.6);
        border-radius: 10px;
        padding: 20px;
    }
    
    /* Scroll down arrow */
    .scroll-down {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        color: white;
        font-size: 2rem;
        animation: bounce 2s infinite;
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
        40% {transform: translateY(-20px) translateX(-50%);}
        60% {transform: translateY(-10px) translateX(-50%);}
    }
    
    /* Mobile adjustments */
    @media (max-width: 768px) {
        .video-hero {
            height: 80vh;
            min-height: 500px;
        }
        
        .hero-content h1 {
            font-size: 2.5rem;
        }
        
        .gallery-carousel .carousel-item img {
            height: 300px;
        }
    }