body{

    background: #f4f8f7;
}



/* HERO */

.events-hero{

    padding: 70px 0;
}

.events-hero-grid{

    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 70px;
    align-items: center;
}

.events-label{

    display: inline-block;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;

    color: #ff7a00;

    margin-bottom: 22px;
}

.events-hero-content h1{

    font-size: 78px;
    line-height: 1.02;
    font-weight: 800;

    color: #005b4f;

    margin-bottom: 24px;
}

.events-hero-content p{

    font-size: 20px;
    line-height: 1.9;

    color: #667085;

    max-width: 720px;

    margin-bottom: 34px;
}

.events-tags{

    display: flex;
    gap: 16px;
    flex-wrap: wrap;

    margin-bottom: 34px;
}

.events-tags span{

    padding: 12px 22px;

    border-radius: 60px;

    background: rgba(0,166,147,0.08);

    color: #00a693;

    font-size: 13px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.events-tags span:hover{

    background: #00a693;
    color: #fff;

    transform: translateY(-4px);
}

.events-buttons{

    display: flex;
    gap: 20px;
}

.events-hero-card{

    background: #fff;

    border-radius: 36px;

    overflow: hidden;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.06);
}

.events-hero-card img{

    width: 100%;
    height: 340px;

    object-fit: cover;
}

.events-card-content{

    padding: 36px;
}

.events-card-badge{

    display: inline-block;

    padding: 10px 20px;

    border-radius: 40px;

    background: rgba(0,166,147,0.08);

    color: #667085;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 24px;
}

.events-card-content h3{

    font-size: 48px;
    line-height: 1.08;

    color: #0f172a;

    margin-bottom: 18px;
}

.events-card-content p{

    font-size: 17px;
    line-height: 1.8;

    color: #667085;

    margin-bottom: 28px;
}



/* SECTION */

.upcoming-events{

    padding: 40px 0 90px;
}

.section-heading{

    margin-bottom: 50px;
}

.section-heading span{

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 4px;

    color: #ff7a00;

    display: block;

    margin-bottom: 16px;
}

.section-heading h2{

    font-size: 68px;
    line-height: 1.05;

    color: #005b4f;

    margin-bottom: 10px;
}

.section-heading a{

    color: #00a693;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;
}



/* CARDS */

.events-grid{

    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.event-card{

    background: #fff;

    border-radius: 32px;

    overflow: hidden;

    box-shadow:
    0 18px 40px rgba(0,0,0,0.05);

    transition: all 0.35s ease;
}

.event-card:hover{

    transform: translateY(-10px);
}

.event-image{

    position: relative;
}

.event-image img{

    width: 100%;
    height: 260px;

    object-fit: cover;
}

.event-date{

    position: absolute;

    left: 24px;
    bottom: 24px;

    background: #00a693;
    color: #fff;

    padding: 10px 18px;

    border-radius: 40px;

    font-size: 13px;
    font-weight: 700;
}

.event-content{

    padding: 34px;
}

.event-content span{

    display: block;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #ff7a00;

    margin-bottom: 18px;
}

.event-content h3{

    font-size: 42px;
    line-height: 1.1;

    color: #0f172a;

    margin-bottom: 18px;
}

.event-content p{

    font-size: 16px;
    line-height: 1.8;

    color: #667085;

    margin-bottom: 20px;
}

.event-meta{

    display: flex;
    flex-direction: column;
    gap: 10px;

    margin-bottom: 20px;

    color: #475467;

    font-size: 14px;
}

.event-content h4{

    font-size: 24px;
    color: #101828;

    margin-bottom: 4px;
}

.doctor-role{

    margin-bottom: 26px !important;
}

.register-btn{

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 180px;
    height: 54px;

    border-radius: 60px;

    background: #00a693;
    color: #fff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.register-btn:hover{

    background: #008f7d;

    transform: translateY(-4px);
}



/* FEATURED */

.featured-event{

    padding: 30px 0 100px;
}

.featured-grid{

    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 60px;
    align-items: center;
}

.featured-content span{

    display: block;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 4px;

    color: #ff7a00;

    margin-bottom: 18px;
}

.featured-content h2{

    font-size: 68px;
    line-height: 1.05;

    color: #005b4f;

    margin-bottom: 24px;
}

.featured-content p{

    font-size: 18px;
    line-height: 1.9;

    color: #667085;

    margin-bottom: 30px;
}

.featured-meta{

    display: flex;
    gap: 18px;
    flex-wrap: wrap;

    margin-bottom: 36px;

    color: #475467;

    font-size: 15px;
}

.featured-image-card{

    position: relative;

    border-radius: 36px;

    overflow: hidden;
}

.featured-image-card img{

    width: 100%;
    height: 620px;

    object-fit: cover;
}

.featured-floating-card{

    position: absolute;

    left: 30px;
    bottom: 30px;

    background: rgba(255,255,255,0.96);

    backdrop-filter: blur(12px);

    border-radius: 24px;

    padding: 26px;

    width: 320px;
}

.featured-floating-card span{

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #ff7a00;

    display: block;

    margin-bottom: 12px;
}

.featured-floating-card h4{

    font-size: 26px;
    line-height: 1.2;

    color: #101828;

    margin-bottom: 12px;
}

.featured-floating-card p{

    font-size: 15px;
    line-height: 1.7;

    color: #667085;
}



/* SUGGEST */

.suggest-section{

    padding-bottom: 120px;
}

.suggest-box{

    background:
    linear-gradient(
    135deg,
    #005b4f,
    #00a693
    );

    border-radius: 40px;

    padding: 70px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;

    flex-wrap: wrap;
}

.suggest-content span{

    display: block;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 4px;

    color: rgba(255,255,255,0.7);

    margin-bottom: 18px;
}

.suggest-content h2{

    font-size: 64px;
    line-height: 1.05;

    color: #fff;

    margin-bottom: 20px;
}

.suggest-content p{

    font-size: 18px;
    line-height: 1.9;

    color: rgba(255,255,255,0.8);
}

.suggest-form{

    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.suggest-form input{

    width: 320px;
    height: 62px;

    border: none;
    outline: none;

    border-radius: 60px;

    padding: 0 24px;

    font-size: 14px;
}

.suggest-form button{

    height: 62px;

    padding: 0 34px;

    border: none;

    border-radius: 60px;

    background: #fff;
    color: #005b4f;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: all 0.35s ease;
}

.suggest-form button:hover{

    transform: translateY(-4px);
}



/* FLOATING CTA */

.floating-cta{

    position: fixed;

    right: 30px;
    bottom: 30px;

    width: 62px;
    height: 62px;

    border-radius: 50%;

    background: #00a693;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    text-decoration: none;

    font-size: 24px;

    z-index: 9999;

    box-shadow:
    0 12px 30px rgba(0,166,147,0.35);

    transition: all 0.35s ease;
}

.floating-cta:hover{

    transform: translateY(-6px) scale(1.08);
}



/* RESPONSIVE */

@media(max-width:1100px){

.events-hero-grid,
.featured-grid{

    grid-template-columns: 1fr;
}

.events-grid{

    grid-template-columns: 1fr;
}

.events-hero-content h1,
.section-heading h2,
.featured-content h2,
.suggest-content h2{

    font-size: 52px;
}
}
/* =========================
BUTTON FIX
========================= */

.primary-btn,
.secondary-btn,
.small-btn{

    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 58px;
    padding: 0 34px;

    border-radius: 60px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;

    transition: all 0.35s ease;
}

.primary-btn{

    background: #00a693;
    color: #ffffff;
}

.primary-btn:hover{

    background: #008c7b;

    transform: translateY(-4px);

    box-shadow:
    0 14px 30px rgba(0,166,147,0.22);
}

.secondary-btn{

    border: 1px solid #d8dfdd;

    background: #ffffff;
    color: #005b4f;
}

.secondary-btn:hover{

    background: #005b4f;
    color: #ffffff;

    transform: translateY(-4px);
}



/* =========================
HERO TAGS FIX
========================= */

.events-tags{

    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-bottom: 34px;
}

.events-tags span{

    padding: 13px 24px;

    border-radius: 60px;

    background: rgba(0,166,147,0.08);

    color: #00a693;

    font-size: 13px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.events-tags span:hover{

    background: #00a693;
    color: #ffffff;

    transform: translateY(-3px);
}



/* =========================
UPCOMING EVENTS FIX
========================= */

.events-grid{

    display: grid;
    grid-template-columns: repeat(3,1fr);

    gap: 28px;
}

.event-card{

    background: #ffffff;

    border-radius: 30px;

    overflow: hidden;

    box-shadow:
    0 16px 40px rgba(15,23,42,0.05);

    transition: all 0.35s ease;
}

.event-card:hover{

    transform: translateY(-8px);
}

.event-image{

    position: relative;
}

.event-image img{

    width: 100%;
    height: 220px;

    object-fit: cover;

    display: block;
}

.event-date{

    position: absolute;

    left: 24px;
    bottom: 24px;

    background: #00a693;
    color: #ffffff;

    padding: 10px 18px;

    border-radius: 40px;

    font-size: 13px;
    font-weight: 700;
}

.event-content{

    padding: 30px;
}

.event-content span{

    display: block;

    margin-bottom: 16px;

    color: #ff7a00;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;
}

.event-content h3{

    font-size: 30px;
    line-height: 1.15;

    color: #0f172a;

    margin-bottom: 16px;
}

.event-content p{

    font-size: 16px;
    line-height: 1.8;

    color: #667085;

    margin-bottom: 18px;
}

.event-meta{

    display: flex;
    flex-direction: column;

    gap: 10px;

    margin-bottom: 20px;

    color: #475467;

    font-size: 14px;
}

.event-content h4{

    font-size: 18px;

    color: #101828;

    margin-bottom: 4px;
}

.doctor-role{

    color: #667085;

    font-size: 14px;

    margin-bottom: 22px !important;
}

.register-btn{

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 170px;
    height: 52px;

    border-radius: 60px;

    background: #00a693;
    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.35s ease;
}

.register-btn:hover{

    background: #008c7b;

    transform: translateY(-4px);
}



/* =========================
FEATURED EVENT FIX
========================= */

.featured-event{

    padding: 90px 0;
}

.featured-grid{

    display: grid;
    grid-template-columns: 1fr 520px;

    gap: 70px;

    align-items: center;
}

.featured-content{

    width: 100%;
}

.featured-content span{

    display: block;

    margin-bottom: 18px;

    color: #ff7a00;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 4px;
}

.featured-content h2{

    font-size: 68px;
    line-height: 1.02;

    color: #005b4f;

    margin-bottom: 24px;
}

.featured-content p{

    font-size: 18px;
    line-height: 1.9;

    color: #667085;

    margin-bottom: 30px;

    max-width: 700px;
}

.featured-meta{

    display: flex;
    flex-wrap: wrap;

    gap: 20px;

    margin-bottom: 34px;

    color: #475467;

    font-size: 15px;
}

.featured-image-card{

    position: relative;

    border-radius: 34px;

    overflow: hidden;
}

.featured-image-card img{

    width: 100%;
    height: 620px;

    object-fit: cover;

    display: block;
}

.featured-floating-card{

    position: absolute;

    left: 30px;
    bottom: 30px;

    width: 320px;

    background: rgba(255,255,255,0.96);

    border-radius: 26px;

    padding: 28px;

    box-shadow:
    0 20px 40px rgba(0,0,0,0.08);
}

.featured-floating-card span{

    display: block;

    margin-bottom: 12px;

    color: #ff7a00;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;
}

.featured-floating-card h4{

    font-size: 30px;
    line-height: 1.2;

    color: #101828;

    margin-bottom: 12px;
}

.featured-floating-card p{

    font-size: 15px;
    line-height: 1.7;

    color: #667085;
}



/* =========================
SUGGEST SECTION FIX
========================= */

.suggest-section{

    padding-bottom: 120px;
}

.suggest-box{

    background:
    linear-gradient(
    135deg,
    #005b4f,
    #00a693
    );

    border-radius: 40px;

    padding: 70px;

    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 36px;
}

.suggest-content span{

    display: block;

    margin-bottom: 18px;

    color: rgba(255,255,255,0.7);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 4px;
}

.suggest-content h2{

    font-size: 66px;
    line-height: 1.05;

    color: #ffffff;

    margin-bottom: 20px;
}

.suggest-content p{

    max-width: 760px;

    color: rgba(255,255,255,0.85);

    font-size: 18px;
    line-height: 1.9;
}

.suggest-form{

    display: flex;
    gap: 18px;

    align-items: center;

    flex-wrap: wrap;
}

.suggest-form input{

    width: 340px;
    height: 60px;

    border: none;
    outline: none;

    border-radius: 60px;

    padding: 0 24px;

    font-size: 15px;
}

.suggest-form button{

    height: 60px;

    padding: 0 36px;

    border: none;

    border-radius: 60px;

    background: #ffffff;
    color: #005b4f;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: all 0.35s ease;
}

.suggest-form button:hover{

    transform: translateY(-4px);
}



/* =========================
FOOTER ICON FIX
========================= */

.footer-socials{

    display: flex;
    gap: 14px;

    margin-top: 20px;
}

.footer-socials a{

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    text-decoration: none;

    transition: all 0.3s ease;
}

.footer-socials a:hover{

    background: #00a693;

    transform: translateY(-4px);
}



/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

.events-grid{

    grid-template-columns: 1fr;
}

.featured-grid,
.events-hero-grid{

    grid-template-columns: 1fr;
}

.events-hero-content h1,
.featured-content h2,
.suggest-content h2{

    font-size: 52px;
}
}/* =========================================
SOCIAL ICON FIX
========================================= */

.footer-socials a{

    background: rgba(255,255,255,0.10);
    color: #ffffff;

    transition: all 0.3s ease;
}

.footer-socials a:hover{

    background: #ff7a00;
    color: #ffffff;

    transform: translateY(-4px);
}

.footer-socials i{

    font-size: 15px;
}


/* =========================================
BUTTON HOVER FIX
========================================= */

.primary-btn,
.register-btn,
.connect-btn{

    transition: all 0.35s ease;
}

.primary-btn:hover,
.register-btn:hover,
.connect-btn:hover{

    background: #ff7a00 !important;
    color: #ffffff !important;

    transform: translateY(-4px);

    box-shadow:
    0 16px 35px rgba(255,122,0,0.28);
}

.secondary-btn:hover{

    background: #ff7a00 !important;
    border-color: #ff7a00 !important;

    color: #ffffff !important;

    transform: translateY(-4px);
}


/* =========================================
VIEW ALL EVENTS ALIGNMENT
========================================= */

.events-heading-row{

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 42px;
}

.view-all-link{

    color: #00a693;
    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.view-all-link:hover{

    color: #ff7a00;
}


/* =========================================
FONT SIZE REDUCTION
========================================= */

.events-hero-content h1{

    font-size: 72px;
    line-height: 1.02;
}

.section-title h2{

    font-size: 56px;
}

.featured-content h2{

    font-size: 58px;
}

.event-content h3{

    font-size: 28px;
}

.suggest-content h2{

    font-size: 54px;
}


/* =========================================
UPCOMING SECTION SPACING FIX
========================================= */

.upcoming-events{

    padding-top: 90px;
}

.event-card{

    min-height: auto;
}

.event-content{

    padding: 26px;
}


/* =========================================
FOOTER FREEZE FIX
========================================= */

.footer{

    background:
    linear-gradient(
    135deg,
    #005b4f,
    #00695c
    );

    padding: 90px 0 36px;

    border-radius: 40px 40px 0 0;

    margin-top: 120px;
}

.footer-grid{

    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;

    gap: 80px;
}

.footer-logo{

    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 24px;
}

.footer-logo img{

    width: 54px;
}

.footer-logo h2{

    font-size: 56px;
    line-height: 1;

    color: #ffffff;
}

.footer p,
.footer a,
.footer li{

    font-size: 16px;
    line-height: 1.9;

    color: rgba(255,255,255,0.82);

    text-decoration: none;
}

.footer h4{

    font-size: 28px;
    color: #ffffff;

    margin-bottom: 24px;
}

.footer-links ul{

    list-style: none;
    padding: 0;
}

.footer-links li{

    margin-bottom: 14px;
}

.footer-links a:hover{

    color: #ff7a00;
}

.footer-bottom{

    border-top:
    1px solid rgba(255,255,255,0.10);

    margin-top: 60px;
    padding-top: 30px;

    text-align: center;
}


/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1100px){

.events-heading-row,
.footer-grid{

    grid-template-columns: 1fr;
    display: grid;
}

.events-hero-content h1,
.featured-content h2,
.suggest-content h2{

    font-size: 46px;
}

.footer-logo h2{

    font-size: 42px;
}
}
/* =========================================
UPCOMING EVENTS SECTION FIX
========================================= */

.upcoming-events{

    padding: 90px 0 90px;
}

.events-heading-row{

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 42px;
}

.section-heading{

    margin-bottom: 0;
}

.section-heading h2{

    font-size: 56px;
    line-height: 1.05;

    color: #005b4f;

    margin-bottom: 0;
}

.view-all-link{

    color: #00a693;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.view-all-link:hover{

    color: #ff7a00;
}



/* =========================================
EVENT GRID FIX
========================================= */

.events-grid{

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

    align-items: start;
}

.event-card{

    background: #ffffff;

    border-radius: 30px;

    overflow: hidden;

    box-shadow:
    0 16px 40px rgba(15,23,42,0.05);

    transition: all 0.35s ease;

    height: auto;
}

.event-card:hover{

    transform: translateY(-8px);
}

.event-image img{

    width: 100%;
    height: 220px;

    object-fit: cover;

    display: block;
}

.event-content{

    padding: 26px;
}

.event-content h3{

    font-size: 26px;
    line-height: 1.15;

    color: #0f172a;

    margin-bottom: 16px;
}

.event-content p{

    font-size: 15px;
    line-height: 1.75;

    color: #667085;

    margin-bottom: 18px;
}

.event-content h4{

    font-size: 17px;

    color: #101828;

    margin-bottom: 2px;
}

.doctor-role{

    font-size: 14px;

    color: #667085;

    margin-bottom: 20px !important;
}

.event-meta{

    gap: 8px;

    margin-bottom: 18px;

    font-size: 14px;
}

.register-btn{

    width: 160px;
    height: 50px;

    font-size: 14px;
}



/* =========================================
RESPONSIVE FIX
========================================= */

@media(max-width:1100px){

.events-heading-row{

    flex-direction: column;
    align-items: flex-start;

    gap: 18px;
}

.events-grid{

    grid-template-columns: 1fr;
}
}/* =========================================
VIEW ALL EVENTS RIGHT ALIGN FIX
========================================= */

.events-heading-row{

    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;

    width: 100%;
}

.view-all-link{

    margin-left: auto;
    text-align: right;

    display: inline-block;
}
/* =========================================
   UPCOMING EVENTS HEADER FIX
========================================= */

.events-heading-row{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:40px;
    margin-bottom:50px;
}

.section-heading{
    margin-bottom:0 !important;
}

.section-heading span{
    display:block;
    font-size:14px;
    font-weight:700;
    letter-spacing:6px;
    text-transform:uppercase;
    color:#ff6b00;
    margin-bottom:18px;
}

.section-heading h2{
    font-size:72px;
    line-height:1;
    font-weight:800;
    color:#005f56;
    margin:0;
}

.view-all-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    white-space:nowrap;
    font-size:15px;
    font-weight:700;
    text-decoration:none;
    color:#009688;
    transition:all .3s ease;
    margin-bottom:10px;
}

.view-all-link:hover{
    color:#ff6b00;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .events-heading-row{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    .section-heading h2{
        font-size:52px;
    }

}

@media(max-width:767px){

    .section-heading h2{
        font-size:40px;
        line-height:1.1;
    }

}