/* about-us.css - specific styles for the About Us page */

/* Banner Styles */
.about-banner {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 550px;
    overflow: hidden;
}

.about-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* About Introduction Section Styles */
.about-intro-section {
    padding: 4rem 0 0 0;
    background-color: #ffffff;
}

.about-text-container {
    max-width: 1000px;
    margin: 0 auto 1.5rem;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    text-align: center;
    margin-bottom: 1.5rem;
}

.about-text-expanded {
    display: none;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    animation: fadeIn 0.5s ease;
    margin-bottom: 1.5rem;
}

.about-text-expanded p {
    margin-bottom: 1rem;
}

.button-container {
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.read-more-btn {
    padding: 0.6rem 1.5rem;
    background-color: #e0e0e0;
    color: #333;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}

.read-more-btn:hover {
    background-color: #d0d0d0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-intro-section {
        padding: 3rem 0;
    }
    
    .about-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .about-text-expanded {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .about-intro-section {
        padding: 2.5rem 0;
    }
    
    .about-text, 
    .about-text-expanded {
        font-size: 0.95rem;
    }
    
    .read-more-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* University at a Glance Section Styles */
.glance-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.glance-columns {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.glance-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.glance-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.glance-divider {
    position: relative;
    width: 100px;
    height: 2px;
    margin: 0 auto 1.5rem;
}

.who-divider {
    background-color: #FFC107; /* Gold/Yellow */
}

.what-divider {
    background-color: #FF5252; /* Red */
}

.how-divider {
    background-color: #1E3C72; /* Primary Blue */
}

.divider-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border: 2px solid;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.who-divider .divider-dot {
    border-color: #FFC107;
}

.what-divider .divider-dot {
    border-color: #FF5252;
}

.how-divider .divider-dot {
    border-color: #1E3C72;
}

.glance-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 1rem;
}

.glance-expanded {
    display: none;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
    animation: fadeIn 0.5s ease;
}

.glance-expanded p {
    margin-bottom: 1rem;
}

.glance-expanded ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.glance-expanded li {
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .glance-columns {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .glance-columns {
        flex-direction: column;
        gap: 40px;
    }
    
    .glance-column {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .glance-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .glance-section {
        padding: 3rem 0;
    }
    
    .glance-title {
        font-size: 1.3rem;
    }
    
    .glance-text, .glance-expanded {
        font-size: 0.9rem;
    }
}

.glance-expanded-full {
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
    animation: fadeIn 0.5s ease;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.glance-expanded-full p {
    margin-bottom: 1rem;
}

.glance-expanded-full ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.glance-expanded-full li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .glance-expanded-full {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .glance-expanded-full {
        font-size: 0.9rem;
    }
}

/* Director's Message Section Styles */
.director-section {
    padding: 4rem 0;
    background-color: #f0f2f5;
}

.director-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.director-message {
    flex: 3; /* Larger proportion for the message */
}

.director-photo {
    flex: 2; /* Smaller proportion for the photo */
}

.director-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.director-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.director-info {
    margin-bottom: 1.5rem;
}

.director-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1E3C72;
    margin-bottom: 0.25rem;
}

.director-position {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.director-text, 
.director-text-expanded {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

.director-text p, 
.director-text-expanded p {
    margin-bottom: 1rem;
}

.director-text-expanded {
    display: none;
    animation: fadeIn 0.5s ease;
}

.director-button {
    margin-top: 1.5rem;
    text-align: left;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .director-container {
        gap: 30px;
    }
    
    .director-title {
        font-size: 1.8rem;
    }
    
    .director-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .director-container {
        flex-direction: column-reverse; /* Photo first, then message on mobile */
    }
    
    .director-photo {
        margin-bottom: 2rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .director-button {
        text-align: center;
    }
    
    .director-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .director-section {
        padding: 3rem 0;
    }
    
    .director-title {
        font-size: 1.5rem;
    }
    
    .director-text, 
    .director-text-expanded {
        font-size: 0.95rem;
    }
}

/* Rector's Message Section Styles */
.rector-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.rector-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.rector-message {
    flex: 3; /* Larger proportion for the message */
}

.rector-photo {
    flex: 2; /* Smaller proportion for the photo */
}

.rector-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.rector-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.rector-info {
    margin-bottom: 1.5rem;
}

.rector-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1E3C72;
    margin-bottom: 0.25rem;
}

.rector-position {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.rector-text, 
.rector-text-expanded {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

.rector-text p, 
.rector-text-expanded p {
    margin-bottom: 1rem;
}

.rector-text-expanded {
    display: none;
    animation: fadeIn 0.5s ease;
}

.rector-button {
    margin-top: 1.5rem;
    text-align: left;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .rector-container {
        gap: 30px;
    }
    
    .rector-title {
        font-size: 1.8rem;
    }
    
    .rector-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .rector-container {
        flex-direction: column; /* Photo first, then message on mobile */
    }
    
    .rector-photo {
        margin-bottom: 2rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .rector-button {
        text-align: center;
    }
    
    .rector-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .rector-section {
        padding: 3rem 0;
    }
    
    .rector-title {
        font-size: 1.5rem;
    }
    
    .rector-text, 
    .rector-text-expanded {
        font-size: 0.95rem;
    }
}

/* Advisors to Chairman Section Styles */
.advisors-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.advisors-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 3rem;
    padding: 0 5%; /* Add margin on both sides as shown in the image */
}

.advisor-box {
    flex: 1;
    max-width: 300px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advisor-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.advisor-photo {
    padding: 10px;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.advisor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.advisor-info {
    padding: 1.5rem;
    text-align: center;
}

.advisor-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.advisor-position {
    font-size: 0.95rem;
    color: #1E3C72;
    margin-bottom: 0.5rem;
}

.advisor-credentials, 
.advisor-institution {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .advisors-container {
        padding: 0 2%;
    }
    
    .advisor-box {
        max-width: 280px;
    }
    
    .advisor-photo {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .advisors-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }
    
    .advisor-box {
        max-width: 300px;
    }
}

@media (max-width: 580px) {
    .advisors-container {
        flex-direction: column;
        align-items: center;
    }
    
    .advisor-box {
        max-width: 320px;
        width: 100%;
    }
    
    .advisor-photo {
        height: 220px;
    }
}

/* Team SIP Section Styles - New dedicated styles for the team */
.team-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 3rem;
    padding: 0 5%;
}

.team-box {
    flex: 1;
    max-width: 300px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.team-photo {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.team-position {
    font-size: 0.95rem;
    color: #1E3C72;
    margin-bottom: 0.5rem;
}

.team-credentials {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

/* Responsive adjustments for Team Section */
@media (max-width: 992px) {
    .team-container {
        padding: 0 2%;
    }
    
    .team-box {
        max-width: 280px;
    }
    
    .team-photo {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .team-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .team-box {
        max-width: 280px;
        width: 100%;
    }
    
    .team-photo {
        height: 200px;
    }
}

@media (max-width: 580px) {
    .team-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .team-box {
        max-width: 100%;
        width: 90%;
        margin: 0 auto;
    }
    
    .team-photo {
        height: 280px;
        width: 100%;
    }
    
    .team-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .team-info {
        padding: 1.25rem;
    }
    
    .team-name {
        font-size: 1.1rem;
    }
    
    .team-position {
        font-size: 0.9rem;
    }
    
    .team-credentials {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 3rem 0;
    }
    
    .team-box {
        width: 95%;
    }
    
    .team-photo {
        height: 250px;
    }
}

/* Board of Governors Members Section Styles */
.governors-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.governors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.governor-member {
    padding: 1.5rem 0.5rem;
    text-align: center;
    position: relative;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Remove the continuous borders */
    border: none;
}

/* Add borders only between cells */
.governor-member:not(:nth-child(5n)) {
    border-right: 1px solid #e0e0e0;
}

.governor-member:not(:nth-child(5n+1)) {
    border-left: 1px solid #e0e0e0;
}

/* Add row spacing */
.governor-member:nth-child(n+6) {
    margin-top: 15px;
}

.member-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.member-position {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.member-institution {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.3;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .governors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Update border rules for 3-column layout */
    .governor-member:not(:nth-child(5n)) {
        border-right: none;
    }
    
    .governor-member:not(:nth-child(5n+1)) {
        border-left: none;
    }
    
    .governor-member:not(:nth-child(3n)) {
        border-right: 1px solid #e0e0e0;
    }
    
    .governor-member:not(:nth-child(3n+1)) {
        border-left: 1px solid #e0e0e0;
    }
    
    /* Reset row spacing */
    .governor-member:nth-child(n+6) {
        margin-top: 0;
    }
    
    /* Add new row spacing */
    .governor-member:nth-child(n+4) {
        margin-top: 15px;
    }
    
    .governor-member:nth-child(n+7) {
        margin-top: 15px;
    }
    
    .governor-member:nth-child(n+10) {
        margin-top: 15px;
    }
    
    .governor-member {
        min-height: 120px;
    }
}

@media (max-width: 768px) {
    .governors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Update border rules for 2-column layout */
    .governor-member:not(:nth-child(3n)),
    .governor-member:not(:nth-child(5n)) {
        border-right: none;
    }
    
    .governor-member:not(:nth-child(3n+1)),
    .governor-member:not(:nth-child(5n+1)) {
        border-left: none;
    }
    
    .governor-member:nth-child(odd) {
        border-right: 1px solid #e0e0e0;
    }
    
    .governor-member:nth-child(even) {
        border-left: 1px solid #e0e0e0;
    }
    
    /* Reset row spacing */
    .governor-member:nth-child(n+4),
    .governor-member:nth-child(n+7),
    .governor-member:nth-child(n+10) {
        margin-top: 0;
    }
    
    /* Add new row spacing */
    .governor-member:nth-child(n+3) {
        margin-top: 15px;
    }
    
    .member-name {
        font-size: 0.95rem;
    }
    
    .member-position, 
    .member-institution {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .governors-grid {
        grid-template-columns: 1fr;
    }
    
    /* Update border rules for 1-column layout */
    .governor-member {
        border: none !important;
    }
    
    /* Reset row spacing */
    .governor-member:nth-child(n+3) {
        margin-top: 0;
    }
    
    /* Add new row spacing */
    .governor-member:not(:first-child) {
        margin-top: 15px;
    }
    
    .governor-member {
        min-height: auto;
        padding: 1.25rem 0.5rem;
    }
}

/* Academic Council Members Section Styles - UPDATED */
.council-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.council-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.council-member {
    padding: 1.5rem 0.5rem;
    text-align: center;
    position: relative;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Remove the continuous borders */
    border: none;
}

/* Add borders only between cells */
.council-member:not(:nth-child(5n)) {
    border-right: 1px solid #e0e0e0;
}

.council-member:not(:nth-child(5n+1)) {
    border-left: 1px solid #e0e0e0;
}

/* Add row spacing */
.council-member:nth-child(n+6) {
    margin-top: 15px;
}

.council-member:nth-child(n+11) {
    margin-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .council-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Update border rules for 3-column layout */
    .council-member:not(:nth-child(5n)) {
        border-right: none;
    }
    
    .council-member:not(:nth-child(5n+1)) {
        border-left: none;
    }
    
    .council-member:not(:nth-child(3n)) {
        border-right: 1px solid #e0e0e0;
    }
    
    .council-member:not(:nth-child(3n+1)) {
        border-left: 1px solid #e0e0e0;
    }
    
    /* Reset row spacing */
    .council-member:nth-child(n+6),
    .council-member:nth-child(n+11) {
        margin-top: 0;
    }
    
    /* Add new row spacing */
    .council-member:nth-child(n+4) {
        margin-top: 15px;
    }
    
    .council-member:nth-child(n+7) {
        margin-top: 15px;
    }
    
    .council-member:nth-child(n+10) {
        margin-top: 15px;
    }
    
    .council-member:nth-child(n+13) {
        margin-top: 15px;
    }
    
    .council-member {
        min-height: 120px;
    }
}

@media (max-width: 768px) {
    .council-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Update border rules for 2-column layout */
    .council-member:not(:nth-child(3n)),
    .council-member:not(:nth-child(5n)) {
        border-right: none;
    }
    
    .council-member:not(:nth-child(3n+1)),
    .council-member:not(:nth-child(5n+1)) {
        border-left: none;
    }
    
    .council-member:nth-child(odd) {
        border-right: 1px solid #e0e0e0;
    }
    
    .council-member:nth-child(even) {
        border-left: 1px solid #e0e0e0;
    }
    
    /* Reset row spacing */
    .council-member:nth-child(n+4),
    .council-member:nth-child(n+7),
    .council-member:nth-child(n+10),
    .council-member:nth-child(n+13) {
        margin-top: 0;
    }
    
    /* Add new row spacing */
    .council-member:nth-child(n+3) {
        margin-top: 15px;
    }
    
    .member-name {
        font-size: 0.95rem;
    }
    
    .member-position, 
    .member-institution {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .council-grid {
        grid-template-columns: 1fr;
    }
    
    /* Update border rules for 1-column layout */
    .council-member {
        border: none !important;
    }
    
    /* Reset row spacing */
    .council-member:nth-child(n+3) {
        margin-top: 0;
    }
    
    /* Add new row spacing */
    .council-member:not(:first-child) {
        margin-top: 15px;
    }
    
    .council-member {
        min-height: auto;
        padding: 1.25rem 0.5rem;
    }
}

/* Vision & Mission Section Styles */
/* Welcome Section */
.welcome-section {
    padding: 4rem 0 0rem;
    background-color: #ffffff;
}

.welcome-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: #1E3C72;
    text-align: center;
    margin-bottom: 2rem;
}

/* Vision & Mission Section Styles */
.vision-mission-container {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0 3rem;
}

.vision-column, .mission-column {
    flex: 1;
    text-align: center;
    padding: 0 1.5rem;
}

.vision-heading, .mission-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1E3C72;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.vision-heading::after, .mission-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 1px;
    background-color: #e0e0e0;
}

.vision-text, .mission-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

.column-divider {
    width: 1px;
    background-color: #ddd;
    margin: 0 15px;
}

/* Core Values Section Styles */
.core-values-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.values-heading {
    font-size: 2rem;
    font-weight: 600;
    color: #1E3C72;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.values-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 40%;
    width: 20%;
    height: 1px;
    background-color: #e0e0e0;
}

.values-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.value-column {
    flex: 1;
    text-align: center;
    padding: 0 1.5rem;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1E3C72;
    margin-bottom: 1rem;
}

.value-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

.value-divider {
    width: 1px;
    background-color: #ddd;
    margin: 0 15px;
}

.value-single {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

/* Updated Button Styles to match the image exactly */
.values-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 120px;
}

.btn-light {
    background-color: #e0e0e0;
    color: #333333;
    border: none;
}

.btn-light:hover {
    background-color: #d0d0d0;
}

.btn-primary {
    background-color: #1E3C72;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #172e58;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .vision-mission-container {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .column-divider {
        display: none;
    }
    
    .vision-heading::after, .mission-heading::after {
        left: 30%;
        width: 40%;
    }
    
    .values-heading::after {
        left: 35%;
        width: 30%;
    }
}

@media (max-width: 768px) {
    .welcome-title {
        font-size: 2rem;
    }
    
    .values-heading {
        font-size: 1.8rem;
    }
    
    .values-row {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .value-divider {
        display: none;
    }
    
    .values-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .values-buttons .btn {
        width: 200px;
    }
    
    .value-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .welcome-title {
        font-size: 1.75rem;
    }
    
    .vision-heading, .mission-heading {
        font-size: 1.3rem;
    }
    
    .values-heading {
        font-size: 1.6rem;
    }
    
    .values-heading::after {
        left: 30%;
        width: 40%;
    }
    
    .value-single {
        padding: 0 1rem;
    }
    
    .values-buttons .btn {
        width: 90%;
    }
}

/* Core Values Image Section Styles */
.core-values-section {
    padding: 0rem 0;
    background-color: #ffffff;
}

.core-values-image-container {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* Desktop image is shown by default */
.core-values-desktop {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Mobile image is hidden by default */
.core-values-mobile {
    display: none;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Values buttons styles remain the same */
.values-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Media query for tablet and mobile devices */
@media (max-width: 768px) {
    .core-values-desktop {
        display: none; /* Hide desktop image */
    }
    
    .core-values-mobile {
        display: block; /* Show mobile image */
    }
    
    .values-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .values-buttons .btn {
        width: 200px;
    }
}

/* Additional adjustments for very small screens */
@media (max-width: 480px) {
    .core-values-section {
        padding: 3rem 0;
    }
    
    .values-buttons .btn {
        width: 90%;
    }
}


/* Moments That Matter: GBS Glimpses Section */
.gbs-glimpses-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.gbs-glimpses-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1E3C72;
    text-align: center;
    margin-bottom: 1.5rem;
}

.gbs-glimpses-description {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.6;
    color: #4b5563;
    font-size: 1.05rem;
}

/* Carousel Container */
.gbs-carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin: 0 auto;
    perspective: 1000px;
}

.gbs-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-item {
    position: absolute;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.carousel-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Center item (active) - Position 0 */
.carousel-item.active {
    width: 500px;
    z-index: 10;
    transform: translateX(0) scale(1) rotateY(0deg);
    opacity: 1;
}

/* Adjacent left - Position -1 */
.carousel-item.adjacent-left {
    width: 400px;
    height: 400px;
    z-index: 8;
    transform: translateX(-320px) scale(0.9) rotateY(8deg);
    opacity: 0.9;
}

/* Adjacent right - Position +1 */
.carousel-item.adjacent-right {
    width: 400px;
    height: 400px;
    z-index: 8;
    transform: translateX(320px) scale(0.9) rotateY(-8deg);
    opacity: 0.9;
}

/* Far left - Position -2 */
.carousel-item.far-left {
    width: 320px;
    height: 320px;
    z-index: 6;
    transform: translateX(-580px) scale(0.8) rotateY(15deg);
    opacity: 0.8;
}

/* Far right - Position +2 */
.carousel-item.far-right {
    width: 320px;
    height: 320px;
    z-index: 6;
    transform: translateX(580px) scale(0.8) rotateY(-15deg);
    opacity: 0.8;
}

/* Hidden items */
.carousel-item.hidden {
    opacity: 0;
    transform: translateX(-800px) scale(0.6) rotateY(25deg);
    z-index: 1;
}

/* Hover effects */
.carousel-item:hover img {
    transform: scale(1.05);
}

.carousel-item.active:hover img {
    transform: scale(1.02);
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.3s ease;
    color: #1E3C72;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-nav:hover {
    background-color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-nav-left {
    left: 20px;
}

.carousel-nav-right {
    right: 20px;
}

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: white;
    width: 14px;
    height: 14px;
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Button Styles */
.btn {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-light {
    background-color: #e0e0e0;
    color: #333;
}

.btn-light:hover {
    background-color: #d0d0d0;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gbs-carousel-container {
        height: 500px;
    }
    
    .carousel-item {
        height: 400px;
    }
    
    .carousel-item.active {
        width: 450px;
    }
    
    .carousel-item.adjacent-left,
    .carousel-item.adjacent-right {
        width: 350px;
        height: 320px;
        transform: translateX(-290px) scale(0.9) rotateY(8deg);
    }
    
    .carousel-item.adjacent-right {
        transform: translateX(290px) scale(0.9) rotateY(-8deg);
    }
    
    .carousel-item.far-left {
        width: 280px;
        height: 280px;
        transform: translateX(-520px) scale(0.8) rotateY(15deg);
    }
    
    .carousel-item.far-right {
        width: 280px;
        height: 280px;
        transform: translateX(520px) scale(0.8) rotateY(-15deg);
    }
}

@media (max-width: 768px) {
    .gbs-glimpses-section {
        padding: 3rem 0;
    }
    
    .gbs-glimpses-title {
        font-size: 1.75rem;
        padding: 0 1rem;
    }
    
    .gbs-glimpses-description {
        padding: 0 1rem;
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .gbs-carousel-container {
        height: 400px;
    }
    
    .carousel-item {
        height: 300px;
    }
    
    .carousel-item.active {
        width: 350px;
    }
    
    .carousel-item.adjacent-left,
    .carousel-item.adjacent-right {
        width: 280px;
        height: 240px;
        transform: translateX(-230px) scale(0.85) rotateY(5deg);
    }
    
    .carousel-item.adjacent-right {
        transform: translateX(230px) scale(0.85) rotateY(-5deg);
    }
    
    .carousel-item.far-left,
    .carousel-item.far-right {
        width: 220px;
        height: 180px;
        transform: translateX(-420px) scale(0.75) rotateY(10deg);
    }
    
    .carousel-item.far-right {
        transform: translateX(420px) scale(0.75) rotateY(-10deg);
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-nav-left {
        left: 10px;
    }
    
    .carousel-nav-right {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .gbs-glimpses-section {
        padding: 2.5rem 0;
    }
    
    .gbs-glimpses-title {
        font-size: 1.5rem;
    }
    
    .gbs-glimpses-description {
        font-size: 0.95rem;
    }
    
    .gbs-carousel-container {
        height: 350px;
    }
    
    .carousel-item {
        height: 250px;
    }
    
    .carousel-item.active {
        width: 300px;
    }
    
    .carousel-item.adjacent-left,
    .carousel-item.adjacent-right {
        width: 240px;
        height: 200px;
        transform: translateX(-200px) scale(0.8) rotateY(3deg);
    }
    
    .carousel-item.adjacent-right {
        transform: translateX(200px) scale(0.8) rotateY(-3deg);
    }
    
    .carousel-item.far-left,
    .carousel-item.far-right {
        width: 180px;
        height: 150px;
        transform: translateX(-350px) scale(0.7) rotateY(8deg);
    }
    
    .carousel-item.far-right {
        transform: translateX(350px) scale(0.7) rotateY(-8deg);
    }
}

