<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root{
    --theme-font: "Poppins", serif;
    --theme-secondary-font: "Roboto", serif;
    --theme-color: #0B1E59; /* rgb(29, 49, 89) */
    --theme-secondary-color: #ffdd00; /* rgb(255, 221, 0) */
    --theme-tertiary-color: #a31d31; /* rgb(163, 29, 49) */
    --theme-primary-color: #244280; /* rgb(36, 66, 128) */
    --theme-blue: #2955e6; /* rgb(41, 85, 230) */
}

body{
    margin: 0;
    padding: 0;
    font-family: var(--theme-font);
    background-color: #f2f1ed;
    text-align: justify !important;
}

.text-xxs{
    font-size: .7rem;
}

.text-xs{
    font-size: 0.8rem;
}

.text-sm{
    font-size: .9rem;
}

.text-md{
    font-size: 1.2rem;
}

.text-lg{
    font-size: 2rem;
}

.text-xl{
    font-size: 3rem;
}

.text-xxl{
    font-size: 5rem;
}

.text-w-xs{
    font-weight: 300;
}

.text-w-md{
    font-weight: 500;
}

.text-w-lg{
    font-weight: 600;
}

.text-w-xl{
    font-weight: 700;
}

.text-w-xxl{
    font-weight: 800;
}

.text-theme-color{
    color: var(--theme-color);
}

.text-secondary-color{
    color: var(--theme-secondary-color);
}

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

.text-tertiary-color{
    color: var(--theme-tertiary-color);
}

a{
    text-decoration: none;
    color: inherit;
}

.hsr-theme-btn{
    background-color: var(--theme-tertiary-color);
    color: white;
    border:2px solid var(--theme-tertiary-color);
    min-width: 250px;
    padding: .75rem;
    font-weight: 500;
    border-radius: 0;
}

.hsr-theme-secondary-btn{
    background-color: var(--theme-blue);
    color: white;
    border:2px solid var(--theme-blue);
    min-width: 250px;
    padding: .75rem;
    font-weight: 500;
    border-radius: 0;
}

.hsr-theme-secondary-btn:hover, .hsr-theme-secondary-btn:active{
    background-color: white !important;
    color: var(--theme-color) !important;
    border-color: var(--theme-color) !important;
}

.hsr-theme-btn:hover, .hsr-theme-btn:active{
    background-color: var(--theme-secondary-color) !important;
    color: var(--theme-primary-color) !important;
    border-color: var(--theme-secondary-color) !important;
}

.hsr-theme-text{
    color: var(--theme-color);
}

.hsr-theme-secondary-text{
    color: var(--theme-secondary-color);
}

.form-control, .form-select{
    border-radius: 0;
}

.hsr-bg-tertiary{
    background-color: var(--theme-tertiary-color);
}

.hsr-text-primary{
    color: var(--theme-primary-color);
}

.hsr-text-secondary{
    color: var(--theme-secondary-color);
}

.form-control:focus{
    box-shadow: none;
}

.hsr-whatsapp-button{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #075e54;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Top Bar */

.hsr-top-bar{
    background-color: var(--theme-tertiary-color);
    padding: 0.5rem 0;
}

.hsr-top-bar a{
    display: inline-block;
    margin-right: 0.75rem;
    font-size: .9rem;
    color: white;
}

/* Navbar */

@media (min-width: 991px) {
    .navbar-brand img{
        height: 85px;
    }
}

.hsr-navbar{
    /* background-color: var(--theme-color);
     */
     background-color: var(--theme-color);
}

.hsr-navbar .bi{
    color: white;
}

.offcanvas .accordion-item a{
    display: block;
    padding: .5rem 1rem;
}

.hsr-navbar ul{
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.hsr-navbar .nav-link{
    margin: 0 0.75rem;
    color: #444444;
    font-size: 1.1rem;
}

.hsr-navbar .nav-link:hover{
    color: var(--theme-blue);
}

.hsr-navbar .nav-link.show{
    color: var(--theme-blue);
}

.hsr-navbar .dropdown-menu{
    padding: 0;
    background: var(--theme-color);
    border-radius: 0;
    border: 0;
    transition: all ease-in-out .4s;
}

.hsr-navbar .dropdown-item{
    color: rgba(255, 255, 255, .6);
    padding: 1rem;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.hsr-navbar li:last-child .dropdown-item{
    border-bottom: 0;
}

.hsr-navbar .dropdown-item:hover{
    background-color: transparent;
    color: var(--theme-secondary-color);
}

/* Footer */

.hsr-footer{
    background-color: var(--theme-color);
}

footer h4{
    color: white;
}

footer ul{
    list-style: none;
    padding: 0;
}

footer li{
    margin: 1rem 0;
}

footer li a{
    color: rgba(255, 255, 255, .6);
    font-size: 0.9rem;
    font-weight: 400;
}

footer li a:hover{
    color: var(--theme-secondary-color);
}

footer p{
    color: rgba(255, 255, 255, .6);
}

footer .hsr-social-media{
    display: flex;
    align-items: center;
}

footer .hsr-social-media a{
    font-size: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    color: white;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: .5rem;
}

footer .hsr-social-media a:hover{
    background-color: var(--theme-secondary-color);
    color: var(--theme-color);
}

.hsr-copyright{
    background-color: #051547;
}

/* Privacy Policy */

.hsr-page-title{
    background-color: #E4E8EB;
    padding: 3rem;
    color: black;
}

.hsr-page-title h1{
    font-size: 2.5rem;
}

@media (max-width: 991px) {
    .hsr-page-title h1{
        font-size: 1.6rem;
    }
}

.hsr-page-title .breadcrumb-item.active{
    color: rgba(0, 0, 0, 0.7);
}

.hsr-page-title .breadcrumb-item+.breadcrumb-item::before {
    color: black;
}

.hsr-theme-page-title-text{
    color: var(--theme-tertiary-color);
}

/* Hero Image */

.carousel-item img{
    height: 80vh;
    width: 100%;
    object-fit: cover;
}

.carousel-control-prev{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: var(--theme-tertiary-color);
    opacity: 1;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-next{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: var(--theme-tertiary-color);
    opacity: 1;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev-icon, .carousel-control-next-icon{
    height: 1rem;
    width: 1rem;
}

.carousel-control-next:hover, .carousel-control-prev:hover{
    background-color: var(--theme-tertiary-color);
}

.carousel-indicators button{
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
}

.carousel-caption{
    position: absolute;
    height: 80vh;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.carousel-caption h2{
    font-size: 3rem;
    font-weight: 700;
}

@media (max-width: 991px) {
    .carousel-control-next, .carousel-control-prev{
        display: none;
    }   

    .carousel-caption h2{
        font-size: 2.5rem;
    }
}

/* Section Title */

.hsr-section-title p{
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hsr-section-title h2{
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hsr-section-title{
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .hsr-section-title h2{
        font-size: 2rem;
    }
}

/* Birthday */

.hsr-birthday-card .hsr-birthday-image img{
    height: 120px;
    width: 120px;
    border: 2px solid var(--theme-tertiary-color);
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: auto;
}

.hsr-birthday-card {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hsr-birthday-image img{
    height: 120px;
    width: 120px;
    border: 2px solid var(--theme-tertiary-color);
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: auto;
}

.hsr-alumni-card{
    min-height: 150px;
}

.hsr-home-birthday .owl-dots button{
    height: 10px;
    width: 10px;
    background: white;
    border-radius: 50%;
    margin: 0.20rem;
}

.hsr-home-birthday .owl-dots{
text-align: center;
margin-top: 1rem;
}

.hsr-home-birthday .owl-dots button.active{
    background-color: var(--theme-secondary-color);
}


.hsr-achievements .owl-dots button{
    height: 10px;
    width: 10px;
    background: gray;
    border-radius: 50%;
    margin: 0.20rem;
}

.hsr-achievements .owl-dots{
text-align: center;
margin-top: 1rem;
}

.hsr-achievements .owl-dots button.active{
    background-color: var(--theme-tertiary-color);
}


.hsr-blogs .owl-dots button{
    height: 10px;
    width: 10px;
    background: gray;
    border-radius: 50%;
    margin: 0.20rem;
}

.hsr-blogs .owl-dots{
text-align: center;
margin-top: 1rem;
}

.hsr-blogs .owl-dots button.active{
    background-color: var(--theme-tertiary-color);
}

.hsr-jobs .owl-dots button{
    height: 10px;
    width: 10px;
    background: gray;
    border-radius: 50%;
    margin: 0.20rem;
}

.hsr-jobs .owl-dots{
text-align: center;
margin-top: 1rem;
}

.hsr-jobs .owl-dots button.active{
    background-color: var(--theme-tertiary-color);
}

/* Upcoming Events */

.hsr-home-event-lg img{
    width: 100%;
    object-fit: cover;
}

.hsr-home-event img{
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.hsr-home-event p{
    display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.hsr-home-event-lg h3, .hsr-home-event h5{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}


.hsr-home-event-lg .hsr-event-content, .hsr-home-event .hsr-event-content{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

/* Jobs */

.hsr-jobs .owl-dots button{
    height: 10px;
    width: 10px;
    background: gray;
    border-radius: 50%;
    margin: 0.20rem;
}

.hsr-jobs .owl-dots{
text-align: center;
margin-top: 1rem;
}

.hsr-jobs .owl-dots button.active{
    background-color: var(--theme-tertiary-color);
}

.hsr-job-card{
    text-align: center;
}

.hsr-chip{
    font-size: .9rem;
    border: 1px solid var(--theme-color);
    border-radius:7px;
    padding: .25rem .5rem;
    margin: .5rem;
}

.hsr-chip.active{
    background-color: var(--theme-color);
    color: white;
}

.hsr-job-card p{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

/* Blogs */

.hsr-blog-card img{
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.hsr-blogs .owl-dots button{
    height: 10px;
    width: 10px;
    background: gray;
    border-radius: 50%;
    margin: 0.20rem;
}

.hsr-blogs .owl-dots{
text-align: center;
margin-top: 1rem;
}

.hsr-blogs .owl-dots button.active{
    background-color: var(--theme-tertiary-color);
}

.hsr-blog-card p{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.hsr-blog-card .card-body h4{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden; 
}

/* Contact Us */

.hsr-contact-card .hsr-contact-icon{
    height: 50px;
    width: 50px;
    background-color: var(--theme-tertiary-color);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

/* About Us */

.hsr-about-us img{
    height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.hsr-what-we-do .card{
    height: 550px;
}

.hsr-what-we-do .card p{
    color: grey;
}

/* History */

.hsr-timeline {
    position: relative;
    margin: auto;
}
/* Center line */
.hsr-timeline::after {
    content: "";
    position: absolute;
    width: 4px;
    background-color: #333;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) !important;
}
.hsr-container-left, .hsr-container-right {
    position: relative;
    width: 50%;
    padding: 10px 40px;
    box-sizing: border-box;
}
.hsr-container-left { left: 0; text-align: center; }
.hsr-container-right { left: 50%; text-align: center; }

/* Year Box */
.hsr-year-box {
    position: absolute;
    width: 100px;
    background:var(--theme-tertiary-color);
    color: white;
    text-align: center;
    padding: 10px;
    left: 50%;
    transform: translateX(-50%) !important;
    font-weight: bold;
    z-index: 1;
}
/* Content Box */
.hsr-content {
    margin: 60px 0 30px 0;
    background: white;
    padding: 15px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media screen and (max-width: 600px) {
    .hsr-timeline::after { left: 20px; } /* Move centerline to left */
    .hsr-container-left, .hsr-container-right {
        width: 100%;
        left: 0;
        text-align: left;
        padding-left: 40px;
        padding-right: 0;
    }
    .hsr-year-box {
        left: 20px;
        transform: none;
    }
}

/* Alumni */

.hsr-search-btn{
    background-color: var(--theme-tertiary-color);
    color: white;
    padding: .5rem 1.5rem;
}

.hsr-search-btn:hover, .hsr-search-btn:active{
    background-color: var(--theme-secondary-color) !important;
    border-color: var(--theme-secondary-color) !important;
    color: var(--theme-tertiary-color);
}

.hsr-alumni-card .hsr-social-icons{
    display: flex;
}

.hsr-alumni-card .hsr-social-icons .bi{
    font-size: 1.1rem;
    height: 2rem;
    width: 2rem;
    border: 1px solid var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: .5rem;
}

/* Blogs */

.hsr-blog-side-card h5{
    color: var(--theme-tertiary-color);
    font-size: 1.3rem;
    border-bottom: 1.5px solid #e1e1e1;
    padding-bottom: .5rem;
}

.hsr-blog-side-card ul{
    list-style: none;
    padding: 0;
}

.hsr-blog-side-card ul li{
    margin: .5rem 0;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: .5rem;
}

.hsr-blog-side-card ul li:last-child{
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hsr-blog-side-card a{
    color: #404040;
    font-size: .9rem;
}

.hsr-blog-side-card a:hover{
    color: var(--theme-tertiary-color);
}

.hsr-blog-author-image{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}
.hsr-blog-sharing a{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 2px solid black;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

/* Chapters */

.nav-pills button{
    text-align: left;
    color: #404040;
    border-radius: 0;
    font-size: .9rem;
}

.nav-pills button.active{
    background-color: var(--theme-tertiary-color) !important;
    color: white;
}

.nav-pills button:hover{
    color: var(--theme-tertiary-color);
}

.hsr-alumni-img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 991px) {
    .hsr-alumni-img{
        height: 300px;
    }
    
}

.hsr-job-company{
    height: 120px;
    width: 120px;
    object-fit: contain;
    object-position: center;
    border: 1px solid var(--theme-tertiary-color);
    padding: 10px;
    margin-bottom: 15px;
}

/* Core committee */

.hsr-core-committee .card img{
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.hsr-core-committee .card{
    min-height: 450px;
}

.hsr-core-committee .card h4{
    font-size: 1.1rem;
}

.hsr-core-committee .card p{
    font-size: .9rem;
}

.hsr-volunteers .card img{
    height: 150px !important;
    width: 150px !important;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.hsr-volunteers .card h4{
    font-size: 1.1rem;
}</pre></body></html>