/* SSSIHL Alumni Foundation - Main Stylesheet */

/* CSS Variables for Colors */
:root {
    --color-1: #2B0065;
    --color-2: #FED72D;
    --color-3: #BED5EF;
    --color-4: #489CD6;
    --color-5: #BA519E;
    --white: #ffffff;
    --gray: #5A5A5A;
    --dark-gray: #4E4857;
    --light-blue: #B1D0F2;
    --footer-bg: #252026;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--color-1);
}

body.sticky-header {
    padding-top: 0;
}

.sticky-offset {
    height: 140px;
    display: none;
}

/* Ensure main content doesn't overlap with sticky header */
main {
    position: relative;
    z-index: 1;
}

/* Typography */
h1 {
    font-size: 77px;
    font-family: 'Roboto Slab', serif;
    font-weight: bold;
    color: var(--color-3);
}

h2 {
    font-size: 52px;
    font-family: 'Roboto Slab', serif;
    font-weight: bold;
}

h3 {
    font-size: 42px;
    font-family: 'Roboto Slab', serif;
    font-weight: bold;
}

/* H3 Color Variations */
h3.color-1 {
    color: var(--color-1);
}

h3.color-2 {
    color: var(--color-2);
}

h3.color-5 {
    color: var(--color-5);
}

h4 {
    font-size: 38px;
    font-family: 'Roboto Slab', serif;
    font-weight: bold;
}

h5 {
    font-size: 32px;
    font-family: 'Roboto Slab', serif;
    font-weight: bold;
}

h6 {
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
}

p {
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
}

/* Button Styles */
.btn {
    font-family: 'Roboto Slab', serif;
    font-size: 20px;
    font-weight: normal;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-1 {
    background-color: var(--color-2);
    color: var(--color-1);
}

.btn-2 {
    background-color: var(--color-1);
    color: var(--white);
}

.btn-3 {
    background-color: #BED5EF;
    color: var(--color-1);
}

.btn-4 {
    background-color: var(--color-5);
    color: var(--white);
}/* Header S
tyles - Following Style Guidelines */
.top-nav {
   align-items: center;
}

.main-header .main-nav .btn-giving {
    background: #4a148c;
    color: white !important;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background 0.3s ease;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    min-width: 90px;
    text-align: center;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-header .main-nav .btn-giving:hover {
    background: #6a1b9a;
    color: white !important;
}

.main-header .main-nav .btn-giving.active {
    background: #4a148c;
    color: white !important;
}
@media (min-width:900px) {
    .main-nav .nav-link{
        margin-left: 15px;
    }
}
/* Top Header Bar */
.top-header {
    background-color: var(--color-1);
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: var(--color-3);
    padding: 12px 0;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1001;
}

.top-header.hidden {
    transform: translateY(-100%);
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Top Header Contact Info */
.top-header .contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Footer Contact Info */
.footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
}

.contact-info img {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(85%) sepia(85%) saturate(2896%) hue-rotate(359deg) brightness(104%) contrast(101%);
}

.top-nav {
    display: flex;
    gap: 25px;
}

.top-nav a {
    text-decoration: none;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    transition: color 0.3s ease;
}

.top-nav a:hover {
    color: var(--color-2);
}

/* Main Header */
.main-header {
    background-color: var(--white);
    font-family: 'Roboto', sans-serif;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1000;
}

.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 110px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

.main-nav .nav-link {
    color: var(--color-1);
    text-decoration: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.main-nav .nav-link:hover {
    color: var(--color-4);
}

.main-nav .nav-link i {
    font-size: 12px;
    margin-left: 5px;
}

/* Search Box */
.search-box {
    background-color: var(--color-3);
    padding: 10px 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.search-input {
    border: none;
    background: transparent;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    outline: none;
    color: var(--color-1);
    width: 150px;
}

.search-input::placeholder {
    color: var(--color-1);
    opacity: 0.7;
}

/* Header Buttons - Following Style Guidelines */
.home-btn {
    background-color: var(--color-2);
    color: var(--color-1);
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: normal;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    min-width: 90px;
    text-align: center;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-btn:hover {
    background-color: #e6c429;
    color: var(--color-1);
    text-decoration: none;
}

.login-btn {
    background-color: var(--color-4);
    color: var(--color-3);
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: normal;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 90px;
    text-align: center;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-btn:hover {
    background-color: #3a8bc4;
}



/* Banner Section - Following Style Guidelines */
.banner {
    min-height: 600px;
    position: relative;
}

.banner-split {
    display: grid;
    grid-template-columns: 60% 40%;
    min-height: 600px;
}

.banner-left {
    background-image: url('../images/WebP/SSSIHL-Banner-Img.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: end;
    justify-content: right;
    padding: 60px 40px;
    position: relative;
}

.banner-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.banner-left-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.banner-left h1 {
    font-size: 60px;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-left h2 {
    font-size: 44px;
    color: var(--color-2);
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media only screen and (min-width:900px) and (max-width:1600px) {
    .banner-left h1 {
        font-size: 54px;
    }

    .banner-left h2 {
        font-size: 40px;
    }
}

.banner-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.banner-right {
    background-color: var(--color-1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.banner-right-content {
    max-width: 500px;
}

.banner-right h2 {
    font-size: 42px;
    color: var(--color-5);
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    margin: 0 0 10px 0;
}

.banner-right h6 {
    font-size: 20px;
    color: var(--color-4);
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    margin: 0 0 20px 0;
}

.banner-quote {
    font-size: 20px;
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-style: italic;
    margin: 0 0 20px 0;
}

.banner-description {
    font-size: 20px;
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    line-height: 1.4;
    margin: 0 0 30px 0;
}

.banner-right .btn {
    background-color: var(--color-2);
    color: var(--color-1);
}

/* University Highlights Section */
.university-highlights {
    padding: 60px 0;
    background-color: #BED5EF;
    text-align: center;
}

.highlights-title {
    font-size: 42px;
    color: var(--color-1);
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    margin: 0 0 20px 0;
}

.highlights-subtitle {
    font-size: 24px;
    color: var(--color-5);
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.highlights-description {
    font-size: 20px;
    color: var(--gray);
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    line-height: 1.6;
    margin: 0 auto 50px auto;
}

.highlights-carousel {
    margin: 0 auto;
}

.highlight-slide {
    padding: 0 15px;
}

.highlight-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.highlight-image {
    flex-shrink: 0;
    width: 160px;
    overflow: hidden;
    border-radius: 8px;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-content {
    flex: 1;
    text-align: left;
}

.highlight-text {
    font-size: 20px;
    color: var(--color-1);
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    line-height: 1.6;
    margin: 0;
}

.highlight-emphasis {
    color: var(--color-5);
    font-weight: bold;
}

.highlight-gold {
    color: #2B0065;
    font-weight: bold;
}

/* Owl Carousel Custom Dots */
.university-highlights .owl-dots {
    margin-top: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.university-highlights .owl-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: var(--color-5);
    border-radius: 50%;
    transition: background-color 0.3s ease;
    border: none;
    padding: 0;
    cursor: pointer;
}

.university-highlights .owl-dot span {
    background-color: var(--color-1) !important;
}

.university-highlights .owl-dot.active span {
    background: var(--color-5) !important;
}

.university-highlights .owl-dot:hover span {
     background: var(--color-5) !important;
}

/* Owl Carousel Navigation Arrows */
.university-highlights .owl-nav {
    display: none;
}

/* Remove hover effects from banner buttons */
.banner-buttons .btn:hover,
.banner-buttons .btn-1:hover,
.banner-buttons .btn-2:hover {
    background-color: inherit;
    color: inherit;
    transform: none;
    box-shadow: none;
    opacity: 1;
}

/* Ensure banner buttons maintain their original colors on hover */
.banner-buttons .btn-1:hover {
    background-color: var(--color-2);
    color: var(--color-1);
}

.banner-buttons .btn-2:hover {
    background-color: var(--color-1);
    color: var(--white);
}

.banner-right .btn:hover {
    background-color: var(--color-2);
    color: var(--color-1);
}/* Mobil
e Navbar Toggler - Animated Hamburger to X */
.navbar-toggler {
    border: none;
    padding: 0.375rem 0.75rem;
    background: transparent;
    position: relative;
    width: auto;
    height: auto;
    display: none;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--color-1);
    display: block;
    transition: all 0.3s ease;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--color-1);
    transition: all 0.3s ease;
    left: 0;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

/* Active state (X icon) - when NOT collapsed (menu is open) */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Mobile Navigation Styles */
.navbar-collapse {
    position: relative;
}

/* Desktop - show navigation normally */
@media (min-width: 1101px) {
    .navbar-collapse {
        display: block !important;
    }
    
    .navbar-toggler {
        display: none !important;
    }
    
    .mobile-actions {
        display: none !important;
    }
}

/* Mobile/Tablet - collapsible navigation */
@media (max-width: 1100px) {
    .navbar-toggler {
        display: flex !important;
    }
    
    .navbar-collapse:not(.show) {
        display: none !important;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .navbar-collapse.show {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        z-index: 1002;
        padding: 15px 20px;
        width: 100%;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .navbar-collapse.show .main-nav ul {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        text-align: left !important;
    }
    
    .navbar-collapse.show .main-nav ul li {
        width: 100%;
        text-align: left !important;
        align-self: flex-start;
    }
    
    .navbar-collapse.show .nav-link,
    .navbar-collapse.show .home-btn {
        padding: 12px 0;
        border-bottom: none;
        width: 100%;
        text-align: left !important;
        font-size: 16px;
        background: none;
        color: var(--color-1);
        border-radius: 0;
        margin: 0;
        display: block;
        justify-self: flex-start;
        align-self: flex-start;
    }
    
    .navbar-collapse.show .dropdown {
        width: 100%;
    }
    
    .navbar-collapse.show .dropdown-toggle {
        width: 100%;
        text-align: left !important;
        padding: 12px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .navbar-collapse.show .home-btn {
        background: none;
        color: var(--color-1);
        font-weight: normal;
    }
    
    .navbar-collapse.show .nav-link:last-of-type {
        border-bottom: none;
    }
    
    /* Separate section for search and login */
    .navbar-collapse.show .mobile-actions {
        border-top: 2px solid #e0e0e0;
        margin-top: 15px;
        padding-top: 15px;
        display: flex;
        gap: 15px;
        align-items: center;
        justify-content: space-between;
    }
    
    .navbar-collapse.show .search-box {
        flex: 1;
        margin: 0;
        max-width: none;
        padding: 8px 12px;
        background-color: var(--color-3);
        border-radius: 4px;
    }
    
    .navbar-collapse.show .login-btn {
        margin: 0;
        padding: 8px 16px;
        font-size: 16px;
        background-color: var(--color-4);
        color: var(--color-3);
        border-radius: 4px;
        min-width: 80px;
        text-align: center;
        flex-shrink: 0;
    }
    
    .navbar-collapse.show .search-input {
        width: 100%;
        font-size: 16px;
    }
}/* Con
vocation Section - Following Style Guidelines */
.convocation {
    padding: 60px 0;
    background-color: var(--color-3);
}

.convocation-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
    min-height: 300px;
}

.convocation-image {
    display: flex;
    align-items: center;
    height: 100%;
}

.convocation-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    max-width: 400px;
    object-fit: cover;
}

.convocation-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
    justify-content: center;
}

/* Section Title - Following Style Guidelines */
.convocation h3 {
    font-size: 42px;
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    margin: 0;
}

/* Sub-title - Following Style Guidelines */
.convocation-subtitle {
    font-size: 20px;
    color: var(--color-4);
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    margin: 0;
}

.pipe-symbol {
    font-weight: bold;
    margin-right: 8px;
}

/* Quote - Following Style Guidelines */
.convocation-quote {
    font-size: 20px;
    color: var(--color-1);
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-style: italic;
    margin: 0 !important;
}

/* Content - Following Style Guidelines */
.convocation-description {
    font-size: 20px;
    color: var(--color-1);
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    line-height: 1.3;
    margin: 0 !important;
}

/* Button - Content width only */
.convocation .btn {
    width: auto;
    align-self: flex-start;
}

.convocation .btn:hover {
    background-color: var(--color-2);
    color: var(--color-1);
    transform: none;
}/* Q
uick Access Section - Following Style Guidelines */
.quick-access {
    padding: 60px 0;
    background-image: url('../images/WebP/section_divider_dotted_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.quick-access .section-title {
    font-size: 42px;
    color: var(--color-1);
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    text-align: center;
    margin: 0 0 50px 0;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
}

/* Quick Access Card Styles - Following Style Guidelines */
.quick-access-card {
    background-color: var(--white);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.quick-access-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


.card-icon img {
   width: 100px;
    height: 100px;
    
}

/* Card Title - Following Style Guidelines */
.quick-access-card .card-title {
    font-size: 28px;
    color: var(--color-5);
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    margin: 0;
    line-height: 1.2;
}

/* Card Description - Following Style Guidelines */
.quick-access-card .card-description {
    font-size: 20px;
    color: var(--gray);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

/* Quick Access Link Card */
a.quick-access-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.quick-access-link:hover {
    text-decoration: none;
    color: inherit;
}

a.quick-access-link .card-title,
a.quick-access-link .card-description {
    color: inherit;
}

/* North America Alumni Highlights Section */
.na-alumni-highlights {
    padding: 60px 0;
    background-color: var(--color-3);
    text-align: center;
}

.na-highlights-title {
    font-size: 42px;
    color: var(--color-1);
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    margin: 0 0 20px 0;
}

.na-highlights-subtitle {
    font-size: 24px;
    color: var(--color-5);
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.na-highlights-description {
    font-size: 20px;
    color: var(--color-1);
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    line-height: 1.6;
    margin: 0 auto 50px auto;
}

.na-highlights-carousel {
    margin: 0 auto;
}

.na-highlight-slide {
    padding: 0 15px;
}

.na-highlight-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    min-height: 300px;
}

.na-highlight-image {
    flex-shrink: 0;
    width: 350px;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
}

.na-highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.na-highlight-content {
    flex: 1;
    text-align: left;
}

.na-highlight-text {
    font-size: 20px;
    color: var(--gray);
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    line-height: 1.6;
    margin: 0;
}

.na-highlight-text strong {
    color: var(--color-1);
    font-weight: bold;
}

/* Owl Carousel Custom Navigation for NA Highlights */
.na-alumni-highlights .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.na-alumni-highlights .owl-nav button {
    pointer-events: all;
    color: var(--white) !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

/* .na-alumni-highlights .owl-nav button:hover {
    background-color: rgba(43, 0, 101, 1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
} */

.na-alumni-highlights .owl-nav button.owl-prev {
    margin-left: -35px;
}

.na-alumni-highlights .owl-nav button.owl-next {
    margin-right: -35px;
}

.na-alumni-highlights .owl-nav button i {
    font-size: 24px;
    line-height: 1;
    color: var(--dark-gray);
}

.na-alumni-highlights .owl-nav button span {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide dots for NA Highlights */
.na-alumni-highlights .owl-dots {
    display: none;
}

/* Position carousel container relatively for nav positioning */
.na-highlights-carousel {
    position: relative;
}

/* Co
unt Cards Section - Following Style Guidelines */
.count-cards {
    padding: 60px 0;
    background-color: var(--color-1);
}

.count-cards .section-title {
    font-size: 42px;
    color: var(--color-2);
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    text-align: center;
    margin: 0 0 50px 0;
}

.count-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
}

/* Count Card Styles - Following Style Guidelines */
.count-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.count-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Count Number - Following Style Guidelines */
.count-number {
    font-size: 56px;
    color: var(--color-5);
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    margin: 0;
    line-height: 1.1;
}

/* Card Label - Following Style Guidelines */
.count-label {
    font-size: 24px;
    color: var(--color-1);
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
}

/* Global Alumni Highlights Section */
.global-alumni-highlights {
    padding: 60px 0;
    background-image: url('../images/WebP/section_divider_dotted_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.global-highlights-title {
    font-size: 42px;
    color: var(--color-1);
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    margin: 0 0 20px 0;
}

.global-highlights-subtitle {
    font-size: 24px;
    color: var(--color-5);
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.global-highlights-description {
    font-size: 20px;
    color: var(--color-1);
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    line-height: 1.6;
    margin: 0 auto 50px auto;
}

.global-highlights-carousel {
    margin: 0 auto;
    position: relative;
}

.global-highlight-slide {
    padding: 0 15px;
}

.global-highlight-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: none;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 40px;
    min-height: 350px;
}

.global-highlight-image {
    flex-shrink: 0;
    width: 340px;
    overflow: hidden;
    border-radius: 8px;
}

.global-highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.global-highlight-content {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.proud-moment-title {
    font-size: 32px;
    color: var(--color-5);
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    margin: 0;
    line-height: 1.2;
}

.global-highlight-text {
    font-size: 20px;
    color: var(--color-1);
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    line-height: 1.6;
    margin: 0;
}

.global-highlight-text strong {
    color: var(--color-1);
    font-weight: bold;
}

.global-highlight-content .btn {
    align-self: flex-start;
    margin-top: 10px;
    background-color: #FED72D;
    color: var(--color-1);
    padding-left: 30px;
    padding-right: 30px;
}


.global-highlight-content .btn:hover {
    background-color: #e6c429;
    color: var(--color-1);
}

/* Owl Carousel Custom Navigation for Global Highlights */
.global-alumni-highlights .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.global-alumni-highlights .owl-nav button {
    pointer-events: all;
    background-color: rgba(43, 0, 101, 0.8) !important;
    color: var(--white) !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.global-alumni-highlights .owl-nav button:hover {
    background-color: rgba(43, 0, 101, 1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

.global-alumni-highlights .owl-nav button.owl-prev {
    margin-left: -25px;
}

.global-alumni-highlights .owl-nav button.owl-next {
    margin-right: -25px;
}

.global-alumni-highlights .owl-nav button i {
    font-size: 18px;
    line-height: 1;
}

.global-alumni-highlights .owl-nav button span {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide dots for Global Highlights */
.global-alumni-highlights .owl-dots {
    display: none;
}

/* Campu
s Cards Section - Following Style Guidelines */
.campus-cards {
    padding: 60px 0;
    background-image: url('../images/WebP/section_divider_dotted_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.campus-cards .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.campus-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Campus Card Styles - Following Style Guidelines */
.campus-card {
    background-color: var(--white);
    border: 1px solid var(--light-blue);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 11px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.campus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.campus-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.campus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.campus-card:hover .campus-image img {
    transform: scale(1.05);
}

.campus-content {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

/* Campus Title - Following Style Guidelines */
.campus-title {
    font-size: 30px;
    color: var(--color-5);
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    margin: 0;
    line-height: 1.2;
}

/* Campus Description - Following Style Guidelines */
.campus-description {
    font-size: 20px;
    color: var(--gray);
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    margin: 0;
    line-height: 1.4;
    flex-grow: 1;
}

/* Campus Button */
.campus-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

.campus-card .btn:hover {
    background-color: var(--color-2);
    color: var(--color-1);
    transform: none;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
    padding-top: 0px;
}

.gallery-title {
    font-size: 42px;
    color: var(--color-1);
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    margin: 0 0 50px 0;
}

.gallery-carousel {
    margin: 0 auto;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
}

.gallery-slide {
    padding: 0 15px;
}

.gallery-image {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image:hover img {
    transform: scale(1.05);
}

/* Owl Carousel Custom Navigation for Gallery */
.gallery-section .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.gallery-section .owl-nav button {
    pointer-events: all;
    background-color: rgba(43, 0, 101, 0.8) !important;
    color: var(--white) !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gallery-section .owl-nav button:hover {
    background-color: rgba(43, 0, 101, 1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

.gallery-section .owl-nav button.owl-prev {
    margin-left: -50px;
}

.gallery-section .owl-nav button.owl-next {
    margin-right: -10px;
}

.gallery-section .owl-nav button i {
    font-size: 18px;
    line-height: 1;
}

.gallery-section .owl-nav button span {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide dots for Gallery */
.gallery-section .owl-dots {
    display: none;
}

/* Read More Link - Following Style Guidelines */
.read-more-link {
    font-size: 20px;
    color: var(--color-4);
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    text-decoration: none;
    margin-top: auto;
}

.read-more-link:hover {
    color: var(--color-4);
    text-decoration: underline;
}/* Upc
oming Events Section - Following Style Guidelines */
.upcoming-events {
    padding: 60px 0;
    background-image: url('../images/WebP/section_divider_dotted_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.events-header .section-title {
    font-size: 42px;
    color: var(--color-5);
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    margin: 0;
}

/* View All Stories Link - Following Style Guidelines */
.view-all-stories-link {
    font-size: 20px;
    color: var(--color-1);
    font-weight: normal;
    font-family: 'Roboto', sans-serif;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.view-all-stories-link:hover {
    color: var(--color-5);
}

.events-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Event Card Styles - Following Style Guidelines */
.event-card {
    background-color: var(--white);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
    gap: 25px;
    align-items: center;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Date Box - Following Style Guidelines */
.event-date-box {
    background: transparent linear-gradient(180deg, #2B0065 0%, #489CD6 100%) 0% 0% no-repeat padding-box;
box-shadow: 3px 3px 6px #00000026;
border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    min-width: 90px;
    max-width: 90px;
    width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.event-date-box-tbd {
   background: transparent linear-gradient(180deg, #2B0065 0%, #489CD6 100%) 0% 0% no-repeat padding-box;
}

/* Date Number - Following Style Guidelines */
.event-date-number {
    font-size: 36px;
    color: var(--white);
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    line-height: 1;
    margin: 0;
}

/* Date Month - Following Style Guidelines */
.event-date-month {
    font-size: 16px;
    color: var(--white);
    font-weight: normal;
    font-family: 'Roboto', sans-serif;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

/* TBD Date */
.event-date-tbd {
    font-size: 48px;
    color: var(--white);
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    line-height: 1;
    margin: 0;
}

.event-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

/* Event Title - Following Style Guidelines */
.event-title {
    font-size: 26px;
    color: var(--color-1);
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    margin: 0;
    line-height: 1.3;
}

/* Event Location - Following Style Guidelines */
.event-location {
    font-size: 16px;
    color: var(--color-5);
    font-weight: normal;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-dot {
    font-size: 24px;
    color: var(--color-5);
    font-weight: bold;
    line-height: 1;
}

.event-card .btn:hover {
    background-color: var(--color-2);
    color: var(--color-1);
    transform: none;
}
/* Join Section - Following Style Guidelines */
.join-section {
    padding: 80px 0;
    background-color: var(--color-1);
    text-align: center;
}

.join-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

/* Join Title - Following Style Guidelines */
.join-title {
    font-size: 42px;
    color: var(--color-2);
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    margin: 0;
    line-height: 1.2;
}

/* Join Description - Following Style Guidelines */
.join-description {
    font-size: 20px;
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

/* Join Buttons */
.join-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.join-section .btn {
    min-width: 160px;
}


/* Footer Section - Following Style Guidelines */
.footer {
    background-color: var(--footer-bg);
    padding: 60px 0 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Organization Info - Following Style Guidelines */
.footer-org {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
}

.org-name {
    font-size: 18px;
    color: var(--white);
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    margin: 0 0 8px 0;
}

.org-address {
    font-size: 16px;
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.org-ein {
    font-size: 16px;
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    margin: 0 0 12px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(85%) sepia(85%) saturate(2896%) hue-rotate(359deg) brightness(104%) contrast(101%);
}

.contact-item span {
    font-size: 16px;
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
}

/* Footer Columns - Following Style Guidelines */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.column-heading {
    font-size: 22px;
    color: var(--color-2);
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    margin: 0 0 15px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    font-size: 18px;
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--color-2);
}

/* Social Media Icons - Following Style Guidelines */
.footer-social {
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background-color: transparent;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--white);
    color: var(--color-1);
}

.social-icon i {
    line-height: 1;
}

/* X (Twitter) Icon Styling */
.social-icon-x .x-icon {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    font-family: Arial, sans-serif;
}

/* Newsletter Section - Following Style Guidelines */
.newsletter-heading {
    margin-top: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.newsletter-input {
    font-size: 16px;
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    background-color: var(--dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 12px 15px;
    outline: none;
    flex: 1;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    border-color: var(--color-2);
}

.newsletter-btn {
    font-size: 16px;
    color: var(--white);
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    background-color: var(--color-5);
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background-color: #a0467e;
}

/* Copyright Section - Following Style Guidelines */
.copyright {
    background-color: var(--footer-bg);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.copyright-text {
    font-size: 20px;
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    margin: 0;
}

.copyright-quote {
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    margin: 0;
}

.quote-text {
    color: var(--color-2);
    font-style: italic;
}

.quote-author {
    color: var(--color-3);
}/* Joi
n Section - Following Style Guidelines */
.join-section {
    padding: 80px 0;
    background-color: var(--color-1);
    text-align: center;
}

.join-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

/* Join Title - Following Style Guidelines */
.join-title {
    font-size: 42px;
    color: var(--color-2);
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    margin: 0;
    line-height: 1.2;
}

/* Join Description - Following Style Guidelines */
.join-description {
    font-size: 20px;
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

/* Join Buttons - No hover effects */
.join-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Remove hover effects from join section buttons */
.join-section .btn:hover,
.join-section .btn-3:hover,
.join-section .btn-4:hover {
    background-color: inherit;
    color: inherit;
    transform: none;
    box-shadow: none;
    opacity: 1;
}

/* Ensure join section buttons maintain their original colors on hover */
.join-section .btn-3:hover {
    background-color: #BED5EF;
    color: var(--color-1);
}

.join-section .btn-4:hover {
    background-color: var(--color-5);
    color: var(--white);
}

.join-section .btn {
    min-width: 160px;
}/* 
Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    border: 1px solid var(--light-blue);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 20px;
    min-width: 280px;
    display: none;
    z-index: 1003;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-section {
    margin-bottom: 20px;
}

.dropdown-section:last-child {
    margin-bottom: 0;
}

.dropdown-heading {
    font-size: 20px;
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    color: var(--color-4);
    margin: 0 0 10px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #e0e0e0;
}

.collapsible-heading {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.collapsible-heading:hover {
    color: var(--color-1);
}

.collapsible-heading .fa-caret-down {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.collapsible-heading.active .fa-caret-down {
    transform: rotate(180deg);
}

.dropdown-items {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.dropdown-items.show {
    max-height: 200px;
}

.dropdown-item {
    display: block;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    color: var(--color-1);
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.dropdown-item:hover {
    color: var(--color-4);
    padding-left: 10px;
}

/* Dropdown arrow animation */
.dropdown-toggle .fa-caret-down {
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle .fa-caret-down {
    transform: rotate(180deg);
}
.owl-theme .owl-dots .owl-dot span{
    width:15px;
    height: 15px;
    margin-top: 20px;
}
.na-alumni-highlights .owl-nav button{
    background-color: transparent;
}