:root {
    --primary-black: #222222;
    --primary-yellow: #F4EBD3;
    --primary-grey: #317b53;
    --light-grey: #f8f9fa;
    --dark-grey: #333333;
}

/* Profile Header Styles */
.profile-header {
    padding: 60px 0 30px;
    background-color: var(--light-grey);
}

.profile-image-container {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

.profile-image {
    width: 100%;
    max-width: 350px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 5px solid white;
}

.profile-contact-box {
    background: var(--primary-black);
    color: white;
    padding: 25px;
    border-radius: 8px;
    margin-top: 25px;
    text-align: left;
}

.profile-contact-box h5 {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.profile-contact-box p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.profile-contact-box i {
    color: var(--primary-yellow);
    width: 20px;
    margin-right: 10px;
    text-align: center;
}

.profile-name {
    color: var(--primary-black);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 2.2rem;
    line-height: 1.2;
}

.profile-title {
    color: var(--primary-yellow);
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 1.4rem;
    position: relative;
    display: inline-block;
}

.profile-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-yellow);
    bottom: -10px;
    left: 0;
}

/* Section Styles */
.profile-section {
    margin-bottom: 50px;
}

.section-heading {
    color: var(--primary-black);
    font-weight: 700;
    margin: 40px 0 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-yellow);
    font-size: 1.6rem;
}

/* Timeline Styles */
.timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: 7px;
    top: 10px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary-yellow);
    z-index: 1;
}

.timeline-item:after {
    content: '';
    position: absolute;
    left: 14px;
    top: 25px;
    bottom: -15px;
    width: 2px;
    background: var(--primary-yellow);
}

.timeline-year {
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.timeline-content h4 {
    color: var(--primary-black);
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content ul {
    padding-left: 20px;
}

.timeline-content li {
    margin-bottom: 8px;
}

/* Role Cards */
.role-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.role-card i {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 15px;
    display: block;
}

.role-card h4 {
    color: var(--primary-black);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Other Executives */
.other-executives {
    padding: 60px 0;
    background-color: var(--light-grey);
}

.section-title {
    color: var(--primary-black);
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary-yellow);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.executive-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.executive-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.executive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.executive-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-yellow);
    margin: 0 auto 20px;
}

.executive-card h5 {
    color: var(--primary-black);
    font-weight: 600;
    margin-bottom: 5px;
}

.executive-card p {
    color: var(--primary-grey);
    margin-bottom: 15px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .profile-name {
        font-size: 1.8rem;
    }
    
    .profile-title {
        font-size: 1.2rem;
    }
    
    .section-heading {
        font-size: 1.4rem;
    }
}

@media (max-width: 767.98px) {
    .profile-header {
        padding: 40px 0 20px;
    }
    
    .profile-name {
        font-size: 1.6rem;
        margin-top: 30px;
    }
    
    .profile-contact-box {
        margin-top: 30px;
    }
    
    .timeline-item {
        padding-left: 30px;
    }
}

/* Breadcrumb Styles */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
}

.breadcrumb-item a {
    color: var(--primary-grey);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-yellow);
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--primary-grey);
}

:root {
    --primary-black: #222222;
    --primary-yellow: #e8dbb8;
    --primary-grey: #898AC4;
    --light-grey: #f8f9fa;
    --dark-grey: #333333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.td,.serv{
    background-color: #F4EBD3;
}
.td:hover{
    background-color: transparent;
    color: #fff;
}
.serv{
    background-color: var(--dark-grey);
    color: var(--primary-yellow);
}
.serv:hover{
    background-color: var(--primary-yellow);
    transition-delay: 0.1s;
}
/* Header Styles */
.top-bar {
    background-color: #317b53;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}

.top-bar a:hover {
    color: var(--primary-yellow);
}

/* Navigation */
.navbar {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 60px;
    width: 80%;
}

.nav-link {
    color: var(--primary-black) !important;
    font-weight: 600;
    padding: 10px 15px !important;
    text-transform: uppercase;
    font-size: 14px;
}

.nav-link:hover, .nav-link:focus {
    color: var(--primary-yellow) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    color: var(--primary-black);
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}


    /* Hero Section Styling */
    .hero-section {
        padding: 100px 0;
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
        color: white;
        position: relative;
    }
    
    .hero-content {
        padding-right: 30px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
    }
    
    .hero-buttons .btn {
        padding: 12px 25px;
        font-weight: 600;
        border-radius: 4px;
    }
    
    /* Slideshow Styling */
    .hero-slideshow {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px --primary-black;
        height: 400px;
    }
    
    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }
    
    .hero-slide.active {
        opacity: 1;
    }
    
    .slide-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0,0,0,0.6);
        padding: 20px;
        color: white;
    }
    
    .slide-caption h3 {
        margin: 0;
        font-size: 1.4rem;
    }
    
    .slide-controls {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        padding: 0 15px;
        z-index: 10;
    }
    
    .slide-controls button {
        background: rgba(232, 219, 184, 0.8);
        color: var(--primary-black);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .slide-controls button:hover {
        background: var(--primary-yellow);
    }
    
    .slide-indicators {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 10px;
        z-index: 10;
    }
    
    .slide-indicators .indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255,255,255,0.5);
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .slide-indicators .indicator.active {
        background: var(--primary-yellow);
        transform: scale(1.2);
    }
    
    @media (max-width: 991.98px) {
        .hero-section {
            padding: 80px 0;
        }
        .hero-content {
            padding-right: 0;
            margin-bottom: 40px;
            text-align: center;
        }
        .hero-buttons {
            justify-content: center;
        }
        .hero-title {
            font-size: 2.2rem;
        }
    }
    
    @media (max-width: 767.98px) {
        .hero-title {
            font-size: 1.8rem;
        }
        .hero-subtitle {
            font-size: 1rem;
        }
        .hero-slideshow {
            height: 300px;
        }
    }


/* Quick Links */
.quick-links {
    background-color: var(--primary-black);
    padding: 20px 0;
    color: white;
}

.quick-link-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.quick-link-icon {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Services Section */
.services-section {
    padding: 60px 0;
    background-color: var(--light-grey);
}

.section-title {
    color: var(--primary-black);
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-yellow);
    bottom: -10px;
    left: 0;
}

.service-card {
    background-color: white;
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.service-title {
    color: var(--primary-black);
    font-weight: 700;
    margin-bottom: 15px;
}

/* News Section */
.news-section {
    padding: 60px 0;
}

.news-card {
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.news-date {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    padding: 5px 15px;
    font-weight: 600;
    position: absolute;
    top: 15px;
    left: 15px;
}

.news-title {
    color: var(--primary-black);
    font-weight: 700;
}

.news-title a {
    color: inherit;
    text-decoration: none;
}

.news-title a:hover {
    color: var(--primary-yellow);
}

/* Footer */
.footer {
    background-color: var(--primary-black);
    color: white;
    padding: 60px 0 0;
}

.footer-title {
    color: var(--primary-yellow);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact-icon {
    color: var(--primary-yellow);
    margin-right: 15px;
    width: 20px;
}

.social-icons a {
    color: white;
    background-color: #317b53;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.social-icons a:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

.copyright {
    background-color: var(--dark-grey);
    padding: 20px 0;
    margin-top: 30px;
}
.serv{
    background-color: var(--dark-grey);
    color: var(--primary-yellow);
}
.serv:hover{
    background-color: var(--primary-yellow);
    transition-delay: 0.1s;
}