:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

body {
    background-color: #ffffff;
    color: #333;
}


.hero {
    padding: 60px 0;
    background: linear-gradient(90deg, #D9207D 0%, #F7316E 25%, #FF5858 50%, #FF8945 75%, #FFC137 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #252e63;
    margin-bottom: 0;
}

.hero-image {
    max-width: 300px;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-image {
        max-width: 250px;
        margin: 0 auto 2rem;
    }
}

.project-image {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    padding: 50px;
}






/* Download Button for Brochure */

.download-btn {background-image: linear-gradient(to right, #77A1D3 0%, #79CBCA  51%, #77A1D3  100%)}
.download-btn {
    margin: 10px;
   padding: 10px 15px;
   text-align: center;
   text-transform: uppercase;
   transition: 0.5s;
   background-size: 200% auto;
   color: white;            
   box-shadow: 0 0 20px #eee;
   border-radius: 10px;
   text-decoration: none;
}


.download-btn:hover {
    background-position: right center; /* change the direction of the change here */
   color: #fff;
}

/* Responsive design for small screens */
@media (max-width: 768px) {
    .technical_training_card {
        padding: 15px;
    }
}

.section-title {
    position: relative;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}


/* About Section Styling */
.about-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.about-image img:hover {
    transform: scale(1.05);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.about-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.about-list {
    padding: 0;
    list-style: none;
}

.about-list li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-list li i {
    color: #007bff;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* status counter style */

.stats-counter {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.stats-counter .count {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stats-counter .title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Make stats visible when scrolled into view */
.stats-counter.visible {
    opacity: 1;
    transform: translateY(0);
}


/* project style */

.project-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.project-card .card-body {
    padding: 1.5rem;
}

.project-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.progress-bar {
    height: 8px;
    border-radius: 4px;
}

.project-details {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.project-details i {
    width: 20px;
    text-align: center;
    margin-right: 5px;
    color: var(--primary-color);
}

/* time line style*/

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.6rem;
    top: 0.3rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}