/* Base Styles */
:root {
    --primary: #077c8c;
    --primary-light: #dfedf1;
    --secondary: #ecb42b;
    --dark: #212529;
    --light: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn {
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #066a78;
    border-color: #066a78;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
}

.btn-lg {
    padding: 0.75rem 2rem;
}

.text-primary {
    color: var(--primary) !important;
}

.text-warning {
    color: var(--secondary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-primary-light {
    background-color: var(--primary-light);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
}

.navbar-brand img {
    max-height: 60px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    color: var(--dark);
}



.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    background-color: var(--primary-light);
}

.hero-section h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-section p.lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Stats Section */
.stats-section {
    background-color: white;
    position: relative;
    z-index: 1;
    margin-top: -3rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.stat-item {
    padding: 1.5rem;
}

.stat-item h3 {
    color: var(--primary);
}

/* Services Section */
.services-section {
    position: relative;
    overflow: hidden;
}

.section-header span {
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-header p.lead {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.5rem;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1) !important;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 1.5rem;
}

/* About Section */
.about-section {
    background-color: white;
}

.about-features i {
    margin-top: 0.25rem;
}

/* App Section */
.app-section {
    position: relative;
    overflow: hidden;
}

.app-section h2 {
    font-size: 2.25rem;
}

.app-section .lead {
    opacity: 0.9;
}

/* Testimonials Section */
.testimonial-card {
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating i {
    margin-right: 0.25rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

/* Footer */
.footer a:hover {
    color: var(--secondary) !important;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary);
    color: var(--dark) !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-section h1 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
        text-align: center;
    }
    
    .hero-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .stats-section {
        margin-top: 0;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section p.lead {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }
}





/* About Section */

/* About Page Specific Styles */
.page-header {
    padding: 5rem 0;
    /* background: linear-gradient(rgba(7, 124, 140, 0.9), rgba(7, 124, 140, 0.9)), url('https://placehold.co/1920x600?text=About+Us') center/cover no-repeat; */
    background: linear-gradient(rgba(7, 124, 140, 0.9), rgba(7, 124, 140, 0.9)),  center/cover no-repeat;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: var(--secondary);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.about-img-container {
    padding: 0.5rem;
    background: white;
    border-radius: 0.5rem;
    display: inline-block;
}

.experience-badge {
    bottom: -1.5rem;
    right: -1.5rem;
    z-index: 1;
}

/* Timeline */
/* Growth Timeline Styles */
.growth-timeline {
    position: relative;
}

.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 50px;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-light);
    top: 0;
    bottom: 0;
    left: 50px;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-year {
    position: absolute;
    left: -70px;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 0 0 4px white, 0 4px 8px rgba(0,0,0,0.1);
}

.timeline-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
}

.timeline-card .card-header {
    padding: 15px 20px;
}

.timeline-card .card-header h3 {
    margin: 0;
    font-size: 1.4rem;
}

.timeline-card .card-body {
    padding: 20px;
}

.achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.achievement-item {
    display: flex;
    align-items: center;
    background-color: var(--primary-light);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.achievement-item i {
    margin-right: 8px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    background-color: var(--primary-light);
}

.service-item i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.service-item span {
    font-size: 0.85rem;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    margin-bottom: 8px;
}

.chemical-services {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.chemical-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.chemical-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.achievement-box {
    text-align: center;
    padding: 20px 10px;
    background-color: var(--primary-light);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.achievement-box h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.achievement-box p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.achievement-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.2;
    color: var(--primary);
}

.tech-highlight {
    display: flex;
    align-items: center;
}

.future-visions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vision-item {
    display: flex;
    gap: 15px;
}

.vision-item i {
    font-size: 1.5rem;
    margin-top: 3px;
}

.vision-item h5 {
    margin-bottom: 5px;
    color: var(--primary);
}

.vision-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #666;
}

/* Future Timeline Item */
.timeline-item.future .timeline-year {
    background-color: var(--secondary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .timeline-wrapper {
        padding-left: 0;
    }
    
    .timeline-wrapper::before {
        left: 30px;
    }
    
    .timeline-year {
        left: 0;
        width: 60px;
        height: 60px;
    }
    
    .timeline-card {
        margin-left: 80px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .timeline-card {
        margin-left: 70px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}
/* Team Cards */
.team-card {
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    border: 3px solid var(--primary-light);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-light);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    color: white !important;
}

/* Responsive Timeline */
@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-container::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }
    
    .left::after, .right::after {
        left: 19px;
    }
    
    .right {
        left: 0%;
    }
}




/* Servies */

/* Services Page Specific Styles */
.services-hero {
    padding: 5rem 0;
    background: linear-gradient(rgba(7, 124, 140, 0.9), rgba(7, 124, 140, 0.9)), center/cover no-repeat;
}

/* .services-hero img{
    background-color: none !important;
} */

.category-card {
    transition: transform 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-10px);
}

.card-img-top {
    padding: 2rem !important;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features i {
    position: absolute;
    left: 0;
    top: 0.2rem;
}

/* Detailed Services */
.detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.detail-content h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.spec-card {
    background-color: var(--primary-light);
    padding: 1rem;
    border-radius: 8px;
    height: 100%;
}

.spec-card h5 {
    color: var(--primary);
    font-size: 1rem;
}

.spec-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.spec-card li {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.area-tag {
    background-color: var(--primary-light);
    padding: 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.area-tag i {
    margin-right: 0.5rem;
}

.training-highlight {
    border-left: 4px solid var(--primary);
}

.training-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.training-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
}

.training-list li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
}

.service-features-sm {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.service-features-sm li {
    margin-bottom: 0.25rem;
    position: relative;
    padding-left: 1.25rem;
}

.service-features-sm li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-hero {
        text-align: center;
        padding: 3rem 0;
    }
    
    .services-hero .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
    }
    
    .detail-icon {
        margin: 0 auto;
    }
}





/* Contact */


/* Contact Page Specific Styles */
.contact-hero {
    padding: 5rem 0;
    background: linear-gradient(rgba(7, 124, 140, 0.9), rgba(7, 124, 140, 0.9)),  center/cover no-repeat;
}

.contact-card {
    transition: transform 0.3s ease;
    border-radius: 8px;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form Styles */
.contact-form .form-control, 
.contact-form .form-select {
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
}

.contact-form .form-control:focus, 
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(7, 124, 140, 0.25);
}

.contact-form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Map Section */
.map-section iframe {
    filter: grayscale(20%);
}

/* Career CTA */
.career-cta {
    /* background: linear-gradient(rgba(7, 124, 140, 0.9), rgba(7, 124, 140, 0.9)), url('https://placehold.co/1920x600?text=Careers') center/cover no-repeat; */
    background: linear-gradient(rgba(7, 124, 140, 0.9), rgba(7, 124, 140, 0.9)) center/cover no-repeat;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-hero {
        text-align: center;
        padding: 3rem 0;
    }
    
    .contact-hero .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .contact-card {
        margin-bottom: 1.5rem;
    }
}






/* App.Html */

/* App Page Specific Styles */
.app-hero {
    padding: 5rem 0;
    background: linear-gradient(rgba(7, 124, 140, 0.9), rgba(7, 124, 140, 0.9)),  center/cover no-repeat;
}

.app-badges .btn {
    min-width: 180px;
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.detail-item {
    padding: 12px;
    border-radius: 8px;
    background-color: rgba(223, 237, 241, 0.3);
    margin-bottom: 12px;
}

.detail-item:hover {
    background-color: rgba(223, 237, 241, 0.5);
}

.detail-item h5 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.detail-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #555;
}

.detail-item i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* App Carousel */
.app-carousel {
    position: relative;
    padding: 0 40px;
}

.screen-card {
    text-align: center;
    padding: 15px;
}

.screen-card img {
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.screen-caption {
    font-weight: 500;
    color: var(--primary);
}

.glide__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: var(--primary);
    z-index: 1;
}

.glide__arrow--left {
    left: 0;
}

.glide__arrow--right {
    right: 0;
}

.glide__bullets {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.glide__bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    margin: 0 5px;
    padding: 0;
}

.glide__bullet--active {
    background: var(--primary);
}

/* Benefit Cards */
.benefit-card {
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .app-hero {
        text-align: center;
        padding: 3rem 0;
    }
    
    .app-badges {
        justify-content: center;
    }
    
    .app-badges .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
    
    .app-carousel {
        padding: 0 20px;
    }
}




/* Vision */

/* Vision Page Specific Styles */
.vision-hero {
    padding: 6rem 0;
    background: linear-gradient(rgba(7, 124, 140, 0.9), rgba(7, 124, 140, 0.9)),  center/cover no-repeat;
}

.vision-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* Goal Cards */
.goal-card {
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.goal-card:hover {
    transform: translateY(-10px);
}

.goal-number {
    line-height: 1;
}

.progress {
    height: 8px;
    background-color: var(--primary-light);
}

.progress-bar {
    background-color: var(--primary);
}

/* Empowerment Features */
.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.tech-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Impact Stories */
.story-card {
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-img img {
    border: 3px solid var(--secondary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .vision-hero {
        padding: 4rem 0;
        text-align: center;
    }
    
    .vision-hero .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .goal-card {
        margin-bottom: 1.5rem;
    }
}