/*
* ADR Resolution Center - Main Stylesheet
* This stylesheet contains all custom styles for the website
*/

/* ===================
   1. Root Variables
   =================== */
:root {
    --primary: #179cd5;
    --primary-dark: #1077b4;
    --secondary: #334b7f;
    --accent: #f8f9fa;
    --text-dark: #212529;
    --text-light: #f8f9fa;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --section-padding: 5rem 0;
}

/* ===================
   2. General Styles
   =================== */
body {
    font-family: "Roboto", sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary);
    line-height: 1.3;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.section-padding {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    position: relative;
    margin-bottom: 1.5rem;
}

.section-header h2:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.text-primary {
    color: var(--primary) !important;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.3rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--primary);
    color: white;
}

.btn-outline-secondary {
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    background-color: var(--secondary);
    color: white;
}

img {
    max-width: 100%;
}

/* ===================
   3. Header Styles
   =================== */
.top-bar {
    background-color: var(--secondary);
    color: white;
    font-size: 0.9rem;
}

.top-bar a {
    color: white;
}

.social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-left: 5px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    color: white;
}

/* Navbar Styles */
.navbar {
    background-color: #334b7f;
    /* Dark blue color from the top bar */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #334b7f;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Info in Navbar */
.contact-info {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.contact-info i {
    margin-right: 5px;
    color: rgba(255, 255, 255, 0.7);
}

/* Navbar Links */
.navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.navbar .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar .nav-link:hover::after {
    transform: scaleX(1);
}

/* Navbar Brand */
.navbar-brand {
    color: #fff !important;
    font-weight: 700;
    font-size: 1.4rem;
}

/* Mobile Menu */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #334b7f;
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 4px;
    }

    .contact-info {
        display: none;
    }
}

/* ===================
   4. Hero Section
   =================== */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background-color: #000;
}



.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-img {
    width: 100%;
    height: 100vh; /* full viewport */
    object-fit: cover; /* fill & crop */
    object-position: top; /* keep top visible */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Animation for text elements */
.hero-title,
.hero-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-title.active,
.hero-text.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow);
}

/* ===================
   5. Services Section
   =================== */
.service-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: rgba(23, 156, 213, 0.1);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ===================
   6. Why Choose Us Section
   =================== */
.why-choose-image img {
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow);
}

.benefit-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    flex: 0 0 50px;
    font-size: 1.25rem;
    color: var(--primary);
}

.benefit-content {
    flex: 1;
}

.benefit-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefit-content p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ===================
   7. Panel Members Section
   =================== */
.member-card {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
}

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

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    transition: var(--transition);
}

.member-card:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 1.5rem;
}

.member-info h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.member-position {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.member-bio {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.member-contact {
    display: flex;
    gap: 10px;
}

.member-contact a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
}

.member-contact a:hover {
    background-color: var(--primary);
    color: white;
}

/* ===================
   8. Testimonials Section
   =================== */
.testimonial-item {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 2rem;
}

.testimonial-text:before,
.testimonial-text:after {
    content: '"';
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    line-height: 1;
}

.testimonial-text:before {
    top: -10px;
    left: 0;
}

.testimonial-text:after {
    bottom: -30px;
    right: 0;
}

.testimonial-name {
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.testimonial-position {
    color: var (--text-muted);
    font-size: 0.9rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* ===================
   9. Blog Section
   =================== */
.blog-card {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
}

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

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.blog-title {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* ===================
   10. CTA Section
   =================== */
.cta {
    background-color: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNDQwIDMyMCIgd2lkdGg9IjE0NDAiIGhlaWdodD0iMzIwIj48cGF0aCBmaWxsPSIjZmZmZmZmIiBmaWxsLW9wYWNpdHk9IjAuMSIgZD0iTTAsOTZMNDAsODUuM0M4MCw3NSwxNjAsNTMsMjQwLDQyLjdDMzIwLDMyLDQwMCwzMiw0ODAsMzZDNTYwLDQwLDY0MCw0OCw3MjAsNjRDODAwLDgwLDg4MCwxMDcsOTYwLDExMkMxMDQwLDExNywxMTIwLDEwMSwxMjAwLDk2QzEyODAsOTEsMTM2MCw5NiwxNDAwLDk2TDE0NDAsMTAxTDE0NDAsMzIwTDAsMzIwWiI+PC9wYXRoPjwvc3ZnPg==");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.2;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-outline-light:hover {
    color: var(--primary);
}

/* ===================
   11. Footer
   =================== */
.footer {
    background-color: #1f2937;
    color: #f3f4f6;
}

.footer-top {
    padding: 4rem 0;
}

.footer h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.footer-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary);
    color: white;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: #d1d5db;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary);
}

.footer-bottom {
    background-color: #111827;
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #d1d5db;
}

.footer-bottom a:hover {
    color: var(--primary);
}

/* ===================
   12. Back to Top Button
   =================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary);
    color: white;
}

/* ===================
   13. Page Header
   =================== */
.page-header {
    background-color: var(--primary);
    color: white;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.page-header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNDQwIDMyMCIgd2lkdGg9IjE0NDAiIGhlaWdodD0iMzIwIj48cGF0aCBmaWxsPSIjZmZmZmZmIiBmaWxsLW9wYWNpdHk9IjAuMSIgZD0iTTAsOTZMNDAsODUuM0M4MCw3NSwxNjAsNTMsMjQwLDQyLjdDMzIwLDMyLDQwMCwzMiw0ODAsMzZDNTYwLDQwLDY0MCw0OCw3MjAsNjRDODAwLDgwLDg4MCwxMDcsOTYwLDExMkMxMDQwLDExNywxMTIwLDEwMSwxMjAwLDk2QzEyODAsOTEsMTM2MCw5NiwxNDAwLDk2TDE0NDAsMTAxTDE0NDAsMzIwTDAsMzIwWiI+PC9wYXRoPjwvc3ZnPg==");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.2;
}

.page-header h1 {
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    position: relative;
    z-index: 1;
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item a {
    color: white;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

/* ===================
   14. About Page Styles
   =================== */
.about-image {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-badge .years {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.mission-vision h4 {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.value-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.value-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: rgba(23, 156, 213, 0.1);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline:before {
    content: "";
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #e5e7eb;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: calc(50% + 30px);
    clear: both;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item.right {
    padding-left: 0;
    padding-right: calc(50% + 30px);
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary);
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(23, 156, 213, 0.2);
}

.timeline-content {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-content:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    top: 10px;
    left: -10px;
    transform: rotate(45deg);
}

.timeline-item.right .timeline-content:before {
    left: auto;
    right: -10px;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.team-card {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
}

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

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
}

.team-info h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.team-position {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-bio {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.team-social {
    display: flex;
    gap: 10px;
}

.team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
}

.team-social a:hover {
    background-color: var(--primary);
    color: white;
}

.stats-container {
    background-color: var(--primary);
    padding: 3rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: white;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-text {
    text-transform: uppercase;
    font-weight: 500;
}

.partner-logo {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

/* ===================
   15. Services Page Styles
   =================== */
.services-nav {
    border-bottom: 1px solid #e5e7eb;
}

.services-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.services-tabs::-webkit-scrollbar {
    display: none;
}

.services-tabs .nav-link {
    white-space: nowrap;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    margin: 0 0.5rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.services-tabs .nav-link.active,
.services-tabs .nav-link:hover {
    background-color: var(--primary);
    color: white;
}

.service-detail {
    scroll-margin-top: 100px;
}

.service-content .service-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 2rem;
    background-color: rgba(23, 156, 213, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: inline-block;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.feature-list li i {
    color: var(--primary);
    margin-right: 10px;
    margin-top: 5px;
}

.industry-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.industry-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.industry-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.industry-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.process-timeline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50px;
    height: 100%;
    width: 2px;
    background-color: #e5e7eb;
}

.process-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 2rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    position: absolute;
    top: 0;
    left: 25px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
    box-shadow: 0 0 0 5px rgba(23, 156, 213, 0.2);
}

.process-content {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.process-content h4 {
    margin-bottom: 0.5rem;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    background-color: white;
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 0.5rem !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(23, 156, 213, 0.25);
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: var(--transition);
}

.accordion-body {
    padding: 1.5rem;
    background-color: white;
    border-radius: 0 0 0.5rem 0.5rem;
}

/* ===================
   Organization Structure Styles
   =================== */
.org-chart {
    margin-top: 3rem;
}

.org-level {
    margin-bottom: 3rem;
    position: relative;
}

.org-line {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 2px;
    height: 50px;
    background-color: var(--border-color);
    transform: translateX(-50%);
}

.org-box {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.org-position {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.org-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.org-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.org-contact a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: #f0f0f0;
    border-radius: 50%;
    color: var(--text-dark);
    margin: 0 5px;
    transition: var(--transition);
}

.org-contact a:hover {
    background-color: var(--primary);
    color: white;
}

/* ===================
   Departments Styles
   =================== */
.department-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

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

.department-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: rgba(23, 156, 213, 0.1);
}

.department-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.department-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.team-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-list li {
    font-size: 0.9rem;
    color: var (--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.team-list li i {
    color: var(--primary);
    margin-right: 0.5rem;
}

/* ===================
   Animations and Effects
   =================== */

/* Animate on Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Floating Elements */
.floating {
    position: relative;
    will-change: transform;
}

/* Bubbles Animation */
.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
    animation: bubble 15s linear infinite;
}

.bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-duration: 8s;
}

.bubble:nth-child(2) {
    width: 40px;
    height: 40px;
    left: 20%;
    animation-duration: 5s;
    animation-delay: 1s;
}

.bubble:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 35%;
    animation-duration: 7s;
    animation-delay: 2s;
}

.bubble:nth-child(4) {
    width: 30px;
    height: 30px;
    left: 50%;
    animation-duration: 11s;
    animation-delay: 0s;
}

.bubble:nth-child(5) {
    width: 50px;
    height: 50px;
    left: 55%;
    animation-duration: 6s;
    animation-delay: 1s;
}

.bubble:nth-child(6) {
    width: 25px;
    height: 25px;
    left: 65%;
    animation-duration: 7s;
    animation-delay: 3s;
}

.bubble:nth-child(7) {
    width: 45px;
    height: 45px;
    left: 75%;
    animation-duration: 8s;
    animation-delay: 2s;
}

.bubble:nth-child(8) {
    width: 35px;
    height: 35px;
    left: 80%;
    animation-duration: 6s;
    animation-delay: 1s;
}

.bubble:nth-child(9) {
    width: 55px;
    height: 55px;
    left: 70%;
    animation-duration: 7s;
    animation-delay: 0.5s;
}

.bubble:nth-child(10) {
    width: 40px;
    height: 40px;
    left: 85%;
    animation-duration: 9s;
    animation-delay: 3s;
}

@keyframes bubble {
    0% {
        bottom: -50px;
        transform: translateX(0);
    }

    50% {
        transform: translateX(100px);
    }

    100% {
        bottom: 100%;
        transform: translateX(-200px);
    }
}

/* ===================
   16. Responsive Styles
   =================== */
@media (max-width: 992px) {
    .section-padding {
        padding: 4rem 0;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .timeline:before {
        left: 30px;
    }

    .timeline-item {
        padding-left: 80px;
        padding-right: 0;
    }

    .timeline-item.right {
        padding-left: 80px;
        padding-right: 0;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-content:before {
        left: -10px;
    }

    .timeline-item.right .timeline-content:before {
        left: -10px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .service-card,
    .member-card,
    .blog-card,
    .value-card,
    .team-card,
    .industry-card {
        margin-bottom: 2rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .stats-container {
        padding: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 2.5rem 0;
    }

    .hero {
        padding: 2.5rem 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-buttons .btn + .btn {
        margin-left: 0;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .cta-buttons .btn + .btn {
        margin-left: 0;
    }

    .back-to-top {
        width: 35px;
        height: 35px;
        line-height: 35px;
        right: 15px;
        bottom: 15px;
    }
}

/* Partners Carousel */
.partners-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.partners-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin: 0 1rem;
    min-width: 200px;
}

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

.partner-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Additional CSS for founders page */
.founder-card {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

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

.founder-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.founder-card:hover .founder-image img {
    transform: scale(1.05);
}

.founder-info {
    padding: 2rem;
}

.founder-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.founder-position {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.founder-bio {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.founder-quote {
    font-style: italic;
    border-left: 3px solid var(--primary);
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.founder-social {
    display: flex;
    gap: 10px;
}

.founder-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.founder-social a:hover {
    background-color: var(--primary);
    color: white;
}

.founder-timeline {
    position: relative;
    padding-left: 30px;
    margin-top: 1.5rem;
    border-left: 2px solid #e5e7eb;
}

.timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
}

.timeline-item:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary);
    left: -36px;
    top: 5px;
}

.timeline-year {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.timeline-content {
    font-size: 0.9rem;
}

/* Additional blog post specific styles */
.post-header {
    text-align: center;
    margin-bottom: 2rem;
}

.post-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.post-meta {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.post-meta span {
    margin-right: 1rem;
}

.post-meta span:last-child {
    margin-right: 0;
}

.post-category {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    background-color: rgba(23, 156, 213, 0.1);
    color: var(--primary);
    margin-bottom: 1rem;
}

.post-featured-image {
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.post-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content img {
    max-width: 100%;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.post-content blockquote {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary);
    margin: 2rem 0;
    font-style: italic;
}

.post-content blockquote p:last-child {
    margin-bottom: 0;
}

.post-tags {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.post-tags span {
    font-weight: 700;
    margin-right: 1rem;
}

.post-tags a {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background-color: #f0f0f0;
    border-radius: 2rem;
    font-size: 0.8rem;
    color: var(--text-dark);
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background-color: var(--primary);
    color: white;
}

.post-navigation {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    max-width: 48%;
}

.post-navigation .nav-previous a,
.post-navigation .nav-next a {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
    color: var(--primary);
}

.post-navigation .nav-previous a i {
    margin-right: 1rem;
}

.post-navigation .nav-next a {
    text-align: right;
    justify-content: flex-end;
}

.post-navigation .nav-next a i {
    margin-left: 1rem;
}

.post-navigation .nav-title {
    font-size: 0.9rem;
    display: block;
    color: var(--text-muted);
}

.post-comments {
    margin-top: 3rem;
}

.comments-title {
    margin-bottom: 2rem;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.comment-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
}

.comment-author .author-name {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.comment-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.comment-content {
    margin-bottom: 1rem;
}

.comment-reply {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

.comment-form {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.comment-form h3 {
    margin-bottom: 1.5rem;
}

.author-bio {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 3rem;
    display: flex;
    align-items: flex-start;
}

.author-avatar {
    flex: 0 0 100px;
    margin-right: 1.5rem;
}

.author-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.author-info h4 {
    margin-bottom: 0.5rem;
}

.author-info p {
    margin-bottom: 1rem;
}

.author-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: #f0f0f0;
    border-radius: 50%;
    margin-right: 0.5rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.author-social a:hover {
    background-color: var(--primary);
    color: white;
}


/* Additional resources page styles */
.resource-card {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

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

.resource-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: rgba(23, 156, 213, 0.1);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.resource-card h4 {
    margin-bottom: 1rem;
}

.resource-format {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    background-color: #f0f0f0;
    color: var(--text-dark);
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.resource-format.pdf {
    background-color: #f44336;
    color: white;
}

.resource-format.doc {
    background-color: #2196f3;
    color: white;
}

.resource-format.xls {
    background-color: #4caf50;
    color: white;
}

.resource-format.ppt {
    background-color: #ff9800;
    color: white;
}

.resource-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.resource-content {
    padding: 1.5rem;
}

.nav-pills .nav-link {
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
}

.nav-pills .nav-link.active,
.nav-pills .nav-link:hover {
    background-color: var(--primary);
    color: white;
}

.tab-content {
    padding-top: 2rem;
}

.form-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.form-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: rgba(23, 156, 213, 0.1);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.form-header h4 {
    margin-bottom: 0;
}

.document-list {
    list-style: none;
    padding-left: 0;
}

.document-item {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.document-item:last-child {
    border-bottom: none;
}

.document-item:hover {
    background-color: #f8f9fa;
}

.document-icon {
    margin-right: 1rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.document-info {
    flex: 1;
}

.document-title {
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.document-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.document-download {
    margin-left: 1rem;
}

.panel-application {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.panel-application h3 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.panel-application h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.required-docs {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.required-docs h5 {
    margin-bottom: 1rem;
}

.required-docs ul {
    padding-left: 1.5rem;
    margin-bottom: 0;
}

.required-docs li {
    margin-bottom: 0.5rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.guideline-card {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

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

.guideline-icon {
    text-align: center;
    padding: 2rem 0;
    background-color: var(--primary);
    color: white;
}

.guideline-icon i {
    font-size: 3rem;
}

.guideline-content {
    padding: 1.5rem;
}

/* Additional contact page styles */
.contact-info-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    height: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: rgba(23, 156, 213, 0.1);
    color: #179cd5;
    border-radius: 50%;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.contact-info-card h4 {
    margin-bottom: 1rem;
}

.contact-info-card i {
    color: #179cd5;
    margin-right: 8px;
}

.contact-form {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-form h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.form-control {
    padding: 0.75rem 1.25rem;
    border-radius: 0.3rem;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.office-locations {
    margin-top: 4rem;
}

.location-card {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

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

.location-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.location-card:hover .location-image img {
    transform: scale(1.05);
}

.location-info {
    padding: 1.5rem;
}

.location-info h4 {
    margin-bottom: 1rem;
}

.location-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.location-info p i {
    margin-right: 10px;
    margin-top: 5px;
    color: var(--primary);
}

.location-buttons {
    margin-top: 1.5rem;
}

.map-container {
    height: 400px;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* Additional blog page specific styles */
.blog-category-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    background-color: rgba(23, 156, 213, 0.1);
    color: var(--primary);
    margin-bottom: 1rem;
}

.blog-list .blog-card {
    margin-bottom: 2rem;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h4 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.sidebar-widget h4:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
    bottom: 0;
    left: 0;
}

.widget-categories ul {
    list-style: none;
    padding-left: 0;
}

.widget-categories ul li {
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.75rem;
}

.widget-categories ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.widget-categories ul li a {
    display: flex;
    justify-content: space-between;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.widget-categories ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.widget-categories ul li a span {
    background-color: #f0f0f0;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    font-size: 0.8rem;
}

.recent-post {
    display: flex;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-image {
    flex: 0 0 80px;
    margin-right: 15px;
}

.recent-post-image img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.25rem;
}

.recent-post-info h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.recent-post-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background-color: #f0f0f0;
    border-radius: 2rem;
    font-size: 0.8rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.tag-cloud a:hover {
    background-color: var(--primary);
    color: white;
}

.blog-search form {
    position: relative;
}

.blog-search input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 1rem;
    border: 1px solid #eee;
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.blog-search input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(23, 156, 213, 0.25);
}

.blog-search button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
}

.blog-pagination .page-link {
    color: var(--text-dark);
    border: none;
    margin: 0 5px;
    width: 40px;
    height: 40px;
    line-height: 26px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.blog-pagination .page-link:hover {
    background-color: #eee;
    color: var(--primary);
}

.blog-pagination .page-item.active .page-link {
    background-color: var(--primary);
    color: white;
}

.blog-pagination .page-item.disabled .page-link {
    color: #ccc;
    pointer-events: none;
}
.contact-office-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-office-btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

.phone-icon {
    animation: pop 1.5s infinite ease-in-out;
    transform-origin: center;
}

@keyframes pop {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.council-card {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.council-image img {
    border: 3px solid #007bff;
}

.council-social a {
    color: #007bff;
    font-size: 18px;
}

.council-social a:hover {
    color: #0056b3;
}

/* Council Card Hover */
.council-card {
    transition: all 0.3s ease;
}
.council-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Profile Image */
.profile-img-lg {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #334b7f;
}

/* Connector Line Between Hierarchies */
.connector-line-vertical {
    background: linear-gradient(to bottom, #334b7f, transparent);
    width: 2px;
    height: 50px;
    margin: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .connector-line-vertical {
        display: none;
    }
}

/* Tree Container */
.tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
}

/* Tree Level */
.tree-level {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping if there are too many members */
    gap: 2rem; /* Space between nodes */
}

/* Tree Node */
.tree-node {
    position: relative;
    text-align: center;
}

/* Connector Lines */
.tree-level::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #334b7f;
    z-index: -1;
}

.tree-node::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    width: 2px;
    height: 20px;
    background-color: #334b7f;
    transform: translateX(-50%);
    z-index: -1;
}

/* Profile Image */
.profile-img-lg {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #334b7f;
}

/* Council Card Hover */
.council-card {
    transition: all 0.3s ease;
}

.council-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tree-level {
        flex-direction: column;
        gap: 1rem;
    }

    .tree-level::before {
        display: none;
    }

    .tree-node::before {
        display: none;
    }
}

/* Left and Right Alignment */
.tree-left {
    align-self: flex-start;
}

.tree-right {
    align-self: flex-end;
}

@media (max-width: 768px) {
    .tree-left,
    .tree-right {
        align-self: center;
    }
}

/* Scrollable Tree Wrapper */
.tree-wrapper {
    overflow-x: auto;
    overflow-y: auto;
    max-height: 500px; /* Set a maximum height for vertical scrolling */
    white-space: nowrap;
    padding-bottom: 1rem;
    border: 1px solid #eaeaea; /* Optional: Add a border for better visibility */
}

.tree {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
}

/* Tree Level */
.tree-level {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

/* Tree Node */
.tree-node {
    position: relative;
    text-align: center;
    white-space: normal; /* Allow text wrapping */
}

/* Profile Image */
.profile-img-lg {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #334b7f;
}

/* Connector Lines */
.connector-line-vertical {
    background: linear-gradient(to bottom, #334b7f, transparent);
    width: 2px;
    height: 50px;
    margin: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tree-level {
        flex-direction: column;
        gap: 1rem;
    }

    .connector-line-vertical {
        display: none;
    }
}

/* Tree Wrapper */
.tree-wrapper {
    overflow-y: auto; /* Enable vertical scrolling */
    max-height: 600px; /* Set a maximum height for vertical scrolling */
    padding-bottom: 1rem;
}

/* Tree Container */
.tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
}

/* Tree Level */
.tree-level {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Limit to 6 members per row */
    gap: 2rem;
    justify-content: center;
    position: relative;
}

/* Tree Node */
.tree-node {
    position: relative;
    text-align: center;
}

/* Profile Image */
.profile-img-lg {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #334b7f;
}

/* Council Card Hover */
.council-card {
    transition: all 0.3s ease;
}

.council-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tree-level {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Adjust for smaller screens */
    }
}

/* Tree Level: Horizontal Alignment for Third Level */
.tree-level.third-level {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping if there are too many members */
    gap: 2rem; /* Space between nodes */
}

/* Tree Level: Horizontal Alignment for All Levels */
.tree-level {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping if there are too many members */
    gap: 2rem; /* Space between nodes */
}

.member-image img {
    width: 100%; /* Full width of the container */
    height: 200px; /* Fixed height */
    object-fit: cover; /* Ensures the image covers the area without distortion */
    border-radius: 8px; /* Optional: Adds rounded corners */
}

/*uor leaders*/
    .hover-shadow:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
        transition: 0.3s;
    }
    /*End uor leaders*/


    .handshake-scale1 {
  position: relative;
  display: inline-block;
  font-size: 3em;
  width: 1em;
  height: 1em;
  text-align: center;
}
.handshake-scale1::before {
  font-family: "Font Awesome 5 Free";
  content: "\f2b5"; /* handshake */
  font-weight: 900;
  display: block;
  font-size: 1em;
  line-height: 1em;
}
.handshake-scale1::after {
  font-family: "Font Awesome 5 Free";
  content: "\f24e"; /* balance scale */
  font-weight: 900;
  position: absolute;
  top: -0.8em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7em;
}


    .handshake-scale1 {
  position: relative;
  display: inline-block;
  font-size: 3em;
  width: 1em;
  height: 1em;
  text-align: center;
}
.handshake-scale1::before {
  font-family: "Font Awesome 5 Free";
  content: "\f2b5"; /* handshake */
  font-weight: 900;
  display: block;
  font-size: 1em;
  line-height: 1em;
}
.handshake-scale1::after {
  font-family: "Font Awesome 5 Free";
  content: "\f24e"; /* balance scale */
  font-weight: 900;
  position: absolute;
  top: -0.8em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7em;
}



/* Responsive adjustments */
/* Floating Actions Container */
.floating-actions {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.floating-action {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* CTA Icon Styles */
.cta-icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

/* WhatsApp Specific Styles */
.whatsapp-cta .cta-link {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-cta .cta-link:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    transform: scale(1.1);
}

.whatsapp-cta .pulse-ring {
    border-color: #25D366;
}

/* Customer Care Specific Styles */
.customer-care-cta .cta-link {
    background: linear-gradient(135deg, #007bff, #0056b3);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.customer-care-cta .cta-link:hover {
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
    transform: scale(1.1);
}

.customer-care-cta .pulse-ring {
    border-color: #007bff;
}

/* Pulse Ring Animation */
.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0;
}

.pulse-ring:nth-child(2) {
    animation-delay: 0.5s;
}

.pulse-ring:nth-child(3) {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Tooltip */
.cta-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.cta-tooltip span {
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.tooltip-arrow {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid rgba(255, 255, 255, 0.95);
}

.floating-action:hover .cta-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-actions {
        right: 20px;
        bottom: 20px;
        gap: 12px;
    }

    .cta-icon {
        width: 50px;
        height: 50px;
    }

    .cta-link {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .cta-tooltip {
        right: 65px;
        padding: 8px 12px;
    }

    .cta-tooltip span {
        font-size: 12px;
    }

    .floating-action:hover .cta-tooltip {
        right: 55px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .floating-actions {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }

    .cta-icon {
        width: 45px;
        height: 45px;
    }

    .cta-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}




.featured-panel-members {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.member-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.175) !important;
}

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

.member-image-container {
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
}

.member-img {
    transition: transform 0.5s ease;
}

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

.member-placeholder {
    height: 250px;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.object-fit-cover {
    object-fit: cover;
}

.member-info {
    min-height: 200px;
}

.member-actions .btn {
    transition: all 0.2s ease;
}

.member-actions .btn:hover {
    transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .member-image-container {
        height: 200px;
    }

    .member-placeholder {
        height: 200px;
    }

    .display-5 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .member-image-container {
        height: 250px;
    }

    .member-placeholder {
        height: 250px;
    }
}

/* Animation for modal */
.modal.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

