:root {
    --primary-color: #eb1e26;
    --primary-hover: #dc8474;
    --text-color: #000;
    --bg-light: #fbe9e6;
    --bg-white: #ffffff;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 25px rgba(235, 30, 38, 0.15);
}

body {
    font-size: 16px;
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: #f9f9f9;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #333;
    font-weight: 700;
    font-family: var(--font-heading);
}

h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

a {
    transition: all 0.3s ease;
}

.error {
    color: #D8000C;
}

/** Row Equal Heights **/
.row.equal-cols {
    display: flex;
    flex-wrap: wrap;
}

.row.equal-cols>[class*='col-'] {
    display: flex;
    flex-direction: column;
}

.row.equal-cols>[class*='col-']>* {
    flex: 1 1 auto;
}

/** Navigation **/
.navbar {
    width: 100%;
    background-color: var(--bg-white) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
}

.navbar-brand img {
    height: 60px;
    width: auto;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--primary-color) !important;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 15px;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--primary-hover) !important;
    background-color: rgba(235, 30, 38, 0.05);
    border-radius: 5px;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-hover);
    border-top: 3px solid var(--primary-color);
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.nav_profile {
    background: var(--primary-color);
    padding: 8px 20px !important;
    border-radius: 30px;
    color: #fff !important;
    margin-left: 15px;
    box-shadow: 0 4px 10px rgba(235, 30, 38, 0.3);
}

.nav_profile:hover {
    background: var(--primary-hover);
    color: #fff !important;
    transform: translateY(-2px);
}

/** Hero / Banner **/
.banner_sec {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.banner_sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.banner_sec .container {
    position: relative;
    z-index: 1;
}

/** Section Styles **/
.white_sec {
    background: var(--bg-white);
    padding: 80px 0;
}

.grey_sec {
    background: var(--bg-light);
    padding: 80px 0;
}

.sub_heading {
    text-align: center;
    width: 80%;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/** Chapter Cards **/
.chapter_card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    text-align: center;
    padding: 30px 20px;
    height: 100%;
    border: 1px solid #eee;
}

.chapter_card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--bg-light);
}

.chapter_logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    padding: 10px;
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
}

.chapter_title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.bt_chapter {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(235, 30, 38, 0.2);
}

.bt_chapter:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: scale(1.05);
}

/** Works Block **/
.works_block .title_blue,
.works_block .title_red,
.works_block .title_green {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/** Buttons and Inputs **/
.bt_submit,
.bt_register {
    background: var(--primary-color);
    background-image: linear-gradient(45deg, var(--primary-color), var(--primary-hover));
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(235, 30, 38, 0.3);
}

.bt_submit:hover,
.bt_register:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 30, 38, 0.4);
    color: #fff;
}

input[type="text"],
input[type="password"],
input[type="email"],
textarea {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    width: 100%;
    transition: border-color 0.3s;
}

input:focus,
textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

/** Footer **/
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 0;
}

.footer h3 {
    color: #fff;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    display: inline-block;
    margin-bottom: 20px;
}

.footer a {
    color: #aaa;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--primary-color);
    text-decoration: none;
    padding-left: 5px;
}

.copyright {
    background: #111;
    color: #777;
    padding: 20px 0;
    font-size: 0.9rem;
}




/** Women Force **/
.force_block {
    background: #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-align: center;
    margin-bottom: 27px;
}

.force_band {
    background: #fbe9e6;
    min-height: 90px;
}

.force_block .photo_w {
    width: 132px;
    height: 132px;
    border: #fff 6px solid;
    border-radius: 100px;
    overflow: hidden;
    margin: 0 auto;
    margin-top: -72px;
    vertical-align: middle;
}

.force_block .force_content {
    margin: 0;
    padding: 12px 0 18px 0;
}

.force_block .force_content p {
    margin: 0;
    padding: 0;
}

/** LOGO Corousel **/
.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}



/** Sub Page **/
/*.banner_subpage {background:url(../images/banner_subpage.jpg) center no-repeat; text-align:center; padding:51px 0 36px 0;}*/
.banner_subpage {
    background: url(../images/banner_1.jpg) center top no-repeat;
    text-align: left;
    padding: 120px 0 93px 0;
}

.banner_subpage h1 {
    font-size: 33px;
    font-weight: 600;
}

.banner_subpage p {
    width: 63%;
    font-size: 18px;
    text-align: justify;
}

.banner_subpages {
    background: url(../images/banner_jobfair.jpg) center top no-repeat;
    text-align: left;
    padding: 120px 0 93px 0;
}

.banner_subpages h1 {
    font-size: 33px;
    font-weight: 600;
}

.banner_subpages p {
    width: 63%;
    font-size: 18px;
    text-align: justify;
}

.login_content {
    margin-bottom: 90px !important;
    margin-top: 90px !important;
}

.login_block {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    width: 450px;
    margin: 0 auto;
    padding: 30px;
    overflow: hidden;
}

.login_block a {
    color: #000;
    text-decoration: underline;
}

.login_block a:hover {
    color: #03F;
    text-decoration: none;
}

.login_block .title {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
}

.login_block .inp_block {
    margin: 0 auto;
    margin-top: 21px;
    margin-bottom: 10px;
}

.login_block input {
    width: 100%;
    border: #dc8474 1px solid;
    padding: 9px 15px;
    margin: 9px 0;
}

.login_block .username {
    background: url(../images/inp_username.png) center right no-repeat;
}

.login_block .password {
    background: url(../images/inp_password.png) center right no-repeat;
}

.login_block .forgot {
    float: left;
}

.login_block .otp {
    float: right;
}

.bt_submit {
    width: 100%;
    padding: 12px 0;
    margin: 0 0 12px 0;
    background: #eb1e26;
    border: none;
    color: #fff;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition-duration: 0.4s;
    cursor: pointer;
    font-weight: 500;
}

.bt_submit:hover {
    background: #ef6952;
    color: #fff;
    border: none;
}

.membership_benefits ul {
    margin: 0;
    padding: 0;
}

.membership_benefits ul li {
    margin: 0;
    padding: 6px 0 6px 27px;
    list-style: none;
    background: url(../images/green_tick.png) left 11px no-repeat;
}

.bt_register {
    width: fit-content;
    padding: 12px 21px;
    margin: 0;
    background-image: linear-gradient(#eb1e26, #ef6952);
    border: none;
    color: #fff;
    border-radius: 9px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition-duration: 0.4s;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
}

.bt_register:hover {
    background: #dc8474;
    color: #fff;
    border: none;
}

/** Dashboard **/
.nav_dashboard {
    background-image: linear-gradient(#eb1e26, #ef6952);
    padding: 12px 0;
    color: #fff;
}

.nav_dashboard ul {
    margin: 0;
    padding: 0;
}

.nav_dashboard ul li {
    list-style: none;
    float: left;
    padding: 0;
    margin: 0;
}

.nav_dashboard ul li a {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    padding: 0 30px 0 0;
    color: #fff;
}

.renewal_block {
    background: #fff;
    border: #dc8474 1px solid;
    font-size: 20px;
    margin-bottom: 30px;
}

.renewal_block .renew_left {
    background: url(../images/bg_blue.png) center right no-repeat;
    width: 325px;
    padding: 12px 12px 12px 18px;
    color: #fff;
    float: left;
    font-weight: 600;
}

.renewal_block .renew_right {
    padding: 12px 12px 12px 15px;
    overflow: hidden;
    color: #ff2f00;
    font-weight: 500;
}

.member_dashboard {
    background: #fff;
    border: #dc8474 1px solid;
}

.member_dashboard .grey_top {
    background: #fbe9e6;
    min-height: 100px;
    text-align: center;
}

.member_dashboard .member_icon {
    width: 175px;
    height: 175px;
    border-radius: 100px;
    border: #fff 9px solid;
    overflow: hidden;
    margin: 0 auto;
    margin-top: -75px;
}

.member_dashboard .content_block {
    margin: 15px 0 18px 0;
    text-align: center;
}

.member_dashboard .content_block p {
    margin-bottom: 6px;
}

.meeting_block {
    border: #dc8474 1px solid;
}

.meeting_block .meet_title {
    background: #eb1e26;
    padding: 12px 18px;
    color: #fff;
    font-size: 21px;
    font-weight: 600;
    text-transform: uppercase;
}

.meeting_block .mmet_content {
    padding: 30px;
    text-align: center;
}

.meeting_block .referral_content {
    padding: 30px;
}

/** News Ticker **/
.holder {
    background-color: #fff;
    width: 100%;
    height: 250px;
    overflow: hidden;
    padding: 0;
}

.holder .mask {
    position: relative;
    left: 0px;
    top: 10px;
    width: 300px;
    height: 240px;
    overflow: hidden;
}

.holder ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.holder ul li {
    padding: 10px 0px;
    border-bottom: #2c2c2c 1px dashed;
}

.holder ul li a {
    color: darkred;
    text-decoration: none;
}

/** Thanks Note **/
.thanks_note {
    background: #fff;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    margin-bottom: 24px;
}

.thanks_note .thanks_content {
    padding: 81px 30px 45px 30px;
    background: url(../images/icon_quote.png) 30px 30px no-repeat;
    text-align: justify;
}

.thanks_note .thanks_icon {
    background: #f2f2f2;
    padding: 30px;
    text-align: center;
}

.thanks_note .thanks_icon .icon_thumbs {
    margin: 0 auto;
    margin-top: -75px;
}

.thanks_note .thanks_icon p {
    margin-bottom: 0;
}

.td_grey {
    background: #f3f2f2 !important;
}

.td_blue {
    background: #e4f2f8 !important;
}

/** Referral **/
.referral_block {
    margin: 0 0 36px 0;
    padding: 0;
}

.referral_block label,
.referral_block input,
.referral_block textarea {
    width: 100%;
}

.referral_block label {
    margin-top: 15px;
}

/** My Profile **/
.myprofile_block {
    margin: 15px 0 18px 0;
    overflow: hidden;
}

.personal_info {
    width: 50%;
    border-right: #e7e5e5 2px solid;
    float: left;
    padding: 30px;
}

.business_info {
    width: 50%;
    float: left;
    padding: 30px;
}

.form_block {
    margin: 15px 0 0 0;
}

/** WhatsApp Float **/
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}

.whatsapp-float:hover {
    color: #fff;
    background-color: #20b857;
    box-shadow: 2px 2px 10px #777;
    transform: scale(1.1);
}

/** Website Improvements **/

/* Consistent Gradient Button */
.btn-gradient {
    background: var(--primary-color);
    background-image: linear-gradient(45deg, var(--primary-color), var(--primary-hover));
    color: #fff !important;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(235, 30, 38, 0.3);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 30, 38, 0.4);
}

/* Polished Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Sticky Navbar Styles */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
    transition: all 0.3s ease-in-out;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 110px;
    /* Positioned left of WhatsApp button */
    width: 50px;
    height: 50px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.scroll-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Link Indicators */
.footer a {
    position: relative;
    display: inline-block;
}

.footer ul li a::after,
.gold-btn::after {
    content: '\f061';
    /* FontAwesome arrow-right */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 5px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer ul li a:hover::after,
.gold-btn:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.inp_value {
    width: 63%;
    border: #dc8474 1px solid;
    padding: 9px 15px;
}

.lbl_name {
    width: 30%;
    vertical-align: top;
    padding-top: 12px;
}

/** About Ctacis **/
.about_vision {
    background: #fff;
    padding: 30px 21px 18px 21px;
    text-align: center;
    margin-bottom: 30px;
}

.about_uparrow {
    background: #072b60 url(../images/up_arrows.jpg) bottom center repeat-x;
    padding: 60px 0 45px 0;
    color: #fff;
}

.about_uparrow h1 {
    color: #fff;
    margin-bottom: 30px;
}

.about_uparrow ul {
    margin: 0;
    padding: 0;
}

.about_uparrow ul li {
    margin: 0;
    padding: 0 0 18px 36px;
    background: url(../images/org_tick.png) left top no-repeat;
    list-style: none;
}

.join_block {
    background: #f2f2f2 url(../images/joininghands.png) center 30px no-repeat;
    padding: 81px 15px 15px 15px;
    margin-bottom: 30px;
    text-align: center;
}

/* Timeline */
.timeline {
    border-left: 4px solid #4298C3;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    background: #f2f2f2;
    color: #000;
    margin: 0 auto;
    position: relative;
    padding: 50px;
    list-style: none;
    text-align: justify;
    max-width: 90%;
    left: 30px;
}

.timeline h1,
.timeline h2,
.timeline h3 {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1.5px;
    font-weight: 100;
    font-size: 1.4em;
}

.timeline .event {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 25px;
    margin-bottom: 0;
    position: relative;
}

.timeline .event:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
    border: none;
}

.timeline .event:before,
.timeline .event:after {
    position: absolute;
    display: block;
    top: 0;
}

.timeline .event:before {
    left: -200px;
    top: -12px;
    color: #000;
    content: attr(data-date);
    text-align: right;
    font-size: 2em;
    min-width: 120px;
}

.timeline .event:after {
    box-shadow: 0 0 0 4px #4298c3;
    left: -57.85px;
    background: #313534;
    border-radius: 50%;
    height: 11px;
    width: 11px;
    content: "";
    top: 5px;
}

/** Coko Palate **/
.yellow_bg {
    background: #fbfa83 !important;
}

.lightblue_bg {
    background: #b9eafe !important;
}

.purple_bg {
    background: #c3b1fd !important;
}

.mildred_bg {
    background: #fea093 !important;
}

.carousel-item h2 {
    text-shadow: 3px 3px 10px #000;
}

/** Tamils **/
.bg_tamils {
    background: url(../images/bg_tamils.jpg) center bottom no-repeat !important;
    padding: 60px 0 30px 0 !important;
}

.tamil_block {
    background: #fff;
    text-align: center;
    padding: 30px 15px;
    margin-bottom: 24px;
}

.tamil_block img {
    margin-bottom: 15px;
}

.tamil_block p {
    margin-bottom: 0;
}

/****************************************************************
********************* Responsive Fixes **************************
****************************************************************/
@media (max-width:1199px) {
    .navbar-brand img {
        width: 180px;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 9px 6px 0 6px;
    }

    .nav_profile {
        padding: 9px 12px !important;
    }
}

@media (max-width:991px) {
    .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }

    .nav_profile {
        margin: 6px 0;
    }

    .renewal_block .renew_right {
        width: 100%;
    }
}

@media (max-width:767px) {

    .member_dashboard,
    .meeting_block {
        margin-bottom: 24px;
    }

    .footer h3 {
        margin: 21px 0 15px 0;
    }

    .banner_subpage p {
        width: 100%;
        font-size: 18px;
        text-align: justify;
    }

    .banner_subpages p {
        width: 100%;
        font-size: 18px;
        text-align: justify;
    }
}

@media (max-width:540px) {
    .login_block {
        width: 90%;
    }

    .login_content {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }
}

@media (max-width:340px) {
    .renewal_block .renew_left {
        width: 280px;
    }
}

@media (min-width:540px) and (max-width:991px) {

    .lbl_name,
    .inp_value {
        width: 100%;
    }
}

@media (max-width:539px) {

    .personal_info,
    .business_info,
    .lbl_name,
    .inp_value {
        width: 100%;
    }

    .personal_info {
        border-right: 0;
    }
}

/** Tabs **/
.bt_member {
    width: fit-content;
    padding: 12px 21px;
    margin: 0 0 12px 0;
    background: #eb1e26;
    border: none;
    color: #fff;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition-duration: 0.4s;
    cursor: pointer;
    font-weight: 500;
}

.bt_member:hover {
    background: #dc8474;
    color: #fff;
    border: none;
}

.worko-tabs {
    margin: 20px 0;
    width: 100%;
}

.worko-tabs .state {
    position: absolute;
    left: -10000px;
}

.worko-tabs .flex-tabs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.worko-tabs .flex-tabs .tab {
    flex-grow: 1;
    /*max-height: 40px;*/
}

.worko-tabs .flex-tabs .panel {
    background-color: #fff;
    padding: 20px;
    min-height: 300px;
    display: none;
    width: 100%;
    flex-basis: auto;
}

.worko-tabs .flex-tabs .panel p {
    text-align: justify;
}

.worko-tabs .tab {
    display: inline-block;
    padding: 12px 9px;
    vertical-align: top;
    background-color: #eb1e26;
    color: white;
    text-decoration: none;
    cursor: hand;
    cursor: pointer;
    border-right: #fff 2px solid;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.worko-tabs .tab:hover {
    background: url(../images/tab_bg.jpg) top left repeat-x;
    color: black
}

#tab-one:checked~.tabs #tab-one-label,
#tab-two:checked~.tabs #tab-two-label,
#tab-three:checked~.tabs #tab-three-label,
#tab-four:checked~.tabs #tab-four-label {
    background: url(../images/tab_bg.jpg) top left repeat-x;
    cursor: default;
}

#tab-one:checked~.tabs #tab-one-panel,
#tab-two:checked~.tabs #tab-two-panel,
#tab-three:checked~.tabs #tab-three-panel,
#tab-four:checked~.tabs #tab-four-panel {
    display: block;
}

@media (max-width: 600px) {
    .flex-tabs {
        flex-direction: column;
    }

    .flex-tabs .tab {
        background: #e4e4e4;
        border-bottom: 1px solid #ccc;
    }

    .flex-tabs .tab:last-of-type {
        border-bottom: none;
    }

    .flex-tabs #tab-one-label {
        order: 1;
    }

    .flex-tabs #tab-two-label {
        order: 3;
    }

    .flex-tabs #tab-three-label {
        order: 5;
    }

    .flex-tabs #tab-four-label {
        order: 7;
    }

    .flex-tabs #tab-one-panel {
        order: 2;
    }

    .flex-tabs #tab-two-panel {
        order: 4;
    }

    .flex-tabs #tab-three-panel {
        order: 6;
    }

    .flex-tabs #tab-four-panel {
        order: 8;
    }

    #tab-one:checked~.tabs #tab-one-label,
    #tab-two:checked~.tabs #tab-two-label,
    #tab-three:checked~.tabs #tab-three-label,
    #tab-four:checked~.tabs #tab-four-label {
        border-bottom: none;
    }

    #tab-one:checked~.tabs #tab-one-panel,
    #tab-two:checked~.tabs #tab-two-panel,
    #tab-three:checked~.tabs #tab-three-panel,
    #tab-four:checked~.tabs #tab-four-panel {
        border-bottom: 1px solid #ccc;
    }
}

/** Search Box **/
#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    display: none;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    z-index: 106;
    display: block;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -51px;
    width: 60%;
    margin-left: 20%;
    color: rgb(255, 255, 255);
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, .8);
    border-bottom: 2px solid rgba(255, 255, 255, .5);
    border-left: 0px solid transparent;
    border-right: 0px solid transparent;
    font-size: 40px;
    font-family: Roboto;
    font-weight: 300;
    text-align: center;
    outline: none;
    padding: 10px;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    opacity: 1;
    font-size: 27px;
    color: #fff;
}

#search .close:hover {
    color: #FC2121;
    cursor: pointer;
}

/** Blink Text **/
.text-red {
    color: red;
    font-size: 21px;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

.blink-hard {
    animation: blinker 1s step-end infinite;
}

.blink-soft {
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0.1;
    }
}

.bt_meet {
    width: fit-content;
    padding: 12px 21px;
    margin: 0 0 12px 0;
    background: #eb1e26;
    border: none;
    color: #fff;
    border-radius: 21px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition-duration: 0.4s;
    cursor: pointer;
    font-weight: 500;
}

.bt_meet:hover {
    background: #ef6952;
    color: #fff;
    border: none;
}

/* Membership */
.member_block {
    background: #fbe9e6;
    padding: 30px 15px;
    margin-bottom: 30px;
    text-align: center;
}

.member_title {
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

.member_title span {
    font-size: 24px;
    font-weight: 600;
    color: #eb1e26;
}

/* Job Fair */
.jobfair_logo {
    border: #dc8474 1px solid;
    margin-bottom: 24px;
}

/** Premium / Team Section (Redesigned Light) **/
.premium-dark-section {
    background: #fff;
    padding: 80px 0;
    color: #333;
}

.premium-heading {
    text-align: center;
    color: #333;
    font-family: var(--font-main);
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.premium-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.glass-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(235, 30, 38, 0.15);
    border-color: #fbe9e6;
}

.glass-card .photo-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    position: relative;
    border-radius: 50%;
    padding: 5px;
    background: #fff;
    border: 2px solid var(--primary-color);
}

.glass-card .photo-container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: fit;
    border: 3px solid #fff;
}

.glass-card h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.glass-card p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0px;
    font-weight: 500;
}

.gold-btn {
    background: var(--primary-color);
    background-image: linear-gradient(45deg, var(--primary-color), var(--primary-hover));
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(235, 30, 38, 0.3);
    display: inline-block;
    margin-top: 30px;
    text-decoration: none;
}

.gold-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 30, 38, 0.4);
    color: #fff;
}

/* Executive Committee Section specifically */
.committee-group-title {
    color: #333;
    font-size: 1.8rem;
    margin: 40px 0 30px;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-wrapper {
    background-color: #fff;
    background-image: none;
}

/** Modern Chapter Page Design **/
.chapter-hero {
    position: relative;
    background-color: var(--primary-color);
    /* Fallback */
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.chapter-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(235, 30, 38, 0.9), rgba(50, 0, 0, 0.8));
    z-index: 1;
}

.chapter-hero .container {
    position: relative;
    z-index: 2;
}

.chapter-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.chapter-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

.chapter-stats-row {
    margin-top: -50px;
    position: relative;
    z-index: 3;
    padding-bottom: 50px;
}

.stat-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.stat-label {
    color: #777;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.chapter-about-img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: rotate(2deg);
    border: 5px solid #fff;
}

.team-card-modern {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #eee;
    height: 100%;
}

.team-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(235, 30, 38, 0.15);
    border-color: #fbe9e6;
}

.team-img-wrapper {
    width: 120px;
    height: 120px;
    margin: 30px auto 20px;
    border-radius: 50%;
    padding: 5px;
    background: #fff;
    border: 2px solid var(--primary-color);
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: fill;
}

.team-info {
    padding: 0 20px 30px;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
}