@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --tie-red: #1c403d;
    --tie-dark: #1a1a1a;
    --tie-gray: #f5f5f5;
    --tie-mid-gray: #888;
    --tie-light: #ffffff;
    --white: #fff
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}


/* ===== TOP BAR ===== */
.top-bar {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 8px 0;
}

.top-bar .logo img,
.top-bar .logo-text {
    display: flex;
    align-items: center;
}

.tie-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.tie-logo .logo-badge {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 2px;
    line-height: 1.2;
}

.tie-logo .logo-badge img {
    width: 80px;
}

.tie-logo .logo-sub {
    font-size: 15px;
    color: #000000;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    line-height: 1.3;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.top-bar .social-icons a {
    color: #555;
    font-size: 14px;
    margin-left: 8px;
    text-decoration: none;
    transition: color 0.2s;
}

.top-bar .social-icons a:hover {
    color: var(--tie-red);
}

.top-bar .top-btns .btn {
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 3px;
}

.btn-membership {
    background: var(--tie-red);
    color: #fff;
    border: none;
}

.btn-membership:hover {
    background: #21a35d;
    color: #ffffff;
}

.btn-member-login {
    background: #333;
    color: #fff;
    border: none;
}

.btn-member-login:hover {
    background: #000;
    color: #fff;
}

.btn-write {
    background: var(--tie-red);
    color: #fff;
    border: none;
}

.btn-write:hover {
    background: #2aa562;
    color: #ffffff;
}

/* ===== NAVBAR ===== */
.main-nav {
    background: #fff;
    border-bottom: 2px solid #e5e5e5;
    padding: 0;
}

.main-nav .navbar {
    padding: 0;
    gap: 0;
}

.main-nav .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #333 !important;
    padding: 14px 16px !important;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: #28a461 !important;
    border-bottom-color: #2aa663;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    background: var(--tie-red);
    overflow: hidden;
}

.hero-slide {
    color: #fff;
    text-align: center;
    padding: 60px 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1c403dc2;
}

.hero-content {
    position: relative;
    z-index: 5;
}

/* .hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
} */

.hero-slide .tag-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.hero-slide h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 6px;
}

.hero-slide .stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 100px;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.hero-slide .stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.hero-slide .sub-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin: 16px 0 8px;
}

.hero-slide .cities {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.hero-slide .map-pins {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 12px;
}

.hero-slide .map-pins i {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.7);
}

/* Owl nav arrows */
.hero-slider .owl-prev,
.hero-slider .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 50% !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 18px !important;
    color: #fff !important;
    transition: background 0.2s;
}

.hero-slider .owl-prev {
    left: 12px;
}

.hero-slider .owl-next {
    right: 12px;
}

.hero-slider .owl-prev:hover,
.hero-slider .owl-next:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}

.hero-slider .owl-dots {
    margin-top: 0 !important;
    display: none;
}

.hero-slider .owl-nav {
    margin: 0 !important;
}

/* ===== PILLARS ===== */
.pillars-section {
    padding: 60px 0 60px;
    background: #fff;
    text-align: center;
}

.infinity-icon {
    font-size: 56px;
    color: var(--tie-red);
    line-height: 1;
    margin-bottom: 14px;
}

.pillars-section .tagline {
    font-size: 20px;
    color: #555;
    margin-bottom: 28px;
    font-family: 'Montserrat', sans-serif;
}

.pillars-section .tagline strong {
    color: var(--tie-dark);
    font-size: 22px;
}

.pillar-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--tie-red);
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 22px;
    border-radius: 4px;
    text-decoration: none;
    margin: 4px;
    min-width: 110px;
    min-height: 80px;
    transition: background 0.2s, transform 0.2s;
    gap: 8px;
}

.pillar-btn i {
    font-size: 22px;
}

.pillar-btn:hover {
    background: #a8152b;
    transform: translateY(-2px);
}

/* ===== QUOTE SLIDER ===== */
.quote-section {
    background: #1c403d;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    background: url('../img/STRUCTURE2341231.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    filter: invert(133%) sepia(75%) saturate(71%) hue-rotate(338deg) brightness(32%) contrast(51%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}

.quote-inner {
    height: 500px;
}

.quote-img-wrap {
    flex: 0 0 260px;
    position: relative;
    overflow: hidden;
    align-self: stretch;
    display: flex;
    align-items: flex-end;
}

.quote-img-placeholder img {
    width: 450px !important;
}

.quote-content {
    padding: 0px 60px 0px 0px;
    position: relative;
}

.quote-content .quote-mark {
    font-size: 180px;
    color: rgb(255 255 255 / 44%);
    font-family: Georgia, serif;
    line-height: 0.8;
    position: absolute;
    top: -27px;
    left: -70px;
}

.quote-content blockquote {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: #fff;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.quote-content .author-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.quote-content .author-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
}

.quote-section .owl-prev,
.quote-section .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 16px !important;
    z-index: 10;
}

.quote-section .owl-prev {
    left: 10px;
}

.quote-section .owl-next {
    right: 10px;
}

.quote-section .owl-nav {
    margin: 0 !important;
}

.quote-section .owl-dots {
    display: none !important;
}

/* ===== COMMUNITY ===== */
.community-section {
    padding: 60px 0;
    background: #f8f8f8;
    text-align: center;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--tie-dark);
    margin-bottom: 6px;
}

.section-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: var(--tie-mid-gray);
    font-style: italic;
    margin-bottom: 36px;
}

.community-cards-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.community-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.community-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.community-card img,
.community-card .card-img-ph {
        width: 100%;
    object-fit: cover;
    display: block;
    height: 200px;
    object-fit: cover;
}

.community-card .card-img-ph {
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #aaa;
}

.community-card .stat-val {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--tie-dark);
    padding: 12px 10px 2px;
}

.community-card .stat-name {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: var(--tie-mid-gray);
    padding-bottom: 14px;
}

/* ===== VALUE CREATION ===== */
.value-section {
    background: linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
        url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1400&q=80') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}

.value-section .section-title {
    color: #fff;
}

.value-cards-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
}

.value-card {
    background: var(--tie-red);
    border-radius: 6px;
    padding: 28px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
    border-top-left-radius: 45px;
    border-bottom-right-radius: 45px;
}

.value-card:hover {
    transform: translateY(-4px);
}

.value-card .vc-icon {
    font-size: 28px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.85);
}

.value-card .vc-val {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
}

.value-card .vc-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
}

.value-section .note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 18px;
    font-style: italic;
}

/* ===== MEMBERSHIP ===== */
.membership-section {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.membership-section .section-title {
    color: var(--tie-red);
}

.mem-cards-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.mem-card {
    width: auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.mem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mem-card .mem-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    position: relative;
}
.mem-title{
        position: absolute;
    bottom: 10px;
}

.mem-card .mem-img-ph {
    width: 100%;
    background: #555;
    /* display: flex; */
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0px;
    position: relative;
}

.mem-card .mem-img-ph.charter {
    background: linear-gradient(135deg, #2c2c2c, #555);
}

.mem-card .mem-img-ph.affiliate {
    background: linear-gradient(135deg, #1a6b3c, #2a9d5c);
}

.mem-card .mem-img-ph.associate {
    background: linear-gradient(135deg, #8b6914, #c8972a);
}

.mem-card .mem-title h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    /* background: var(--tie-red); */
    padding: 0px 16px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}
.mem-card .mem-body{
    padding: 16px;
}
.mem-card .mem-body p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ===== FLAGSHIP PROGRAMS ===== */
.programs-section {
    padding: 60px 0;
    background: #f8f8f8;
    text-align: center;
}

.prog-cards-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.prog-card {
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); */
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.prog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.prog-card .prog-header {
    background: var(--tie-red);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prog-card .prog-logo {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 900;
    color: var(--tie-red);
    text-align: center;
    line-height: 1.1;
    padding: 2px;
}

.prog-card .prog-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.prog-card .prog-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.prog-card .prog-img-ph {
    width: 100%;
    height: 173px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    overflow: hidden;
}

.prog-card .prog-body {
    padding: 14px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}



/* ===== MARQUEE EVENTS ===== */
.events-section {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.event-cards-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.event-card {
    width: 420px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.event-card .event-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-card .event-img-ph {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.event-card .event-img-ph.summit {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
}

.event-card .event-img-ph.tiecon {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
}

.event-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.event-badge .eb-tie {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 4px;
}

.event-badge .eb-logo {
    background: var(--tie-red);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 14px;
    padding: 3px 7px;
    border-radius: 2px;
}

.event-badge .eb-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.event-badge .eb-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.event-card .event-body {
    padding: 18px;
    text-align: left;
}

.event-card .event-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--tie-dark);
    margin-bottom: 8px;
}

.event-card .event-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ===== FOOTER ===== */
footer {
    background: #1c403d;
    color: #ffffff;
    padding: 50px 0 20px;
}

footer .footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

footer .footer-logo .fl-badge {
    background: var(--tie-red);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 900;
    padding: 5px 10px;
    border-radius: 2px;
}

footer .footer-logo .fl-global {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 2px;
}

footer h6 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

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

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

footer ul li a:hover {
    color: var(--white);
}

footer .footer-contact p {
    font-size: 13px;
    margin-bottom: 6px;
    color: #ffffff;
}

footer .footer-contact p i {
    color: var(--white);
    margin-right: 8px;
}

footer .footer-bottom {
    /* border-top: 1px solid #ffffff; */
    margin-top: 30px;
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

footer .footer-bottom p {
    font-size: 12px;
    color: #ffffff;
    margin: 0;
}

footer .footer-social a {
    color: #ffffff;
    font-size: 15px;
    margin-left: 12px;
    transition: color 0.2s;
}

footer .footer-social a:hover {
    color: var(--tie-red);
}


.pillar-card {
    background-color: rgb(22, 52, 50) !important;
    background-size: cover !important;
    background-blend-mode: overlay;
    background-position: center center;
    text-align: center;
    cursor: default;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 16px;
    background: var(--white);
    border-bottom: 4px solid transparent;
    padding: 60px 24px;
    transition: 0.3s;
    width: 18%;
    border-radius: 12px;
        background-repeat: no-repeat;

}

.pillar-card h3 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
}

.mem-img-ph::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0 0 0 / 48%) 64%);
}

.main-nav {
    position: sticky;
    top: 0;
    z-index: 9999;
}

.section__page__header {
    padding: 80px 0;
    background: url(../img/inner-page.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    /* min-height: 200px; */
}

/* .page_header_image{
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
} */
.page_header_image::before {
    content: "";
    background: #0000003b;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.section__page__header .breadcrumb-item+.breadcrumb-item::before {
    color: #1c403d;
}

.section__page__header .nav-breadcrumb {
    border-radius: 4px;
    display: inline-block;
    background: #E4EE4F;
    padding: 4px 35px;
}

li.breadcrumb-item a {
    color: #1c403d;
    font-weight: 500;
}

li.breadcrumb-item.active {
    font-weight: 500;
    color: #1c403d;
}

.section__page__header.page-header-modern h1 {
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;

}

a {
    text-decoration: none;
}

.main-heading h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--tie-dark);
    margin-bottom: 15px;
}

.main-heading h3 {
    font-size: 17px;
    font-weight: 600;
    color: #000;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 10px;
    position: relative;
}

.sub-heading p {
    font-size: 15px;
    line-height: 22px;
    color: #666;
    margin-bottom: 16px;
    font-weight: 500;
}

.main-list ul li {
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
    color: #666;
    margin-bottom: 0px;
    list-style: none;
    position: relative;
    padding: 5px 0 0 0px;
}

.main-list ul {
    margin-bottom: 20px;
    padding-left: 1rem;
}

.main-list ul li::before {
    content: '';
    position: absolute;
    background: #1c403d;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 6px;
    height: 6px;
    top: 14px;
    left: -15px;
    border-radius: 100%;
}

.section-padding {
    padding: 60px 0;
}

.section-main-btn {
    display: inline-block;
    padding: 8px 40px;
    font-size: 16px;
    background-color: #211D67;
    border: 1px solid #211D67;
    color: #fff;
    border-radius: 30px;
    transition: all .5s ease-in-out
}

.section-main-btn:hover {
    background-color: #fff0;
    color: #211D67
}

.servive-col {
    border-radius: 15px;
    box-shadow: rgb(99 99 99 / .2) 0 2px 8px 0;
    overflow: hidden;
    min-height: 280px;
    width: 100%;
    background: #fff
}

.service-img {
    margin: 10px;
    overflow: hidden;
    border-radius: 15px
}

.service-img img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    border-radius: 15px;
    transition: .5s;
    object-position: top;
}

.service-content {
    padding: 15px;
    overflow: hidden
}

.service-content h2 {
    font-size: 14px;
    font-weight: 600;
    line-height: 25px;

    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0px;
}

.service-content.sub-heading p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
    font-size: 13px;
}

.servive-col:hover .service-img img {
    transform: scale(1.1)
}
.mem-img-ph img{
    width: 100%;
    height: 265px;
    object-fit: cover;
}
.btn-custom {
    background: #1c403d;
    padding: 6px 25px;
    border-radius: 30px;
    color: #ffffff;
    border: 1px solid #1c403d;
    transition: .5s;
    font-size: 13px;
}

.btn-custom:hover {
    background: transparent;
    color: #21a35d !important;
    border: 1px solid #21a35d;
}
.form-card .input-group {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #000000;
}

.form-card .input-group .input-group-text {
    border-radius: 0;
    border: 0;
    background-color: #fff;
}
.infinity-icon img{
    width: 200px;
}
.date{
        font-size: 13px;
    margin-bottom: 5px;
    color: #ffffff;
    padding: 0 18px;
}
.service-img .date {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #fff;
    padding: 5px 10px;
    /* border: 1px solid #211d67; */
    border-bottom-right-radius: 13px;
        margin-bottom: 0;
}
.service-img .date h5{
color: #000;
    font-size: 13px;
    margin-bottom: 0;
    font-weight: 700;
    text-transform: capitalize;
}
.service-img .date h1{
    color: #089b4b;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 0px;
    line-height: 22px;
    text-align: center;
}
.service-img .date p{
color: #000;
    margin-bottom: 0;
    font-weight: 600;
}
.form-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px 30px;
    position: relative;
    z-index: 999;
    margin-left: -85px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.right-details-card h4 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.details-right-box-content h3 {
    font-size: 16px;
    margin-bottom: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #1c5646;
}

.details-right-box-content p {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 0;
    color: #575757;
}

.detail-right-box {
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px dashed #e9e9e9;
    padding: 10px 0;
    transition: .5s;
}

.detail-right-box:hover img {
    transform: scale(1.1);
}

.detail-right-box img {
    width: 100%;
    border-radius: 5px;
    transition: .5s;
}

.right-details-card {
    position: sticky;
    top: 120px;
}
.detail-right-box-img{
    width: 25%;
}   
.details-right-box-content{
    width: 75%;
}
.form-card .input-group .form-control{
    border: 0;
    font-size: 15px;
}
.form-card .input-group .form-control:focus{
    box-shadow: none ;
}
/* Responsive */
@media (max-width: 768px) {
    .hero-slide h1 {
        font-size: 28px;
    }

    .hero-slide .stat-number {
        font-size: 64px;
    }

    .quote-inner {
        flex-direction: column;
    }

    .quote-img-wrap {
        width: 100%;
    }

    .quote-img-placeholder {
        height: auto;
    }

    .event-card {
        width: 100%;
    }

    .mem-card {
        width: auto;
    }

    .pillars-section {
        padding: 30px 0 60px;
    }

    .pillar-card {
        width: 48%;
    }

    .pillars-section .tagline strong {
        font-size: 21px;
    }

    .pillars-section .tagline {
        font-size: 18px;
    }

    .quote-img-placeholder img {
        width: auto !important;
    }

    .quote-content .quote-mark {
        display: none;
    }

    .quote-section {
        padding: 45px 0;
    }

    .quote-inner {
        height: auto;
    }

    .quote-content {
        padding: 0;
    }

    .quote-content blockquote {
        font-size: 16px;
    }
    .section__page__header {
        padding: 35px 0;
    }
    .section__page__header.page-header-modern h1{
            font-size: 25px;
    }
    .section__page__header .nav-breadcrumb{
            padding: 4px 20px;
    }
    li.breadcrumb-item a{
        font-size: 14px;
    }
    li.breadcrumb-item.active {
    font-size: 14px;
}
.main-heading h2{
        font-size: 20px;
}
.infinity-icon img{
    width: 200px;
}
.prog-card .prog-img-ph{
    height: auto;
}
.prog-card .prog-img-ph img{
    width: 100%;
}
.form-card {
        padding: 20px 20px;
}
}