*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:'Poppins',sans-serif;

overflow-x:hidden;

background:#fff;

}

/* Colors */

:root{

--blue:#143d74;

--sky:#3ea5ff;

--green:#4caf50;

--purple:#6f4ac8;

--white:#fff;

--light:#f5f8fc;

}

/* Top Bar */

.top-bar{

background:#143d74;

color:#fff;

padding:10px 0;

font-size:14px;

}

.top-bar a{

color:white;

margin-left:15px;

transition:.3s;

}

.top-bar a:hover{

color:#ffc107;

}

/* Navbar */

.navbar{

background:rgba(20,61,116,.92);

backdrop-filter:blur(15px);

}

.navbar-brand h5{

font-weight:700;

margin-bottom:0;

}

.nav-link{

color:white!important;

margin:0 10px;

font-weight:500;

transition:.3s;

}

.nav-link:hover{

color:#ffc107!important;

}

.register-btn{

background:#4caf50;

color:white;

padding:10px 25px;

border-radius:40px;

font-weight:600;

}

.register-btn:hover{

background:#2f9133;

color:white;

}

/* Hero */

.hero{

position:relative;

padding:110px 0;

background:linear-gradient(135deg,#143d74,#2d79c7,#4caf50);

color:white;

overflow:hidden;

}

.hero::before{

content:"";

position:absolute;

width:700px;

height:700px;

background:rgba(255,255,255,.08);

border-radius:50%;

right:-250px;

top:-180px;

}

.hero h1{

font-size:65px;

font-weight:800;

}

.hero h1 span{

color:#FFD54F;

}

.hero h3{

margin:25px 0;

font-weight:400;

line-height:1.6;

}

.hero p{

font-size:18px;

line-height:1.8;

}

.hero-logo{

max-width:420px;

animation:float 4s infinite ease-in-out;

}

.btn-main{

background:#FFD54F;

padding:14px 35px;

border-radius:50px;

font-weight:700;

color:#143d74;

}

.btn-main:hover{

background:white;

}

.wave{

position:absolute;

bottom:0;

left:0;

width:100%;

height:90px;

background:white;

clip-path:polygon(0 55%,100% 0,100% 100%,0 100%);

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}



/*==========================
WELCOME
==========================*/

.welcome{

background:#ffffff;

padding:90px 0;

}

.welcome-img{

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.15);

transition:.4s;

}

.welcome-img:hover{

transform:scale(1.03);

}

.section-tag{

display:inline-block;

padding:8px 20px;

background:#E8F3FF;

color:#143d74;

font-weight:600;

border-radius:30px;

margin-bottom:15px;

}

.section-title{

font-size:42px;

font-weight:700;

margin-bottom:25px;

}

.section-title span{

color:#4CAF50;

}

.welcome p{

font-size:17px;

line-height:1.9;

color:#666;

}

/*==========================
HIGHLIGHTS
==========================*/

.highlights{

background:#f5f8fc;

padding:90px 0;

}

.highlight-card{

background:#fff;

padding:40px 30px;

border-radius:20px;

text-align:center;

transition:.4s;

height:100%;

box-shadow:0 10px 30px rgba(0,0,0,.08);

position:relative;

overflow:hidden;

}

.highlight-card::before{

content:"";

position:absolute;

top:0;

left:-100%;

width:100%;

height:5px;

background:linear-gradient(90deg,#143d74,#4CAF50);

transition:.5s;

}

.highlight-card:hover::before{

left:0;

}

.highlight-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.icon{

width:90px;

height:90px;

background:linear-gradient(135deg,#143d74,#4CAF50);

margin:auto;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:35px;

color:white;

margin-bottom:25px;

transition:.4s;

}

.highlight-card:hover .icon{

transform:rotate(360deg);

}

.highlight-card h4{

font-weight:700;

margin-bottom:15px;

}

.highlight-card p{

color:#666;

line-height:1.8;
}


/*==============================
THEME
==============================*/

.theme-section{

padding:90px 0;

background:#fff;

}

.theme-card{

background:#fff;

padding:40px;

text-align:center;

border-radius:25px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.theme-card:hover{

transform:translateY(-10px);

}

.theme-icon{

width:100px;

height:100px;

background:linear-gradient(135deg,#143d74,#3ea5ff);

color:white;

margin:auto;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:40px;

margin-bottom:25px;

}

.theme-icon.green{

background:linear-gradient(135deg,#4CAF50,#8BC34A);

}

.theme-icon.purple{

background:linear-gradient(135deg,#6f42c1,#9C27B0);

}

/*==============================
COUNTER
==============================*/

.counter-section{

padding:90px 0;

background:linear-gradient(135deg,#143d74,#4CAF50);

color:white;

}

.counter-box{

padding:30px;

}

.counter-box h2{

font-size:60px;

font-weight:700;

}

.counter-box p{

font-size:20px;

}

/*==============================
COUNTDOWN
==============================*/

.countdown-section{

padding:90px 0;

background:#143d74;

}

.time-box{

background:white;

padding:25px;

border-radius:20px;

box-shadow:0 15px 30px rgba(0,0,0,.15);

}

.time-box h2{

font-size:42px;

font-weight:700;

color:#143d74;

}

.time-box span{

font-weight:600;

color:#555;

}
/*================================
IMPORTANT DATES
================================*/

.important-dates{

background:#f8fbff;

padding:90px 0;

}

.timeline{

position:relative;

max-width:800px;

margin:auto;

}

.timeline::before{

content:"";

position:absolute;

left:30px;

top:0;

bottom:0;

width:4px;

background:#d9e8ff;

}

.timeline-item{

display:flex;

margin-bottom:40px;

position:relative;

}

.timeline-dot{

width:22px;

height:22px;

border-radius:50%;

margin-right:25px;

z-index:2;

box-shadow:0 0 0 6px #fff;

}

.timeline-content{

background:#fff;

padding:20px;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

width:100%;

transition:.3s;

}

.timeline-content:hover{

transform:translateX(10px);

}

.timeline-content h5{

margin-bottom:8px;

font-weight:600;

}

/*================================
REGISTER CTA
================================*/

.register-cta{

background:linear-gradient(135deg,#143d74,#4CAF50);

padding:70px 0;

color:#fff;

}

.register-cta h2{

font-weight:700;

margin-bottom:15px;

}

.btn-register-now{

background:#fff;

color:#143d74;

padding:15px 35px;

font-weight:700;

border-radius:50px;

transition:.3s;

}

.btn-register-now:hover{

background:#FFD54F;

color:#143d74;

transform:translateY(-3px);

}
/* Venue */

.venue{

padding:90px 0;

}

.venue-img{

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.15);

}

/* Gallery */

.gallery-section{

padding:90px 0;

background:#f8fbff;

}

.gallery-img{

width:100%;

border-radius:20px;

transition:.4s;

cursor:pointer;

}

.gallery-img:hover{

transform:scale(1.05);

}

/* Sponsors */

.sponsors{

padding:80px 0;

}

.sponsor-logo{

max-width:150px;

opacity:.7;

transition:.3s;

}

.sponsor-logo:hover{

opacity:1;

transform:scale(1.1);

}

/* Footer */

footer{

background:#143d74;

color:white;

padding:70px 0 20px;

}

.footer-links{

padding:0;

list-style:none;

}

.footer-links li{

margin:12px 0;

}

.footer-links a{

color:white;

text-decoration:none;

}

.footer-links a:hover{

color:#FFD54F;

}

/* WhatsApp */

.whatsapp{

position:fixed;

right:25px;

bottom:90px;

width:60px;

height:60px;

background:#25D366;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:white;

font-size:30px;

text-decoration:none;

box-shadow:0 10px 25px rgba(0,0,0,.2);

z-index:999;

}

/* Top Button */

#topBtn{

position:fixed;

right:25px;

bottom:20px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#143d74;

color:white;

font-size:22px;

display:none;

cursor:pointer;

z-index:999;

}
.page-banner{

padding:120px 0;

background:linear-gradient(135deg,#143d74,#4CAF50);

color:white;

text-align:center;

}

.page-banner h1{

font-size:55px;

font-weight:700;

}

.theme-box{

background:white;

padding:40px;

border-radius:20px;

box-shadow:0 15px 30px rgba(0,0,0,.1);

}

.vision{

background:#f8fbff;

}

.vision-card{

background:white;

padding:40px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.1);

height:100%;

transition:.3s;

}

.vision-card:hover{

transform:translateY(-10px);

}

.vision-card i{

font-size:45px;

color:#143d74;

margin-bottom:20px;

}
/*==========================
COMMITTEE
==========================*/

.committee-section{

padding:90px 0;

}

.committee-card{

background:#fff;

border-radius:20px;

padding:35px;

text-align:center;

box-shadow:0 15px 30px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.committee-card:hover{

transform:translateY(-10px);

}

.committee-card img{

width:140px;

height:140px;

object-fit:cover;

border-radius:50%;

border:5px solid #4CAF50;

margin-bottom:20px;

}

.designation{

color:#4CAF50;

font-weight:600;

}

.committee-mini{

background:white;

padding:25px;

border-radius:15px;

text-align:center;

box-shadow:0 8px 20px rgba(0,0,0,.08);

transition:.3s;

}

.committee-mini:hover{

transform:translateY(-8px);

}

.committee-mini img{

width:90px;

height:90px;

border-radius:50%;

object-fit:cover;

margin-bottom:15px;

border:3px solid #143d74;

}

.committee-mini h6{

margin:0;

font-weight:600;

}

/*==================================
REGISTRATION TABLE
===================================*/

.registration-fees{

    background:#f8fbff;

}

.registration-table{

    border-collapse:separate;

    border-spacing:0;

    overflow:hidden;

    border-radius:18px;

    background:#fff;

}

.registration-table thead th{

    background:linear-gradient(135deg,#143d74,#1d5b96);

    color:#fff;

    padding:20px 15px;

    font-size:17px;

    font-weight:700;

    border:1px solid rgba(255,255,255,.15);

}

.registration-table thead small{

    color:#d9ecff;

    font-size:13px;

}

.registration-table tbody td{

    padding:18px 15px;

    border:1px solid #dee2e6;

    font-size:16px;

}

.registration-table tbody tr:nth-child(even){

    background:#f7fbff;

}

.registration-table tbody tr:hover{

    background:#e8f4ff;

    transition:.3s;

}

.registration-table tbody td:first-child{

    color:#143d74;

    font-weight:600;

    background:#eef7ff;

}

.registration-table{

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.registration-table td{

    vertical-align:middle;

}

.registration-table th{

    vertical-align:middle;

}

/*=========================================
Conference Subthemes
=========================================*/

.subthemes-section{
    background:linear-gradient(180deg,#f8fbff,#eef8f3);
}

.theme-card{
    background:#fff;
    border-radius:22px;
    padding:30px 22px;
    text-align:center;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    border-top:5px solid #4CAF50;
    position:relative;
    overflow:hidden;
}

.theme-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#143d74,#4CAF50,#FFD54F);
}

.theme-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(20,61,116,.18);
}

.theme-icon{
    width:75px;
    height:75px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#143d74,#4CAF50);
    color:#fff;
    font-size:30px;
}

.theme-card h5{
    color:#143d74;
    font-weight:700;
    font-size:18px;
    line-height:1.5;
    margin-bottom:0;
}

@media (max-width:768px){

.theme-card{
    padding:25px 18px;
}

.theme-card h5{
    font-size:16px;
}

}

/* =========================================
   POPULAR PLACES SECTION
========================================= */

.places-section {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f5faff 50%,
        #eef8f2 100%
    );
}


/* Section subtitle */

.section-subtitle {
    max-width: 750px;
    margin: 15px auto 0;
    color: #666;
    line-height: 1.8;
}


/* =========================================
   PLACE CARD
========================================= */

.place-card {
    position: relative;
    height: 430px;
    overflow: hidden;
    border-radius: 24px;
    background: #143d74;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
    transition: all 0.4s ease;
}

.place-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(20, 61, 116, 0.22);
}


/* Image */

.place-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.place-card:hover img {
    transform: scale(1.08);
}


/* =========================================
   OVERLAY
========================================= */

.place-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 28px;

    background:
        linear-gradient(
            to top,
            rgba(8, 30, 60, 0.95) 0%,
            rgba(8, 30, 60, 0.70) 35%,
            rgba(8, 30, 60, 0.10) 75%,
            rgba(8, 30, 60, 0) 100%
        );
}


/* =========================================
   CONTENT
========================================= */

.place-content {
    width: 100%;
    color: #fff;
}

.place-number {
    display: inline-flex;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    margin-bottom: 12px;

    border-radius: 50%;

    background: #4CAF50;

    color: #fff;

    font-size: 14px;
    font-weight: 700;
}


.place-content h3 {
    margin-bottom: 10px;

    color: #fff;

    font-size: 26px;
    font-weight: 700;
}


.place-content p {
    margin-bottom: 18px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   EXPLORE BUTTON
========================================= */

.place-btn {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    padding: 9px 18px;

    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 30px;

    color: #fff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.place-btn:hover {
    background: #4CAF50;
    border-color: #4CAF50;

    color: #fff;

    transform: translateX(5px);
}


/* =========================================
   MAIN CTA
========================================= */

.places-main-btn {
    padding: 13px 28px;

    border: none;
    border-radius: 30px;

    background: linear-gradient(
        135deg,
        #143d74,
        #4CAF50
    );

    color: #fff;

    font-weight: 600;

    box-shadow: 0 10px 25px rgba(20, 61, 116, 0.20);

    transition: all 0.3s ease;
}

.places-main-btn:hover {
    color: #fff;

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(20, 61, 116, 0.30);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .place-card {
        height: 400px;
    }

    .place-content h3 {
        font-size: 23px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .places-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .place-card {
        height: 390px;

        border-radius: 20px;
    }

    .place-overlay {
        padding: 22px;
    }

    .place-content h3 {
        font-size: 22px;
    }

    .place-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .place-number {
        width: 38px;
        height: 38px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .place-card {
        height: 360px;
    }

    .place-overlay {
        padding: 18px;
    }

    .place-content h3 {
        font-size: 20px;
    }

}
/* =========================================
   COMMITTEE MEMBERS
========================================= */

.committee-section {
    background: #ffffff;
}

.committee-light {
    background: #f5f9fd;
}


/* =========================================
   PATRONS / OFFICE MEMBER CARD
========================================= */

.member-card {

    position: relative;

    height: 100%;

    padding: 35px 25px;

    text-align: center;

    background: #ffffff;

    border-radius: 20px;

    border: 1px solid #e8eef5;

    box-shadow: 0 10px 30px rgba(20, 61, 116, 0.08);

    overflow: hidden;

    transition: all 0.35s ease;
}


.member-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(
        90deg,
        #143d74,
        #4CAF50,
        #FFD54F
    );
}


.member-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(20, 61, 116, 0.15);

}


.member-icon {

    width: 68px;
    height: 68px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #143d74,
        #4CAF50
    );

    color: #ffffff;

    font-size: 27px;

    box-shadow:
        0 8px 20px rgba(20, 61, 116, 0.20);
}


.member-card h4 {

    margin-bottom: 10px;

    color: #143d74;

    font-size: 20px;

    font-weight: 700;

}


.member-card h5 {

    margin-bottom: 8px;

    color: #143d74;

    font-size: 17px;

    font-weight: 700;

}


.member-card p {

    margin: 0;

    color: #4CAF50;

    font-size: 15px;

    font-weight: 600;

}


/* =========================================
   OFFICE BEARERS
========================================= */

.office-member {

    padding: 30px 20px;

}


.office-member .member-icon {

    width: 60px;
    height: 60px;

    font-size: 24px;

}


/* =========================================
   ADVISORS
========================================= */

.advisor-member {

    display: flex;

    align-items: center;

    gap: 15px;

    min-height: 78px;

    padding: 16px 20px;

    background: #ffffff;

    border: 1px solid #e7edf3;

    border-radius: 15px;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);

    transition: all 0.3s ease;
}


.advisor-member:hover {

    transform: translateX(5px);

    border-color: #4CAF50;

    box-shadow:
        0 10px 25px rgba(76, 175, 80, 0.12);
}


.advisor-member > i {

    flex-shrink: 0;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eaf5ed;

    color: #4CAF50;

    font-size: 18px;
}


.advisor-member strong {

    display: block;

    color: #143d74;

    font-size: 16px;

    margin-bottom: 3px;
}


.advisor-member small {

    display: block;

    color: #777;

    font-size: 13px;
}


/* =========================================
   ORGANISING COMMITTEE
========================================= */

.organising-member {

    display: flex;

    align-items: center;

    gap: 18px;

    height: 100%;

    padding: 22px;

    background: #ffffff;

    border-radius: 17px;

    border: 1px solid #e7edf3;

    box-shadow:
        0 8px 25px rgba(20, 61, 116, 0.07);

    transition: all 0.35s ease;
}


.organising-member:hover {

    transform: translateY(-6px);

    border-color: #4CAF50;

    box-shadow:
        0 15px 35px rgba(20, 61, 116, 0.13);
}


.role-icon {

    flex-shrink: 0;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: linear-gradient(
        135deg,
        #143d74,
        #4CAF50
    );

    color: #ffffff;

    font-size: 23px;
}


.organising-member h5 {

    margin: 0 0 6px;

    color: #143d74;

    font-size: 17px;

    font-weight: 700;
}


.organising-member span {

    color: #4CAF50;

    font-size: 14px;

    font-weight: 600;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .committee-section {

        padding-top: 60px !important;

        padding-bottom: 60px !important;

    }


    .member-card {

        padding: 30px 20px;

    }


    .member-card h4 {

        font-size: 18px;

    }


    .advisor-member {

        padding: 15px;

    }


    .organising-member {

        padding: 18px;

    }


    .role-icon {

        width: 52px;
        height: 52px;

        font-size: 20px;

    }


    .organising-member h5 {

        font-size: 16px;

    }

}
/* Registration Table Header */

.th-category {
    background: #143d74 !important;
    color: #fff !important;
}

.th-early {
    background: #198754 !important;
    color: #fff !important;
}

.th-phase2 {
    background: #0d6efd !important;
    color: #fff !important;
}

.th-phase3 {
    background: #fd7e14 !important;
    color: #fff !important;
}

.th-onsite {
    background: #dc3545 !important;
    color: #fff !important;
}


/* Small date text */

thead th small {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 12px;
}