/*====================================================
GOOGLE FONT
====================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*====================================================
ROOT
====================================================*/

:root{

--primary:#007690;
--primary-dark:#005d72;
--primary-light:#16a7c4;

--secondary:#f4b400;
--secondary-light:#ffca28;

--white:#ffffff;
--black:#222222;

--text:#5d6d7e;

--bg:#f7fbfd;

--footer-navy:#0a1f4d;

}

/*====================================================
RESET
====================================================*/

*{

margin:0;

padding:0;

box-sizing:border-box;

}

body{

font-family:'Poppins',sans-serif;

background:var(--bg);

color:#222;

line-height:1.7;

overflow-x:hidden;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

transition:.3s;

}

ul{

list-style:none;

}

.container{

width:100%;

max-width:1200px;

margin:auto;

padding:0 15px;

}

/*====================================================
HEADER (legacy — no longer used, page now uses .cs-header
from index.html so both headers match. Kept only so nothing
breaks if these classes are referenced elsewhere.)
====================================================*/

.site-header{

position:relative;

width:100%;

background:#fff;

}

.header-inner{

display:flex;

align-items:center;

justify-content:space-between;

padding:14px 0;

}

.logo img{

height:55px;

}

.main-nav ul{

display:flex;

align-items:center;

gap:10px;

}

.main-nav ul li a{

padding:12px 18px;

font-size:15px;

font-weight:600;

color:var(--primary);

border-radius:8px;

}

.main-nav ul li a:hover{

background:#eef9fb;

color:var(--secondary);

}

.main-nav .active{

background:var(--secondary);

color:var(--primary);

}

.nav-cta{

background:var(--secondary);

padding:12px 22px;

border-radius:30px;

font-weight:700;

}

.nav-cta:hover{

background:var(--primary);

color:#fff;

}

.menu-toggle{

display:none;

background:none;

border:none;

cursor:pointer;

}

.menu-toggle span{

display:block;

width:28px;

height:3px;

background:var(--primary);

margin:6px 0;

}

/*====================================================
PAGE BANNER
====================================================*/

.page-banner{

position:relative;

height:380px;

overflow:hidden;

}

.banner-image{

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

}

.banner-image img{

width:100%;

height:100%;

object-fit:cover;

}

.banner-overlay{

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background: linear-gradient(rgb(0 56 84 / 0%), rgb(0 56 84 / 36%));

}

.banner-content{

position:relative;

z-index:2;

display:flex;

align-items:center;

height:100%;

color:#fff;

}

.banner-content h1{

font-size:48px;

font-weight:800;

margin-bottom:16px;

letter-spacing:1px;

}

.banner-content p{

font-size:17px;

max-width:650px;

color:#fff;

}

.banner-content strong{

color:var(--secondary);

}

.breadcrumb{

display:flex;

gap:10px;

margin-bottom:16px;

}

.breadcrumb li{

color:#fff;

font-size:15px;

}

.breadcrumb a{

color:var(--secondary);

font-weight:600;

}

/*====================================================
SECTION TITLE
====================================================*/

.section-title{

text-align:center;

margin-bottom:30px;

}

.section-title span{

display:inline-block;

background:rgba(0,118,144,.08);

padding:8px 18px;

border-radius:25px;

font-size:14px;

font-weight:600;

color:var(--primary);

margin-bottom:12px;

}

.section-title h2{

font-size:38px;

font-weight:700;

color:var(--primary);

margin-bottom:8px;

}

.section-title p{

max-width:700px;

margin:auto;

color:var(--text);

font-size:16px;

}

/*====================================================
REGISTRATION SECTION
====================================================*/

.registration-section{

padding:50px 0;

background:#fff;

}

.registration-table{

overflow-x:auto;

border-radius:15px;

box-shadow:0 15px 40px rgba(0,118,144,.10);

background:#fff;

}

.registration-table table{

width:100%;

border-collapse:collapse;

min-width:900px;

}

.registration-table thead tr:first-child{

background:linear-gradient(90deg,#007690,#0099b8);

}

.registration-table thead tr:last-child{

background:#00accf;

}

.registration-table thead th{

color:#fff;

padding:16px 15px;

font-size:15px;

font-weight:700;

text-align:center;

border:1px solid rgba(255,255,255,.15);

}

.registration-table tbody td{

padding:16px 15px;

border:1px solid #e8f1f3;

font-size:15px;

text-align:center;

transition:.3s;

}

.registration-table tbody tr:nth-child(even){

background:#f8fcfd;

}

.registration-table tbody tr:hover{

background:#eef9fb;

}

.registration-table tbody td:first-child{

text-align:left;

font-weight:600;

color:#007690;

min-width:260px;

}

.registration-table tbody td strong{

font-weight:600;

}

.registration-note{

margin-top:20px;

padding:16px 22px;

background:#fff8e7;

border-left:5px solid #f4b400;

border-radius:8px;

font-size:15px;

color:#555;

line-height:1.8;

}

.registration-note strong{

color:#007690;

}

/*====================================================
REGISTRATION INCLUDES
====================================================*/

.registration-includes{

padding:50px 0;

background:#f7fbfd;

}

.include-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:24px;

margin-top:30px;

}

.include-item{

background:#fff;

padding:28px 20px;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,118,144,.08);

transition:.35s;

text-align:center;

}

.include-item:hover{

transform:translateY(-8px);

box-shadow:0 18px 35px rgba(0,118,144,.15);

}

.include-item .icon{

width:60px;

height:60px;

margin:0 auto 16px;

background:linear-gradient(135deg,#007690,#00a9cb);

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:26px;

font-weight:bold;

color:#fff;

}

.include-item h4{

font-size:18px;

font-weight:600;

color:#007690;

margin-bottom:8px;

}

.include-item p{

font-size:15px;

color:#666;

line-height:1.8;

}

/*====================================================
COMMON BUTTON
====================================================*/

.portal-btn{

display:inline-block;

padding:13px 28px;

background:#f4b400;

color:#007690;

font-weight:700;

border-radius:40px;

transition:.3s;

}

.portal-btn:hover{

background:#007690;

color:#fff;

}

/*====================================================
TABLE SCROLL
====================================================*/

.registration-table::-webkit-scrollbar{

height:8px;

}

.registration-table::-webkit-scrollbar-thumb{

background:#007690;

border-radius:20px;

}

.registration-table::-webkit-scrollbar-track{

background:#ddd;

}

/*====================================================
CONFERENCE PORTAL
====================================================*/

.conference-portals{
    padding:50px 0;
    background:#ffffff;
}

.portal-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
    margin-top:30px;
}

.portal-card{
    background:#fff;
    border-radius:18px;
    text-align:center;
    padding:32px 26px;
    box-shadow:0 15px 35px rgba(0,118,144,.08);
    transition:.35s;
}

.portal-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,118,144,.15);
}

.portal-card h3{
    font-size:22px;
    color:#007690;
    margin-bottom:18px;
}

.portal-card img{
    width:170px;
    margin:18px auto;
    border:8px solid #fff;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

/*====================================================
REFUND POLICY
====================================================*/

.refund-policy{
    padding:50px 0;
    background:#f7fbfd;
}

.refund-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:30px;
}

.refund-card{
    background:#fff;
    text-align:center;
    padding:28px;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,118,144,.08);
    transition:.3s;
}

.refund-card:hover{
    transform:translateY(-8px);
}

.refund-card h3{
    color:#007690;
    margin-bottom:12px;
    font-size:20px;
}

.refund-card p{
    color:#666;
    font-size:16px;
}

.important-note{
    margin-top:30px;
    background:#fff;
    padding:28px;
    border-left:6px solid #f4b400;
    border-radius:15px;
}

.important-note h4{
    color:#007690;
    margin-bottom:16px;
}

.important-note ul{
    list-style:disc;
    padding-left:20px;
}

.important-note li{
    margin-bottom:10px;
    color:#555;
}

/*====================================================
PAYMENT DETAILS
====================================================*/

.payment-details{
    padding:50px 0;
    background:#fff;
}

.bank-card{
    max-width:850px;
    margin:auto;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,118,144,.08);
}

.bank-card table{
    width:100%;
    border-collapse:collapse;
}

.bank-card th{
    background:#007690;
    color:#fff;
    text-align:left;
    padding:16px;
    width:35%;
}

.bank-card td{
    padding:16px;
    border-bottom:1px solid #eee;
}

.bank-card tr:nth-child(even){
    background:#f8fcfd;
}

/*====================================================
FOOTER
====================================================*/

.site-footer{
    background:var(--footer-navy);
    color:#fff;
    padding-top:50px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
}

/* White plate behind the logo so it's actually visible on the
   navy footer background — the logo itself is dark/coloured. */
.footer-logo-wrap{
    display:inline-block;
    background:#ffffff;
    padding:12px 18px;
    border-radius:12px;
    margin-bottom:20px;
}

.footer-box img{
    width:200px;
    margin-bottom:0;
}

.footer-box h4{
    color:#f4b400;
    margin-bottom:18px;
}

.footer-box p,
.footer-box li{
    color:#c7d3ef;
    margin-bottom:10px;
}

.footer-box a{
    color:#c7d3ef;
}

.footer-box a:hover{
    color:#f4b400;
}

.copyright{
    margin-top:30px;
    padding:20px 0;
    border-top:1px solid rgba(255,255,255,.12);
    text-align:center;
    color:#c7d3ef;
    font-size:14px;
}

/*====================================================
RESPONSIVE
====================================================*/

@media(max-width:991px){

.portal-grid{
grid-template-columns:1fr;
}

.refund-grid{
grid-template-columns:1fr;
}

.include-grid{
grid-template-columns:repeat(2,1fr);
}

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

.footer-logo-wrap{
margin:0 auto 20px;
}

.bank-card{
overflow-x:auto;
}

}

@media(max-width:768px){

.banner-content h1{
font-size:32px;
}

.banner-content p{
font-size:16px;
}

.section-title h2{
font-size:28px;
}

.include-grid{
grid-template-columns:1fr;
}

.portal-card{
padding:26px 18px;
}

.portal-card img{
width:140px;
}

.bank-card table{
min-width:650px;
}

.registration-note{
font-size:14px;
}

}

@media(max-width:576px){

.page-banner{
height:300px;
}

.banner-content{
text-align:center;
}

.banner-content h1{
font-size:26px;
}

.breadcrumb{
justify-content:center;
}

.section-title h2{
font-size:24px;
}

.portal-card h3{
font-size:19px;
}

.refund-card h3{
font-size:17px;
}

}