/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
    --primary-color: #E6004C;
    /* Main Pink/Red */
    --secondary-color: #FF5722;
    /* Orange/Red */
    --dark-color: #1a1a1a;
    --body-color: #4F4F4F;
    --body-font: 'Poppins', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--body-color);
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: #000;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    color: var(--secondary-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.section-padding {
    padding: 80px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.section-title {
    margin-bottom: 30px;
}

.section-title .sub-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-top: 10px;
}


/*--------------------------------------------------------------
# Header & Navbar
--------------------------------------------------------------*/

.navbar {
    /* UPDATED: Changed to transparent by default */
    background-color: transparent;
    backdrop-filter: none;
    transition: all 0.3s ease;
}

.navbar .navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.navbar .nav-link {
    color: #fff;
    font-weight: 500;
    padding: 10px 15px !important;
    transition: all 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary-color);
}


/* This is the style that gets ADDED on scroll */

.navbar.scrolled {
    background-color: var(--dark-color);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
    .navbar {
        /* Mobile menu always needs a dark background */
        background-color: var(--dark-color);
    }
}


/*--------------------------------------------------------------
# 1. Hero Section (STATIC - REPLACED BY SLIDER)
--------------------------------------------------------------*/


/* #hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    background: url('../images/7.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#hero .display-3 {
    font-weight: 700;
}

#hero .lead {
    font-size: 24px;
} */


/*--------------------------------------------------------------
# 1. NEW: Hero SLIDER Section
--------------------------------------------------------------*/

.hero-slider .hero-slide-item {
    height: 100vh;
    min-height: 600px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.7);
    /* Dark overlay */
}

.hero-slider .display-3 {
    font-weight: 700;
}

.hero-slider .lead {
    font-size: 24px;
}


/* Hero Slider Navigation */

.hero-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-slider .owl-nav button.owl-prev,
.hero-slider .owl-nav button.owl-next {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    color: #fff !important;
    font-size: 20px !important;
    transition: all 0.3s ease;
}

.hero-slider .owl-nav button.owl-prev:hover,
.hero-slider .owl-nav button.owl-next:hover {
    background: var(--primary-color) !important;
}


/* Hero Slider Dots */

.hero-slider .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-slider .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #fff;
    margin: 0 5px;
}

.hero-slider .owl-dots .owl-dot.active span,
.hero-slider .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
    border-color: var(--primary-color);
}


/* Typing effect cursor */

#typing-effect::after {
    content: '|';
    animation: blink 0.7s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}


/*--------------------------------------------------------------
# 2. About Section
--------------------------------------------------------------*/

.check-list li {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.check-list .fa-check-circle {
    color: var(--primary-color);
    margin-right: 10px;
}


/* This CSS makes sure your About Us image fills its container */

#about .img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Prevents stretching */
    min-height: 350px;
    /* Ensures it's not too small */
}


/* ... (rest of CSS is unchanged) ... */


/*--------------------------------------------------------------
# 3. Services Section
--------------------------------------------------------------*/

.service-card {
    padding: 30px;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover,
.service-card.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    transform: translateY(-10px);
}

.service-card .service-card-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #000;
    transition: all 0.3s ease;
}

.service-card p {
    transition: all 0.3s ease;
}

.service-card .service-card-number {
    position: absolute;
    top: -20px;
    right: 15px;
    font-size: 80px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover h3,
.service-card:hover p,
.service-card.active h3,
.service-card.active p {
    color: #fff;
}

.service-card:hover .service-card-icon,
.service-card.active .service-card-icon {
    color: #fff;
}

.service-card:hover .service-card-number,
.service-card.active .service-card-number {
    color: rgba(255, 255, 255, 0.2);
}


/*--------------------------------------------------------------
# 4. Stats Section
--------------------------------------------------------------*/

#stats {
    /* This gradient matches the video */
    background: linear-gradient(135deg, #4a00e0, #8e2de2);
    background-attachment: fixed;
}

#stats p {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}


/*--------------------------------------------------------------
# 5. Why Us Section
--------------------------------------------------------------*/

.why-us-card {
    padding: 30px;
    border-radius: 8px;
    background-color: #fff;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    height: 100%;
    transition: all 0.3s ease;
}

.why-us-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.why-us-card.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-top-color: #fff;
}

.why-us-card.active h3,
.why-us-card.active p {
    color: #fff;
}


/*--------------------------------------------------------------
# 6. Testimonials Section
--------------------------------------------------------------*/

.testimonial-item {
    padding: 0 20px;
}

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 4px solid var(--primary-color);
    object-fit: cover;
    /* Ensures profile pic isn't stretched */
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
}


/*--------------------------------------------------------------
# 7. Process (Video) Section
--------------------------------------------------------------*/

.video-container {
    position: relative;
    display: inline-block;
}

.video-container .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.video-container .play-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}


/*--------------------------------------------------------------
# 8. Blog Section
--------------------------------------------------------------*/

.blog-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-img {
    position: relative;
}


/* This ensures your blog images are not stretched */

.blog-card-img .img-fluid {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card-img .blog-date {
    position: absolute;
    bottom: -15px;
    left: 20px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.blog-card-body {
    padding: 40px 25px 25px 25px;
}

.blog-card-body h3 {
    font-size: 20px;
}

.blog-card-body h3 a {
    color: #000;
}

.blog-card-body h3 a:hover {
    color: var(--primary-color);
}

.blog-card-body .read-more {
    font-weight: 600;
}

.blog-card-body .read-more .fa-arrow-right {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.blog-card-body .read-more:hover .fa-arrow-right {
    margin-left: 10px;
}


/*--------------------------------------------------------------
# 9. FAQ Section
--------------------------------------------------------------*/

.accordion-item {
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 8px !important;
}

.accordion-button {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    border-radius: 8px !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E6004C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    font-size: 15px;
}


/*--------------------------------------------------------------
# 10. Contact Form
--------------------------------------------------------------*/

.contact-form .form-control {
    padding: 12px 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(230, 0, 76, 0.2);
}

.contact-form textarea.form-control {
    min-height: 140px;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer-section {
    background-color: var(--dark-color);
    color: #adadad;
    padding: 60px 0 0 0;
}

.footer-section .footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-section h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-section .social-icons a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-section .social-icons a:hover {
    background-color: var(--primary-color);
}

.footer-section .footer-links li {
    margin-bottom: 10px;
}

.footer-section .footer-links a {
    color: #adadad;
    transition: all 0.3s ease;
}

.footer-section .footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-section .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-section .footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.footer-section .footer-bottom strong {
    color: #fff;
}


/*--------------------------------------------------------------
# Back to Top Button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: #fff;
}


/*--------------------------------------------------------------
# Page Header (FOR ABOUT, SERVICES, JOBS, etc.)
--------------------------------------------------------------*/

.page-header {
    /* UPDATED: Changed from 60vh to 50vh */
    height: 50vh;
    min-height: 350px;
    position: relative;
    background: url('../images/3.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-header .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.7);
    /* Dark overlay */
}

.page-header h1 {
    position: relative;
    z-index: 1;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}


/*--------------------------------------------------------------
# 7. Process (Video) Section
--------------------------------------------------------------*/

.video-container {
    position: relative;
}


/* This styles the new <video> tag */

.video-container video {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


/*--------------------------------------------------------------
# Scroll Reveal Animations (REMOVED)
--------------------------------------------------------------*/


/* .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
*/