:root{
--cd-primary:#004b95;
--cd-primary-dark:#002766;
--cd-accent:#00d669;
--cd-accent-light:#00a651;
--cd-bg:#f3f7ff;
--cd-card:#ffffff;
--cd-text:#1f2937;
--cd-soft:#dbeafe;
}

section#hero-1.cd-hero-bg, .cd-hero-bg {
background: linear-gradient(120deg,rgba(0,59,149,.92),rgba(0,39,102,.90)), url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?q=80&w=1600&auto=format&fit=crop');
background-size: cover;
background-position: center;
}

*{
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:var(--cd-bg);
color:var(--cd-text);
overflow-x:hidden;
line-height:1.5;
}

.container{
max-width:1400px;
margin:auto;
}

header.modern-header{
position:sticky;
top:0;
z-index:999;
background:rgba(255, 255, 255, 0.98);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
padding:12px 60px;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 4px 20px rgba(0, 0, 0, 0.05);
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
}

.logo-area {
flex: 1;
display: flex;
justify-content: flex-start;
}

.center-menu {
flex: 2;
display: flex;
justify-content: center;
align-items: center;
gap: 8px;
}

.header-actions {
flex: 1;
display: flex;
justify-content: flex-end;
align-items: center;
gap: 20px;
}

.header-nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

header.modern-header nav a{
color:var(--cd-primary);
text-decoration:none;
padding: 10px 18px;
border-radius: 8px;
font-weight:600;
font-size: 18px;
transition:all 0.3s ease;
}

header.modern-header nav a:hover, header.modern-header nav a.active {
color:var(--cd-primary);
background: rgba(0, 59, 149, 0.05);
}

.demo-btn{
background: #00a651;
padding:12px 26px;
border-radius:50px;
color:white;
font-size: 18px;
font-weight: 600;
box-shadow: 0 8px 24px rgba(0, 166, 81, 0.35);
transition: all 0.3s ease;
}
.demo-btn:hover {
background: #008a40;
transform: translateY(-2px);
box-shadow: 0 12px 28px rgba(0, 166, 81, 0.45);
}

.hero{
min-height:95vh;
display:grid;
grid-template-columns:1.1fr .9fr;
gap:40px;
align-items:center;
padding:90px 70px;
background:
linear-gradient(120deg,rgba(0,59,149,.92),rgba(0,39,102,.90)),
url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?q=80&w=1600&auto=format&fit=crop');
background-size:cover;
background-position:center;
color:white;
}

.hero h1{
color:white;
font-weight:700;
font-size:52px;
line-height:1.15;
margin-bottom:24px;
}

.hero p{
font-size:20px;
color:rgba(255,255,255,.92);
margin-bottom:32px;
}

.hero-buttons a{
display:inline-block;
padding:16px 26px;
border-radius:12px;
text-decoration:none;
font-weight:600;
margin-right:14px;
margin-bottom:12px;
}

.primary{
background: linear-gradient(135deg, var(--cd-accent) 0%, var(--cd-accent-light) 100%);
color: white;
box-shadow: 0 8px 20px rgba(0, 166, 81, 0.3);
transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.primary:hover{
transform: translateY(-2px);
box-shadow: 0 12px 28px rgba(0, 166, 81, 0.5);
filter: brightness(1.08);
}

.secondary{
background: #ffffff;
color: var(--cd-primary);
border: 1px solid rgba(0, 59, 149, 0.1);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.secondary:hover{
background: #f3f7ff;
color: var(--cd-primary-dark);
transform: translateY(-2px);
box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.hero-panel{
background:rgba(255,255,255,.96);
padding:34px;
border-radius:24px;
box-shadow:0 18px 50px rgba(0,0,0,.18);
}

.hero-panel h3{
color:var(--cd-primary);
font-size:30px;
margin-bottom:14px;
font-weight:700;
}

.metric{
padding:16px;
margin-top:14px;
border-radius:12px;
background:#f3f7ff;
border-left:5px solid var(--cd-accent);
font-weight:600;
color:#003b95;
}

.feature-strip{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:22px;
padding:0 70px;
margin-top:-45px;
position:relative;
z-index:5;
}

.strip-box{
background:white;
padding:24px;
border-radius:18px;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:8px;
box-shadow:0 14px 34px rgba(0,0,0,.08);
text-align:center;
transition:all 0.3s ease;
}

.strip-box:hover{
transform:translateY(-5px);
box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.stat-num{
font-size:38px;
font-weight:800;
line-height:1.2;
background:linear-gradient(135deg,var(--cd-primary) 0%,var(--cd-accent) 100%);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.stat-label{
font-size:15px;
font-weight:500;
color:var(--cd-text);
opacity:0.85;
}

.section{
padding:90px 70px;
}

.title{
text-align:center;
font-size:46px;
color:var(--cd-primary);
margin-bottom:14px;
}

.sub{
text-align:center;
max-width:950px;
margin:auto;
font-size:18px;
color:#555;
margin-bottom:50px;
}

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

.grid-4{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
}

.card{
background:var(--cd-card);
padding:34px;
border-radius:24px;
box-shadow:0 14px 38px rgba(0,0,0,.08);
transition:.35s;
position:relative;
overflow:hidden;
border:1px solid #edf2ff;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 22px 55px rgba(0,0,0,.14);
}

.card::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:linear-gradient(90deg,var(--cd-accent),var(--cd-accent-light));
}

.card i{
font-size:42px;
color:var(--cd-accent);
margin-bottom:20px;
}

.card h3{
font-size:26px;
color:var(--cd-primary);
margin-bottom:12px;
}

.offerings{
background:
linear-gradient(rgba(245,248,255,.94),rgba(245,248,255,.94)),
url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=1600&auto=format&fit=crop');
background-size:cover;
background-position:center;
}

.platform{
background: #ffffff;
padding: 40px 0;
color: var(--cd-text);
text-align: center;
}
.platform h2 {
color: var(--cd-primary);
font-size: 36px;
margin-bottom: 12px;
}
.platform > p {
color: var(--cd-text);
margin: 0 auto 40px auto;
}

.platform-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:24px;
}

.platform-box{
background: #ffffff;
padding:30px;
border-radius:16px;
border: 1px solid rgba(0,0,0,0.06);
border-left: 4px solid var(--cd-accent);
box-shadow: 0 10px 30px rgba(0,0,0,0.02);
transition: 0.3s;
display: flex;
gap: 20px;
align-items: flex-start;
text-align: left;
}
.platform-box:hover{
box-shadow: 0 15px 40px rgba(0, 59, 149, 0.08);
transform: translateY(-5px);
border-left-color: var(--cd-primary);
}

.platform-box .icon-wrap{
background: #eef2f6;
color: var(--cd-accent);
width: 55px;
height: 55px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
flex-shrink: 0;
}

.platform-box h3{
color: var(--cd-primary-dark);
font-size: 22px;
margin-bottom:8px;
}

.platform-box p{
color: var(--cd-text);
font-size: 16px;
opacity: 0.9;
}

.video-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:35px;
}

.video-card{
background:white;
padding:24px;
border-radius:24px;
box-shadow:0 14px 36px rgba(0,0,0,.08);
border:1px solid #edf2ff;
}

.video-card iframe{
width:100%;
height:300px;
border:none;
border-radius:18px;
}

.video-card h3{
margin-top:18px;
color:var(--cd-primary);
font-size:24px;
}

.video-mockup {
    display: block;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}
.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: #ffffff;
    color: var(--cd-primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}
.video-mockup:hover .play-btn-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.demo-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:22px;
}

.demo-box{
background:white;
padding:28px;
border-radius:22px;
text-align:center;
box-shadow:0 12px 30px rgba(0,0,0,.08);
transition:.3s;
}

.demo-box:hover{
transform:translateY(-8px);
}

.demo-box i{
font-size:26px;
color:var(--cd-primary);
background: #ebf3ff;
width: 65px;
height: 65px;
line-height: 65px;
border-radius: 50%;
display: block;
margin: 0 auto 20px auto;
}

.demo-box h4{
font-size:20px;
margin-bottom:20px;
color:var(--cd-text);
font-weight: 700;
}

.demo-box button{
background: #f0f5fc;
color: var(--cd-primary);
border: none;
padding:10px 24px;
border-radius:50px;
font-weight:600;
cursor:pointer;
margin-top:auto;
transition:all 0.3s ease;
}
.demo-box button:hover{
background:var(--cd-primary);
color:white;
box-shadow: 0 6px 15px rgba(0, 59, 149, 0.2);
}

.testimonial{
background:white;
padding:34px;
border-radius:22px;
box-shadow:0 14px 36px rgba(0,0,0,.08);
border-top:6px solid var(--cd-accent);
}

.testimonial img{
width:70px;
height:70px;
border-radius:50%;
object-fit:cover;
margin-bottom:18px;
}

.testimonial h3{
color:var(--cd-primary);
margin-bottom:10px;
}

.cta{
padding:100px 40px;
text-align:center;
background: linear-gradient(135deg, #f4f6ff 0%, #ebf9f1 100%);
color: var(--cd-text);
}

.cta h2{
font-size:52px;
margin-bottom:18px;
color: var(--cd-primary);
}

.cta p{
font-size:20px;
color: #475569;
}

.cta a{
display:inline-block;
margin-top:24px;
padding:16px 28px;
background:var(--cd-accent);
color:white;
text-decoration:none;
border-radius:12px;
font-weight:600;
box-shadow: 0 8px 24px rgba(0, 166, 81, 0.3);
transition: all 0.3s ease;
}

.cta a:hover{
background:var(--cd-accent-light);
transform: translateY(-2px);
box-shadow: 0 12px 28px rgba(0, 166, 81, 0.45);
}

.modern-footer {
    background: #002766;
    color: rgba(255, 255, 255, 0.7);
    padding: 16px 60px 12px;
    font-size: 13px;
}
.footer-brand {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
}
.footer-brand .footer-text {
    flex: 1;
    margin: 0;
}
.footer-grid > .col-md-3:first-child {flex:0 0 auto; width:auto; max-width:none;}
@media (max-width:1000px) {
    .footer-brand {
        flex-direction: row;
        align-items: center;
    }
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    max-width: 1300px;
    margin: 0 auto 20px auto;
}
.footer-col h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 12px;
}
.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}
.footer-col a:hover {
    color: var(--cd-accent);
}
.footer-col a i {
    margin-right: 8px;
}
.footer-social-icons {
    display: flex;
    gap: 16px;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-social-icons a {
    display: inline-block;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    margin-bottom: 0;
}
.footer-social-icons a:hover {
    color: var(--cd-accent);
    transform: translateY(-2px);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
    max-width: 1300px;
    margin: 0 auto;
}
.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-left: 24px;
}
.footer-bottom-links a:hover {
    color: white;
}

@media(max-width:1000px){
.hero, .grid-3, .grid-4, .platform-grid, .video-wrapper, .demo-grid, .feature-strip {
grid-template-columns:1fr;
}
.footer-grid, .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}
.footer-bottom-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-bottom-links a {
    margin-left: 0;
}
.modern-footer { padding: 30px 20px 15px; }
.hero{ padding:60px 25px; }
.section{ padding:70px 25px; }
header{ display:block; text-align:center; padding:20px; }
nav{ margin-top:12px; }
nav a{ display:inline-block; margin:8px; }
.hero h1{ font-size:42px; }
.feature-strip{ padding:0 25px; }
} 

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--cd-primary);
    margin-left: auto;
}
.mobile-nav {
    display: flex;
    flex: 3;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

@media(max-width:1000px){
    .header-container {
        align-items: flex-start;
        padding-top: 5px;
    }
    .mobile-menu-toggle { display: inline-block; margin-top: 5px; }
    .mobile-nav { 
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
        width: 100%; 
    }
    .mobile-nav.open {
        display: flex;
    }
    .mobile-nav.open .center-menu,
    .mobile-nav.open .header-actions {
        display: flex;
    }
    .center-menu, .header-actions { display: none; }
    .mobile-nav a {
        color: var(--cd-primary);
        padding: 10px 0;
        font-size: 18px;
        width: 100%;
        text-align: center;
    }
    .mobile-nav .header-actions a.demo-btn {
        display: inline-block;
        margin-top: 8px;
    }
}

@media(max-width:1000px){
    .mobile-nav .center-menu,
    .mobile-nav .header-actions,
    .mobile-nav .header-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
}


.gtco-nav-toggle {
    display: none;
}


html, body {
    max-width: 100%;
    overflow-x: hidden;
}


@media (max-width: 480px) {
    .logo-area img {
        height: 35px;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        width: 100%;
    }
    .hero-buttons a {
        margin-right: 0;
        margin-bottom: 0;
        text-align: center;
        width: 100%;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero-panel {
        padding: 20px;
    }
    .study-material-strip h2 {
        font-size: 20px;
    }
    .study-material-btn {
        font-size: 16px;
        padding: 10px 28px;
    }
}

.study-material-btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.responsive-grid-2 {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 991px) {
    .responsive-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Test Series Static Page */
.ts-section { padding: 25px 20px; background: #f8fafc; }
.ts-container { max-width: 1400px; margin: 0 auto; }
.ts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.ts-card { color: white; padding: 32px 26px; border-radius: 28px; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12); display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; min-height: 520px; }
.ts-card-header { display: flex; justify-content: space-between; align-items: center; width: 100%; margin-bottom: 15px; }
.ts-card-title { font-size: 22px; font-weight: 700; text-transform: uppercase; margin: 0; color: white; letter-spacing: 0.5px; text-align: left; }
.ts-card-icon { background: rgba(255,255,255,0.15); width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.ts-card-body { width: 100%; text-align: left; margin-bottom: 24px; }
.ts-total-tests { font-size: 56px; font-weight: 800; line-height: 1; margin: 0 0 4px 0; }
.ts-total-label { font-size: 16px; font-weight: 700; opacity: 0.8; letter-spacing: 1.5px; }
.ts-features { width: 100%; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.ts-feature-item { background: rgba(255,255,255,0.1); padding: 14px 22px; border-radius: 11px; font-size: 18px; font-weight: 500; text-align: left; display: flex; align-items: center; gap: 10px; }
.ts-papers-section { width: 100%; text-align: left; margin-bottom: 24px; }
.ts-papers-title { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: white; opacity: 0.9; }
.ts-papers-list { display: flex; gap: 8px; flex-wrap: wrap; }
.ts-paper-badge { background: rgba(255,255,255,0.15); padding: 6px 14px; border-radius: 8px; font-size: 15px; font-weight: 600; }
.ts-card-btn { width: 100%; background: white; border: none; padding: 14px 28px; border-radius: 50px; font-size: 16px; font-weight: 700; cursor: pointer; transition: transform 0.3s; margin-top: auto; }
.ts-card-btn:hover { transform: scale(1.05); }

/* Remove important global test */
/* Index Page */
.hero-feature-list { margin-top: 18px; font-size: 16px; color: #ffffff; font-weight: 700; list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.hero-feature-item { display: flex; align-items: center; gap: 10px; }
.hero-feature-icon { color: #6ee7b7; font-size: 18px; }
.study-strip { background-color: #f1f5f9; padding: 60px 0; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
.study-strip-container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.study-strip-content { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.study-strip-text { flex: 1; min-width: 300px; }
.study-strip-title { font-size: 28px; font-weight: 700; color: #1e293b; margin-bottom: 12px; line-height: 1.3; }
.study-strip-desc { font-size: 18px; color: #475569; margin: 0; line-height: 1.6; }
.study-strip-actions { flex-shrink: 0; display: flex; gap: 15px; align-items: center; }
.study-btn-primary { display: inline-block; background-color: var(--cd-accent, #ff7a00); color: white; padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 16px; text-decoration: none; box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3); transition: transform 0.3s, box-shadow 0.3s; }
.study-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(255, 122, 0, 0.4); color: white; text-decoration: none;}
.study-btn-secondary { display: inline-block; background-color: white; color: var(--cd-primary, #1e3a8a); padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 16px; text-decoration: none; border: 2px solid var(--cd-primary, #1e3a8a); transition: background-color 0.3s, color 0.3s; }
.study-btn-secondary:hover { background-color: var(--cd-primary, #1e3a8a); color: white; text-decoration: none;}
@media (max-width: 768px) {
    .study-strip-content { flex-direction: column; text-align: center; }
    .study-strip-actions { justify-content: center; width: 100%; flex-wrap: wrap; }
}
/* Offerings Page */
.off-header { text-align: center; margin-bottom: 50px; }
.off-title { font-size: 36px; font-weight: 800; color: #1e293b; margin-bottom: 15px; }
.off-desc { font-size: 18px; color: #64748b; max-width: 700px; margin: 0 auto; line-height: 1.6; }
.off-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; background: #ffffff; padding: 15px; border-radius: 16px; border: 1px solid #e2e8f0; }
.off-tab-btn { background: #f8fafc; border: 1px solid #e2e8f0; color: #475569; padding: 16px 20px; border-radius: 12px; font-weight: 600; font-size: 16px; transition: all 0.3s ease; text-align: left; display: flex; align-items: center; gap: 12px; }
.off-tab-btn:hover { background: #f1f5f9; border-color: #cbd5e1; }
.off-tab-active { background: var(--cd-accent, #ff7a00); color: white; border-color: var(--cd-accent, #ff7a00); box-shadow: 0 4px 15px rgba(255,122,0,0.2); }
.off-tab-icon { font-size: 20px; opacity: 0.9; }
.off-module { background: #ffffff; border-radius: 20px; border: 1px solid #e2e8f0; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.off-module-header { border-bottom: 2px solid #f1f5f9; padding-bottom: 20px; margin-bottom: 30px; }
.off-module-title { font-size: 28px; font-weight: 700; color: #1e293b; margin: 0; display: flex; align-items: center; gap: 12px; }
.off-module-icon { color: var(--cd-primary, #1e3a8a); }
.module-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.off-card { border: 1px solid #e2e8f0; border-radius: 16px; transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; box-shadow: 0 4px 15px rgba(0,0,0,0.02); overflow: hidden; padding: 0; }
.off-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.off-card-relative { position: relative; }
.off-card-header { background: linear-gradient(135deg, #f8fafc, #f1f5f9); border-bottom: 1px solid #e2e8f0; padding: 20px; display: flex; align-items: center; gap: 15px; }
.off-card-icon-wrap { width: 48px; height: 48px; background: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--cd-primary, #1e3a8a); font-size: 22px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); flex-shrink: 0; }
.off-card-title { margin: 0; font-size: 18px; font-weight: 700; color: #1e293b; }
.off-card-body { padding: 24px; }
.off-card-desc { color: #64748b; margin-bottom: 20px; line-height: 1.5; font-size: 15px; }
.off-feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.off-feature-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #475569; }
.off-feature-check { color: #10b981; margin-top: 3px; }
.off-popular-badge { position: absolute; top: -1px; right: -1px; background: #10b981; color: white; padding: 6px 15px; font-size: 12px; font-weight: 700; border-radius: 0 16px 0 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.off-cta { background: linear-gradient(135deg, var(--cd-primary, #1e3a8a), #0f172a); border-radius: 24px; padding: 50px 40px; text-align: center; color: white; margin-top: 60px; box-shadow: 0 20px 40px rgba(30,58,138,0.2); }
.off-cta-title { font-size: 32px; font-weight: 800; margin-bottom: 15px; }
.off-cta-desc { font-size: 18px; color: #cbd5e1; margin-bottom: 35px; max-width: 600px; margin-left: auto; margin-right: auto; }
.off-cta-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--cd-accent, #ff7a00); color: white; padding: 16px 36px; border-radius: 50px; font-size: 18px; font-weight: 700; text-decoration: none; transition: transform 0.3s; box-shadow: 0 10px 25px rgba(255,122,0,0.4); }
.off-cta-btn:hover { transform: scale(1.05); color: white; text-decoration: none;}
@media (max-width: 991px) {
    .off-tabs { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
    .off-tabs { grid-template-columns: 1fr; gap: 20px; }
    .module-grid { grid-template-columns: 1fr; }
}
/* Why Us Page */
.why-header { text-align: center; margin-bottom: 50px; }
.why-title { font-size: 36px; font-weight: 800; color: #1e293b; margin-bottom: 15px; }
.why-desc { font-size: 18px; color: #64748b; max-width: 700px; margin: 0 auto; line-height: 1.6; }
.why-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: stretch; margin-bottom: 60px; }
.why-info-card { background: #ffffff; border-radius: 20px; border: 1px solid #e2e8f0; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); display: flex; flex-direction: column; justify-content: center; }
.why-info-title { font-size: 28px; font-weight: 700; color: #1e293b; margin-bottom: 20px; }
.why-info-text { font-size: 16px; color: #475569; line-height: 1.7; margin-bottom: 20px; }
.why-stats { display: flex; gap: 15px; margin-top: 20px; }
.why-stat-box { background: #f8fafc; padding: 15px 20px; border-radius: 12px; border: 1px solid #e2e8f0; text-align: center; flex: 1; }
.why-stat-num { font-size: 24px; font-weight: 800; color: var(--cd-accent, #ff7a00); display: block; margin-bottom: 5px; }
.why-stat-label { font-size: 13px; color: #64748b; font-weight: 600; text-transform: uppercase; }
.why-feature-card { background: #ffffff; border-radius: 20px; border: 1px solid #e2e8f0; padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.why-feature-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.06); }
.why-feature-icon { width: 60px; height: 60px; background: linear-gradient(135deg, #f8fafc, #f1f5f9); border: 1px solid #e2e8f0; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--cd-primary, #1e3a8a); margin-bottom: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.02); }
.why-feature-title { font-size: 20px; font-weight: 700; color: #1e293b; margin-bottom: 12px; }
.why-feature-desc { font-size: 15px; color: #64748b; line-height: 1.6; margin: 0; }
.why-approach { background: linear-gradient(135deg, #f8fafc, #f1f5f9); border-radius: 24px; padding: 50px; margin-bottom: 60px; border: 1px solid #e2e8f0; }
.why-approach-header { text-align: center; margin-bottom: 40px; }
.why-approach-title { font-size: 32px; font-weight: 800; color: #1e293b; margin-bottom: 15px; }
.why-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.why-step-card { background: white; padding: 30px; border-radius: 16px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.why-step-num { width: 50px; height: 50px; background: var(--cd-primary, #1e3a8a); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; margin: 0 auto 20px; box-shadow: 0 4px 10px rgba(30,58,138,0.2); }
.why-step-title { font-size: 18px; font-weight: 700; color: #1e293b; margin-bottom: 10px; }
.why-mb-60 { margin-bottom: 60px; }
.why-table-wrap { background: white; border-radius: 20px; border: 1px solid #e2e8f0; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.03); overflow-x: auto; }
.why-table { width: 100%; text-align: left; border-collapse: collapse; min-width: 600px; }
.why-th-row { background: #f8fafc; border-bottom: 2px solid #e2e8f0; }
.why-th-1 { padding: 20px; font-size: 18px; font-weight: 700; color: #1e293b; width: 40%; }
.why-th-2 { padding: 20px; font-size: 18px; font-weight: 700; color: var(--cd-primary, #1e3a8a); width: 30%; text-align: center; background: rgba(30,58,138,0.03); }
.why-th-3 { padding: 20px; font-size: 18px; font-weight: 700; color: #64748b; width: 30%; text-align: center; }
.why-tr { border-bottom: 1px solid #e2e8f0; }
.why-tr:last-child { border-bottom: none; }
.why-td-1 { padding: 16px 20px; font-size: 16px; font-weight: 600; color: #475569; }
.why-td-2 { padding: 16px 20px; text-align: center; color: #10b981; font-size: 20px; background: rgba(30,58,138,0.02); }
.why-td-3 { padding: 16px 20px; text-align: center; color: #ef4444; font-size: 20px; }
.why-cta { background: linear-gradient(135deg, var(--cd-primary, #1e3a8a), #0f172a); border-radius: 24px; padding: 50px 40px; text-align: center; color: white; box-shadow: 0 20px 40px rgba(30,58,138,0.2); }
.why-cta-title { font-size: 32px; font-weight: 800; margin-bottom: 15px; }
.why-cta-desc { font-size: 18px; color: #cbd5e1; margin-bottom: 35px; max-width: 600px; margin-left: auto; margin-right: auto; }
.why-cta-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--cd-accent, #ff7a00); color: white; padding: 16px 36px; border-radius: 50px; font-size: 18px; font-weight: 700; text-decoration: none; transition: transform 0.3s; box-shadow: 0 10px 25px rgba(255,122,0,0.4); }
.why-cta-btn:hover { transform: scale(1.05); color: white; text-decoration: none;}

@media (max-width: 991px) {
    .why-grid-2 { grid-template-columns: 1fr; }
    .why-grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .why-approach { padding: 30px 20px; }
    .why-cta { padding: 40px 20px; }
}
/* About Page */
.abt-header { text-align: center; margin-bottom: 50px; }
.abt-title { font-size: 36px; font-weight: 800; color: #1e293b; margin-bottom: 15px; }
.abt-subtitle { font-size: 18px; color: #64748b; max-width: 800px; margin: 0 auto; line-height: 1.6; }
.abt-story { background: #ffffff; border-radius: 20px; border: 1px solid #e2e8f0; padding: 50px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); margin-bottom: 60px; }
.abt-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.abt-story-title { font-size: 28px; font-weight: 800; color: #1e293b; margin-bottom: 20px; }
.abt-text { font-size: 16px; color: #475569; line-height: 1.8; margin-bottom: 20px; }
.abt-img-wrap { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.abt-img { width: 100%; height: auto; display: block; }
.abt-values-sec { margin-bottom: 60px; }
.abt-sec-title { font-size: 32px; font-weight: 800; color: #1e293b; text-align: center; margin-bottom: 40px; }
.abt-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.abt-value-card { background: linear-gradient(135deg, #f8fafc, #f1f5f9); border: 1px solid #e2e8f0; border-radius: 16px; padding: 40px 30px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.abt-value-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.abt-value-icon { width: 70px; height: 70px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--cd-accent, #ff7a00); margin: 0 auto 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.abt-value-title { font-size: 20px; font-weight: 700; color: #1e293b; margin-bottom: 15px; }
.abt-value-desc { font-size: 15px; color: #64748b; line-height: 1.6; margin: 0; }
.abt-stats-sec { background: linear-gradient(135deg, var(--cd-primary, #1e3a8a), #0f172a); border-radius: 24px; padding: 60px 40px; color: white; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; box-shadow: 0 20px 40px rgba(30,58,138,0.2); }
.abt-stat-num { font-size: 40px; font-weight: 800; color: var(--cd-accent, #ff7a00); margin-bottom: 10px; }
.abt-stat-label { font-size: 16px; font-weight: 600; color: #cbd5e1; text-transform: uppercase; letter-spacing: 1px; }

@media (max-width: 991px) {
    .abt-grid-2 { grid-template-columns: 1fr; }
    .abt-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .abt-stats-sec { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .abt-grid-3 { grid-template-columns: 1fr; }
    .abt-stats-sec { grid-template-columns: 1fr; }
    .abt-story { padding: 30px 20px; }
}
/* FAQ Page */
.faq-header { text-align: center; margin-bottom: 50px; }
.faq-title { font-size: 36px; font-weight: 800; color: #1e293b; margin-bottom: 15px; }
.faq-desc { font-size: 18px; color: #64748b; max-width: 700px; margin: 0 auto; line-height: 1.6; }
.faq-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 40px; }
.faq-tab-btn { background: white; border: 1px solid #e2e8f0; color: #475569; padding: 12px 25px; border-radius: 50px; font-weight: 600; font-size: 16px; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(0,0,0,0.02); }
.faq-tab-btn:hover { background: #f8fafc; border-color: #cbd5e1; }
.faq-tab-active { background: var(--cd-accent, #ff7a00); color: white; border-color: var(--cd-accent, #ff7a00); box-shadow: 0 8px 20px rgba(255,122,0,0.3); transform: translateY(-2px); }
.faq-search-wrap { max-width: 600px; margin: 0 auto 50px; position: relative; }
.faq-search-input { width: 100%; padding: 18px 25px 18px 55px; border-radius: 50px; border: 1px solid #e2e8f0; font-size: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); outline: none; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.faq-search-input:focus { border-color: var(--cd-primary, #1e3a8a); box-shadow: 0 10px 30px rgba(30,58,138,0.1); }
.faq-search-icon { position: absolute; left: 22px; top: 50%; transform: translateY(-50%); color: #94a3b8; font-size: 20px; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: white; border: 1px solid #e2e8f0; border-radius: 16px; margin-bottom: 20px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.02); transition: box-shadow 0.3s ease; }
.faq-item:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.faq-q-btn { width: 100%; text-align: left; background: none; border: none; padding: 25px 30px; font-size: 18px; font-weight: 700; color: #1e293b; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: background 0.3s ease; }
.faq-q-btn:hover { background: #f8fafc; }
.faq-icon { color: var(--cd-primary, #1e3a8a); transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer { padding: 0 30px 25px; color: #475569; font-size: 16px; line-height: 1.7; display: none; }
.faq-contact { background: linear-gradient(135deg, #f8fafc, #f1f5f9); border-radius: 24px; padding: 50px 40px; text-align: center; margin-top: 60px; border: 1px solid #e2e8f0; }
.faq-contact-title { font-size: 28px; font-weight: 800; color: #1e293b; margin-bottom: 15px; }
.faq-contact-desc { font-size: 18px; color: #64748b; margin-bottom: 30px; }
.faq-contact-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--cd-primary, #1e3a8a); color: white; padding: 16px 36px; border-radius: 50px; font-size: 18px; font-weight: 700; text-decoration: none; transition: transform 0.3s; box-shadow: 0 10px 25px rgba(30,58,138,0.3); }
.faq-contact-btn:hover { transform: scale(1.05); color: white; text-decoration: none;}

@media (max-width: 768px) {
    .faq-q-btn { font-size: 16px; padding: 20px; }
    .faq-answer { padding: 0 20px 20px; }
}
/* Contact Page */
.cnt-header { text-align: center; margin-bottom: 50px; }
.cnt-title { font-size: 36px; font-weight: 800; color: #1e293b; margin-bottom: 15px; }
.cnt-desc { font-size: 18px; color: #64748b; max-width: 700px; margin: 0 auto; line-height: 1.6; }
.cnt-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-bottom: 60px; }
.cnt-card { background: #ffffff; border-radius: 20px; border: 1px solid #e2e8f0; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.cnt-form-title { font-size: 28px; font-weight: 700; color: #1e293b; margin-bottom: 30px; }
.cnt-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cnt-input { width: 100%; padding: 15px 20px; border: 1px solid #e2e8f0; border-radius: 12px; font-size: 16px; color: #1e293b; background: #f8fafc; outline: none; transition: all 0.3s ease; margin-bottom: 20px; }
.cnt-input:focus { border-color: var(--cd-primary, #1e3a8a); background: white; }
.cnt-textarea { width: 100%; padding: 15px 20px; border: 1px solid #e2e8f0; border-radius: 12px; font-size: 16px; color: #1e293b; background: #f8fafc; outline: none; transition: all 0.3s ease; resize: vertical; margin-bottom: 20px; }
.cnt-textarea:focus { border-color: var(--cd-primary, #1e3a8a); background: white; }
.cnt-submit-btn { width: 100%; background: var(--cd-accent, #ff7a00); color: white; border: none; padding: 16px 20px; border-radius: 12px; font-size: 18px; font-weight: 700; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 8px 20px rgba(255,122,0,0.3); }
.cnt-submit-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(255,122,0,0.4); }
.cnt-details-list { display: flex; flex-direction: column; gap: 30px; }
.cnt-detail-box { background: linear-gradient(135deg, #f8fafc, #f1f5f9); border: 1px solid #e2e8f0; border-radius: 16px; padding: 30px; display: flex; gap: 20px; align-items: flex-start; transition: transform 0.3s ease; }
.cnt-detail-box:hover { transform: translateY(-3px); }
.cnt-icon-wrap { width: 60px; height: 60px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--cd-primary, #1e3a8a); box-shadow: 0 4px 15px rgba(0,0,0,0.05); flex-shrink: 0; }
.cnt-box-title { font-size: 20px; font-weight: 700; color: #1e293b; margin-bottom: 10px; }
.cnt-box-text { font-size: 16px; color: #475569; line-height: 1.6; margin: 0; }
.cnt-link { color: var(--cd-accent, #ff7a00); text-decoration: none; font-weight: 600; }
.cnt-link:hover { text-decoration: underline; }
.cnt-map-wrap { width: 100%; border-radius: 20px; overflow: hidden; border: 1px solid #e2e8f0; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }

@media (max-width: 991px) {
    .cnt-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .cnt-form-grid { grid-template-columns: 1fr; }
    .cnt-card { padding: 30px 20px; }
}
/* Why Us Remaining Classes */
.why-hero { color: white; padding: 80px 0; min-height: 500px; display: flex; align-items: center; justify-content: center; }
.why-container { max-width: 1400px; width: 100%; margin: 0 auto; padding: 0 20px; }
.why-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.text-left { text-align: left; }
.why-hero-title { font-size: 48px; font-weight: 700; color: white; margin-bottom: 20px; line-height: 1.2; }
.why-hero-subtitle { font-size: 22px; font-weight: 600; color: white; margin-bottom: 24px; opacity: 0.95; }
.why-hero-desc { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.85); margin-bottom: 0; }
.w-100 { width: 100%; }
.why-video-wrap { background: #ffffff; border-radius: 16px; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4); border: 1px solid rgba(255,255,255,0.1); }
.why-video-header { background: #e2e8f0; padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #cbd5e1; }
.flex-gap-8 { display: flex; gap: 8px; }
.mac-btn { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.mac-red { background: #ff5f56; }
.mac-yellow { background: #ffbd2e; }
.mac-green { background: #27c93f; }
.why-video-title { font-size: 12px; color: #64748b; font-weight: 600; font-family: inherit; }
.w-52 { width: 52px; }
.why-video-body { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000; }
.why-video-iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.why-section-light { position: relative; background: #f8fafc; padding: 80px 20px; }
.text-center { text-align: center; }
.why-section-title { font-size: 36px; font-weight: 700; color: var(--cd-primary-dark); margin-bottom: 10px; }
.why-section-desc { font-size: 16px; color: #64748b; max-width: 700px; margin: 0 auto 50px auto; }
.why-helps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.why-helps-card { background: white; border: 1px solid #e2e8f0; border-top: 5px solid var(--cd-accent); padding: 40px 30px; border-radius: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); text-align: left; display: flex; flex-direction: column; align-items: flex-start; transition: all 0.3s ease; overflow: hidden; }
.why-helps-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(10, 58, 120, 0.12); border-color: rgba(10, 58, 120, 0.1); }
.why-helps-icon { color: var(--cd-primary-dark); width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.fs-24 { font-size: 24px; }
.max-h-24 { max-height: 24px; }
.why-helps-title { font-size: 20px; font-weight: 700; color: var(--cd-primary-dark); margin-bottom: 12px; }
.why-helps-desc { font-size: 14px; line-height: 1.6; color: #475569; margin: 0; }
.why-section-dark { background: linear-gradient(135deg, #002766 0%, #003b95 100%); padding: 80px 20px; color: white; }
.why-section-title-light { font-size: 36px; font-weight: 700; color: white; margin-bottom: 10px; }
.why-section-desc-light { font-size: 16px; color: rgba(255, 255, 255, 0.8); margin-bottom: 50px; }
.why-feature-box { background: white; color: #1e293b; padding: 18px 15px; border-radius: 16px; text-align: left; box-shadow: 0 5px 15px rgba(0,0,0,0.06); display: flex; flex-direction: column; transition: all 0.3s ease; border: 1px solid #e2e8f0; border-top: 4px solid var(--cd-accent); }
.why-feature-box:hover { box-shadow: 0 15px 35px rgba(0, 166, 81, 0.15); transform: translateY(-4px); border-color: #00a651; }
.why-feature-img-wrap { background: #f8fafc; border-radius: 12px; height: 90px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.fs-64 { font-size: 52px; }
.text-blue-dark { color: #002766; }
.max-h-64 { max-height: 64px; max-width: 64px; }
.why-feature-title { font-size: 18px; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.why-feature-desc { font-size: 14px; color: #64748b; line-height: 1.5; margin: 0; }
.why-section-white { background: white; padding: 80px 20px; text-align: center; }
.why-section-desc-mb35 { font-size: 16px; color: #64748b; margin-bottom: 35px; }
.flex-center { display: flex; justify-content: center; }
.why-join-btn { background: #00a651; color: white; border: none; padding: 14px 40px; border-radius: 50px; font-size: 18px; font-weight: 700; text-decoration: none; display: inline-block; box-shadow: 0 10px 20px rgba(0, 166, 81, 0.2); transition: transform 0.3s; }
.why-join-btn:hover { transform: scale(1.05); }

@media (max-width: 768px) {
    .why-hero-grid { grid-template-columns: 1fr; }
    .why-hero-title { font-size: 36px; }
}
/* Auto-extracted inline styles */
.cd-auto-302f96 { margin-top:18px; font-size:16px; color:#ffffff; font-weight:700; list-style:none; padding:0; display:flex; flex-direction:column; gap:10px; }
.cd-auto-492ec0 { display:flex; align-items:center; gap:8px; }
.cd-auto-4006cd { color:#ffffff; font-size:18px; }
.cd-auto-1c2018 { padding: 80px 20px; }
.cd-auto-36e3f7 { max-width: 1400px; margin: 0 auto; width: 100%; }
.cd-auto-b7e6db { padding: 0; padding-bottom: 24px; display: flex; flex-direction: column; text-align: left; height: 100%; border-radius: 24px; overflow: hidden; border: 1px solid #e2e8f0; background: #ffffff; }
.cd-auto-1e6a4a { width: 100%; height: 240px; object-fit: cover; margin-bottom: 20px; }
.cd-auto-9c596a { padding: 0 30px; display: flex; flex-direction: column; flex-grow: 1; }
.cd-auto-9ea490 { color: var(--cd-primary-dark); font-size: 24px; margin-bottom: 12px; font-weight: 700; text-align: left; }
.cd-auto-eee37c { color: var(--cd-text); opacity: 0.9; line-height: 1.6; margin: 0; text-align: left; }
.cd-auto-fbb328 { background: linear-gradient(135deg, #002766, #004b95); padding: 70px 20px; color: white; }
.cd-auto-e61fed { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
.cd-auto-b9cd86 { flex: 1; min-width: 280px; }
.cd-auto-7c5c55 { font-size: clamp(28px, 6vw, 42px); color: #ffffff; margin-bottom: 20px; font-weight: 700; line-height: 1.2; }
.cd-auto-23ce45 { font-size: 18px; color: #dbeafe; opacity: 0.9; line-height: 1.7; margin-bottom: 0; }
.cd-auto-216a3a { flex: 1.3; min-width: 280px; width: 100%; }
.cd-auto-3d5567 { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); border: 8px solid #ffffff; }
.cd-auto-81b755 { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.cd-auto-130419 { background: var(--cd-primary-dark); padding: 45px 20px; text-align: center; color: white; }
.cd-auto-832013 { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.cd-auto-4ff098 { font-size: 28px; font-weight: 700; color: #ffffff; margin: 0; line-height: 1.4; }
.cd-auto-052b35 { display: inline-block; background: #ffffff; color: var(--cd-primary); font-size: 18px; font-weight: 600; text-decoration: none; padding: 12px 36px; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: all 0.3s ease; }
.cd-auto-34d899 { margin-top:20px;font-size:16px;color:#475569; }
.cd-auto-67445c { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 999999; display: none; background: rgba(0,0,0,0.85); align-items: center; justify-content: center; }
.cd-auto-2ad3b3 { width: 100%; max-width: 800px; position: relative; padding: 20px; }
.cd-auto-10c203 { position: absolute; right: 20px; top: -20px; background: none; border: none; color: white; font-size: 40px; cursor: pointer; z-index: 10; }
.cd-auto-86a88d { position: relative; padding-bottom: 56.25%; height: 0; background: #000; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.cd-auto-e33644 { min-height: 50vh; }
.cd-auto-897426 { color: white; }
.cd-auto-920aaf { font-size: 22px; color: #dbeafe; }
.cd-auto-bf1093 { padding: 60px 0; background: #ffffff; }
.cd-auto-582c28 { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.cd-auto-da363f { max-width: 1200px; margin: 0 auto; }
.cd-auto-78afc7 { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; background: #f8fafc; padding: 10px; border-radius: 50px; border: 1px solid #e2e8f0; box-shadow: 0 4px 20px rgba(0,0,0,0.02); }
.cd-auto-571e4d { flex: 1; text-align: center; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 24px; border-radius: 40px; text-decoration: none; color: #002766; font-weight: 600; font-size: 16px; transition: all 0.3s ease; border: 1px solid transparent; }
.cd-auto-289e5c { font-size: 18px; color: #00a651; }
.cd-auto-a12dde { flex: 1; text-align: center; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 24px; border-radius: 40px; text-decoration: none; color: #64748b; font-weight: 600; font-size: 16px; transition: all 0.3s ease; border: 1px solid transparent; }
.cd-auto-778955 { font-size: 18px; color: #64748b; }
.cd-auto-dc48f8 { background: linear-gradient(135deg, #002766, #004b95); padding: 40px; border-radius: 24px; color: white; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 30px; align-items: center; margin-bottom: 40px; overflow: hidden; position: relative; }
.cd-auto-91963d { background: rgba(255,255,255,0.15); padding: 6px 12px; border-radius: 50px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.cd-auto-289c6d { font-size: 36px; font-weight: 800; color: white; margin-top: 15px; margin-bottom: 15px; }
.cd-auto-8b2b7d { color: rgba(255,255,255,0.9); font-size: 15px; line-height: 1.6; margin-bottom: 0; }
.cd-auto-c4bd92 { border-radius: 16px; overflow: hidden; height: 180px; box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
.cd-auto-7d1fae { width: 100%; height: 100%; object-fit: cover; }
.cd-auto-823148 { font-size: 20px; font-weight: 700; color: #002766; margin-bottom: 20px; border-bottom: 2px solid #e2e8f0; padding-bottom: 10px; }
.cd-auto-9f4c54 { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; margin-bottom: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; }
.cd-auto-546200 { background: #f1f5f9; padding: 10px 14px; display: flex; gap: 6px; align-items: center; border-bottom: 1px solid #e2e8f0; }
.cd-auto-11b723 { width: 8px; height: 8px; border-radius: 50%; background: #ff5f56; display: inline-block; }
.cd-auto-c286b8 { width: 8px; height: 8px; border-radius: 50%; background: #ffbd2e; display: inline-block; }
.cd-auto-2be3c5 { width: 8px; height: 8px; border-radius: 50%; background: #27c93f; display: inline-block; }
.cd-auto-3e3cfc { font-size: 11px; color: #94a3b8; font-weight: 600; margin-left: 10px; }
.cd-auto-5bb452 { padding: 10px; background: #ffffff; display: flex; align-items: center; justify-content: center; height: 180px; }
.cd-auto-e5de37 { max-width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.04)); transition: transform 0.3s ease; }
.cd-auto-edc051 { font-weight: 500; color: #00a651; margin-bottom: 8px; }
.cd-auto-2ff40a { display: none; background: linear-gradient(135deg, #002766, #004b95); border: 1px solid rgba(255,255,255,0.15); padding: 40px; border-radius: 28px; color: white; }
.cd-auto-911355 { background: transparent; padding: 0; color: white; overflow: hidden; position: relative; margin-left: 0; margin-right: 0; }
.cd-auto-0039f9 { padding:80px 40px; }
.cd-auto-82fd30 { margin-right:15px; display:inline-block; margin-top:24px; padding:16px 28px; background:white; color:var(--cd-primary); text-decoration:none; border-radius:12px; font-weight:600; }
.cd-auto-7bf2b4 { display:inline-block; margin-top:24px; padding:16px 28px; background:var(--cd-accent); color:white; text-decoration:none; border-radius:12px; font-weight:600; box-shadow:0 10px 28px rgba(255,122,0,.3); }
.cd-auto-d05e8f { padding: 100px 0; min-height: 320px; display: flex; align-items: center; justify-content: center; position: relative; }
.cd-auto-3e3796 { max-width: 1400px; width: 100%; margin: 0 auto; padding: 0 20px; }
.cd-auto-173a47 { text-align: left; max-width: 800px; }
.cd-auto-4a496b { font-size: 48px; font-weight: 700; color: white; margin-bottom: 20px; font-family: inherit; }
.cd-auto-4a12e2 { font-size: 18px; line-height: 1.6; color: rgba(255, 255, 255, 0.9); margin-bottom: 0; }
.cd-auto-e3d4a2 { position: relative; background: #ffffff; padding: 80px 20px; }
.cd-auto-b40cd3 { max-width: 1400px; margin: 0 auto; }
.cd-auto-9a4fd2 { font-size: 32px; font-weight: 700; color: var(--cd-primary-dark); margin-bottom: 25px; text-align: left; }
.cd-auto-face57 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: start; }
.cd-auto-102b7f { text-align: left; }
.cd-auto-cda6fb { font-size: 15px; line-height: 1.7; color: #475569; margin-bottom: 20px; margin-top: 0; }
.cd-auto-e14c4c { font-size: 15px; line-height: 1.7; color: #475569; margin-bottom: 20px; }
.cd-auto-c59afc { font-size: 15px; line-height: 1.7; color: #475569; margin-bottom: 0; }
.cd-auto-199b6f { width: 100%; }
.cd-auto-bcda09 { background: #f0f7ff; border-left: 5px solid #00a651; padding: 40px 35px; border-radius: 0 24px 24px 24px; box-shadow: 0 15px 35px rgba(0, 39, 102, 0.04); text-align: left; display: flex; flex-direction: column; position: relative; }
.cd-auto-b10044 { font-size: 72px; color: #bae6fd; line-height: 1; margin-bottom: -15px; margin-top: -15px; font-weight: 900; }
.cd-auto-350a97 { font-size: 18px; font-weight: 700; color: #002766; line-height: 1.6; margin-bottom: 25px; }
.cd-auto-5cb764 { font-size: 15px; font-weight: 700; color: #00a651; }
.cd-auto-aaaca0 { background: linear-gradient(135deg, #f4f6ff 0%, #ebf9f1 100%); padding: 80px 20px; text-align: center; border-top: 1px solid #f1f5f9; }
.cd-auto-f51f26 { font-size: 36px; font-weight: 700; color: var(--cd-primary-dark); margin-bottom: 10px; }
.cd-auto-20a11d { font-size: 16px; color: #64748b; margin-bottom: 35px; }
.cd-auto-68472f { display: flex; justify-content: center; }
.cd-auto-01f614 { background: #00a651; color: white; border: none; padding: 14px 40px; border-radius: 50px; font-size: 18px; font-weight: 700; text-decoration: none; display: inline-block; box-shadow: 0 10px 20px rgba(0, 166, 81, 0.2); transition: transform 0.3s; }
.cd-auto-ec1885 { padding: 14px 35px; font-weight:600; border-radius:30px; border:none; background: linear-gradient(135deg, var(--cd-primary) 0%, var(--cd-primary-dark) 100%); color:white; margin-right: 15px; }
.cd-auto-284eb1 { padding: 14px 35px; font-weight:600; border-radius:30px; border:none; background: linear-gradient(135deg, var(--cd-accent) 0%, var(--cd-accent-light) 100%); color:white; cursor:pointer; }
.cd-auto-28b070 { padding: 60px 0; background: #f8fafc; min-height: 500px; }
.cd-auto-5a8d6a { padding: 60px 20px; background: #f8fafc; min-height: auto; padding-bottom: 20px; display: flex; justify-content: center; align-items: center; }
.cd-auto-dc92ad { width: 100%; max-width: 800px; background: #fff; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); display: flex; flex-direction: column; height: 480px; overflow: hidden; position: relative; }
.cd-auto-8f32d3 { background: linear-gradient(135deg, #004b95 0%, #003366 100%); color: #fff; padding: 25px 20px; text-align: center; font-size: 1.25rem; font-weight: 600; box-shadow: 0 4px 10px rgba(0,0,0,0.1); z-index: 2; }
.cd-auto-17e0b9 { flex: 1; padding: 30px 20px; overflow-y: auto; background: #fafafa; display: flex; flex-direction: column; gap: 20px; }
.cd-auto-55d897 { padding: 20px; background: #fff; border-top: 1px solid #e2e8f0; position: relative; z-index: 2; }
.cd-auto-31aacd { position: absolute; bottom: 100%; left: 0; width: 100%; background: #fff; border: 1px solid #e2e8f0; border-bottom: none; border-radius: 16px 16px 0 0; box-shadow: 0 -10px 30px rgba(0,0,0,0.05); max-height: 180px; overflow-y: auto; display: none; margin-bottom: 1px; }
.cd-auto-e30fad { display: flex; gap: 15px; }
.cd-auto-bedb35 { flex: 1; padding: 16px 20px; border: 2px solid #e2e8f0; border-radius: 12px; font-size: 1rem; outline: none; transition: border-color 0.2s; }
.cd-auto-c39e9b { background: #004b95; color: #fff; border: none; padding: 0 30px; border-radius: 12px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-size: 1rem; }
.cd-auto-abedb6 { padding: 40px 20px 80px; background: #fff; }
.cd-auto-12a642 { max-width: 900px; margin: 0 auto; }
.cd-auto-5ae856 { text-align: center; color: #004b95; margin-bottom: 40px; font-weight: 700; }
.cd-auto-20bb5c { background: white; border: 1px solid #e2e8f0; border-radius: 12px; margin-bottom: 15px; overflow: hidden; }
.cd-auto-7ebd1a { background: transparent; color: #1e293b; font-weight: 600; padding: 20px 24px; box-shadow: none; font-size: 1.05rem; }
.cd-auto-b7203f { padding: 0 24px 20px 24px; color: #64748b; line-height: 1.6; }
.cd-auto-fe9fa7 { color: white; padding: 50px 20px; }
.cd-auto-bc9cee { margin-top: 30px; }
.cd-auto-8d13d2 { font-size: 42px; font-weight: 700; margin-bottom: 15px; color: white; }
.cd-auto-f928e3 { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 30px; }
.cd-auto-92902b { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 60px; }
.cd-auto-ef1577 { background: rgba(255,255,255,0.1); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #00a651; }
.cd-auto-cb4c42 { color: white; margin-bottom: 5px; font-weight: 600; font-size: 22px; }
.cd-auto-59324d { color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0; font-size: 16px; }
.cd-auto-0ebde6 { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; }
.cd-auto-faa107 { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 16px; }
.cd-auto-58b758 { background: white; padding: 30px; border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.cd-auto-202de2 { color: #002766; margin-bottom: 20px; font-weight: 700; }
.cd-auto-578b24 { display: flex; flex-direction: column; gap: 12px; }
.cd-auto-8afc05 { width: 100%; padding: 10px 15px; border: 1px solid #e2e8f0; border-radius: 8px; font-size: 15px; outline: none; transition: border-color 0.3s; height: 135px; resize: none; color: #333; }
.cd-auto-3991a8 { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 5px; flex-wrap: wrap; }
.cd-auto-c99770 { flex-shrink: 0; }
.cd-auto-899598 { background: linear-gradient(135deg, #00a651 0%, #00d669 100%); color: white; border: none; padding: 12px 24px; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 5px 15px rgba(0, 166, 81, 0.3); flex: 1; min-width: 150px; }
.cd-auto-c5be55 { border:none; }

/* Additional fixes for contact and offerings */
.cnt-input-alt { width: 100%; padding: 10px 15px; border: 1px solid #cbd5e1 !important; border-radius: 10px; font-size: 14px; outline: none; transition: all 0.3s ease; color: #1e293b; background-color: #f8fafc !important; box-sizing: border-box; }
.cnt-input-alt:focus { border-color: #00a651 !important; background-color: white !important; box-shadow: 0 0 0 4px rgba(0, 166, 81, 0.12) !important; }
.off-module-img { max-height: 50px; margin-bottom: 15px; }
.off-free-trial-btn { margin-right: 15px; display: inline-block; margin-top: 24px; padding: 16px 28px; background: var(--cd-accent, #ff7a00); color: white; text-decoration: none; border-radius: 12px; font-weight: 600; box-shadow: 0 10px 28px rgba(255,122,0,.3); }
.off-free-trial-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,122,0,.4); color: white; }

/* Book Demo Classes */
.demo-hero-flex { display: flex; gap: 20px; margin-top: 20px; flex-wrap: wrap; }
.demo-hero-item { display: flex; align-items: center; gap: 12px; }
.demo-hero-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 20px; color: #ffd199; }
.demo-hero-label { font-weight: 500; }
.demo-form-title { font-size: 22px; font-weight: 700; color: var(--cd-primary, #1e3a8a); margin-bottom: 15px; text-align: center; }
.demo-req-star { color: red; }
.demo-captcha-wrap { margin-bottom: 25px; display: flex; justify-content: flex-start; }


/* ==========================================
   Extracted from individual pages 
   ========================================== */

/* --- Extracted from pages/index.php (Block 1) --- */
.hero-buttons .secondary {
        background: #ff7a00;
        color: #ffffff;
        font-weight: 600;
        box-shadow: 0 10px 28px rgba(255, 122, 0, 0.3);
        border: none;
        transition: all 0.3s ease;
    }
    .hero-buttons .secondary:hover {
        background: #e06c00;
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(255, 122, 0, 0.45);
    }

/* --- Extracted from pages/offerings.php (Block 1) --- */
.footer{background: #ffffff;}

            article.scrollspy-example {
                position: relative;
                overflow: scroll;
                width: 350px;
                height: 160px;
            }
            .section .card {
                background: white;
                padding: 30px 24px;
                border-radius: 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.04);
                border: 1px solid #e2e8f0;
                transition: all 0.3s ease;
                text-align: center;
                height: 100%;
            }
            .section .card:hover {
                transform: translateY(-5px);
                box-shadow: 0 15px 35px rgba(0,0,0,0.08);
                border-color: #00a651;
            }
            .section .card i {
                font-size: 36px;
                color: #00a651;
                margin-bottom: 20px;
                display: inline-block;
            }
            .section .card h3 {
                font-size: 20px;
                font-weight: 700;
                color: #002766;
                margin-bottom: 12px;
            }
            .section .card p {
                color: #64748b;
                font-size: 14px;
                line-height: 1.6;
                margin-bottom: 0;
            }
            .section .title {
                color: #002766;
                font-weight: 800;
                text-align: center;
                margin-bottom: 8px;
            }
            .section .sub {
                color: #64748b;
                font-size: 16px;
                text-align: center;
                margin-bottom: 40px;
            }
            @media (max-width: 991px) {
                .offerings-grid {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 20px;
                }
                .offerings-grid-2 {
                    grid-template-columns: 1fr;
                    gap: 20px;
                }
            }
            @media (max-width: 575px) {
                .offerings-grid {
                    grid-template-columns: 1fr;
                }
            }
            .offerings-menu .menu-item:hover {
                background: rgba(0, 166, 81, 0.04);
                color: #00a651;
            }
            .offerings-menu .menu-item.active {
                background: rgba(0, 166, 81, 0.12);
                color: #008a40;
                border-color: #00a651;
                font-weight: 700;
                box-shadow: 0 4px 12px rgba(0, 166, 81, 0.1);
            }
            @media (max-width: 991px) {
                .section .container > div {
                    grid-template-columns: 1fr;
                }
                .sidebar-wrapper {
                    position: static;
                    order: -1;
                    margin-bottom: 30px;
                }
                .offerings-menu {
                    display: flex;
                    gap: 12px;
                }
                .offerings-menu .menu-item {
                    margin-bottom: 0;
                    flex: 1;
                    justify-content: center;
                }
            }
            @media (max-width: 575px) {
                .offerings-menu {
                    flex-direction: column;
                }
            }

/* --- Extracted from pages/why-us.php (Block 1) --- */
@media (max-width: 991px) {
            .why-us-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .why-us-grid div {
                text-align: center;
            }
        }

/* --- Extracted from pages/why-us.php (Block 2) --- */
@media (max-width: 768px) {
            .helps-grid {
                grid-template-columns: 1fr;
            }
        }

/* --- Extracted from pages/why-us.php (Block 3) --- */
.btn-info {
			border-radius: 38px; 
			box-shadow: 0px 22px 54px rgba(242,122,109,0.4); 
			background-image: linear-gradient(100deg, #e95355 0%, #fdb591 100%);
			border: none; 
			font-size: 18px;
		}

/* --- Extracted from pages/why-us.php (Block 4) --- */
.features-teachers-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        @media (max-width: 991px) {
            .features-teachers-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .features-teachers-grid {
                grid-template-columns: 1fr;
            }
        }

/* --- Extracted from pages/about.php (Block 1) --- */
.footer{background: #ffffff;}

/* --- Extracted from pages/about.php (Block 2) --- */
@media (max-width: 991px) {
            .about-story-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

/* --- Extracted from pages/faq.php (Block 1) --- */
.faq-hero {
            background: linear-gradient(135deg, rgba(0,39,102,0.9), rgba(0,59,149,0.9)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1600&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            text-align: center;
            color: white;
        }
        .faq-hero h1 {
            font-weight: 800;
            font-size: 48px;
            margin-bottom: 20px;
            color: white;
        }
        .faq-search-box {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }
        .faq-search-box input {
            width: 100%;
            padding: 16px 24px;
            border-radius: 50px;
            border: none;
            font-size: 16px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            outline: none;
        }
        .nav-pills .nav-link {
            border-radius: 50px;
            color: #475569;
            font-weight: 600;
            padding: 10px 24px;
            margin: 5px;
            background: #f1f5f9;
        }
        .nav-pills .nav-link.active {
            background: #003b95;
            color: white;
        }
        .accordion-button:not(.collapsed) {
            background-color: transparent;
            color: #00a651;
            box-shadow: none;
        }
        .accordion-button:focus {
            box-shadow: none;
        }
        /* Highlight search match */
        .highlight {
            background-color: #fef08a;
            padding: 2px;
            border-radius: 3px;
        }
        @media (max-width: 768px) {
            .faq-hero h1 { font-size: 36px; }
            .nav-pills { flex-wrap: nowrap; overflow-x: auto; white-space: nowrap; padding-bottom: 10px; }
            .nav-pills::-webkit-scrollbar { height: 4px; }
            .nav-pills::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
        }

/* --- Extracted from pages/faq.php (Block 2) --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

.chat-container {
}
.message {
    animation: fadeIn 0.3s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    font-size: 0.95rem;
    transition: background 0.2s;
}
.suggestion-item:hover {
    background: #f8fafc;
    color: #004b95;
}
.chat-messages::-webkit-scrollbar {
    width: 6px;
}
.chat-messages::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
.user-message {
    align-self: flex-end;
    background: #004b95;
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px 12px 0 12px;
    max-width: 80%;
    font-size: 0.95rem;
}
.bot-message {
    align-self: flex-start;
    background: #f1f5f9;
    color: #334155;
    padding: 12px 18px;
    border-radius: 12px 12px 12px 0;
    max-width: 80%;
    font-size: 0.95rem;
    line-height: 1.5;
}
.bot-message p {
    margin-bottom: 0.5rem;
}
.bot-message p:last-child {
    margin-bottom: 0;
}

/* --- Extracted from pages/book-demo.php (Block 1) --- */
body { background: #f8fafc; font-family: 'Poppins', sans-serif; }
        .demo-hero {
            background: linear-gradient(120deg,rgba(0,59,149,.92),rgba(0,39,102,.90)), url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?q=80&w=1600&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            padding: 50px 0;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .demo-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }
        .demo-info h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            color: white;
            line-height: 1.2;
        }
        .demo-info p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            line-height: 1.6;
        }
        .demo-card {
            background: white;
            padding: 30px 34px;
            border-radius: 24px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
            color: #333;
        }
        .demo-card .form-group {
            margin-bottom: 16px;
        }
        .demo-card label {
            display: block;
            margin-bottom: 6px;
            font-weight: 600;
            color: #334155;
            font-size: 14px;
        }
        .demo-card input[type="text"], 
        .demo-card input[type="email"], 
        .demo-card input[type="date"],
        .demo-card select {
            width: 100%;
            padding: 10px 14px;
            border-radius: 10px;
            border: 1px solid #cbd5e1;
            outline: none;
            font-size: 14px;
            transition: all 0.3s ease;
            background: #f8fafc;
            box-sizing: border-box;
            color: #1e293b;
        }
        .demo-card input:focus,
        .demo-card select:focus {
            border-color: #00a651;
            background: white;
            box-shadow: 0 0 0 4px rgba(0, 166, 81, 0.12);
        }
        .checkbox-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 4px;
        }
        .demo-card label.checkbox-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #475569;
            cursor: pointer;
            margin-bottom: 0;
            font-weight: 500;
        }
        .checkbox-item input[type="checkbox"] {
            width: 18px;
            height: 18px;
            accent-color: #00a651;
            cursor: pointer;
            margin: 0;
        }

        .btn-submit {
            background: linear-gradient(135deg, #00a651 0%, #00d669 100%);
            color: white;
            border: none;
            padding: 12px 32px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            box-shadow: 0 8px 20px rgba(0, 166, 81, 0.2);
            margin-top: 10px;
            height: 48px;
        }
        .btn-submit:hover {
            background: #008a44;
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(0, 166, 81, 0.3);
        }
        .form-grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        @media (max-width: 1024px) {
            .demo-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .demo-hero { padding: 40px 0; }
            .demo-card { padding: 24px; }
            .form-grid-2 { grid-template-columns: 1fr; gap: 15px; }
            .demo-info h1 { font-size: 36px; }
        }
        @media (max-width: 768px) {
            .demo-container { padding: 0 15px; grid-template-columns: 1fr; gap: 30px; }
            .demo-card { 
                padding: 20px 15px; 
                width: 100%; 
                max-width: 100%; 
                box-sizing: border-box; 
                overflow: hidden; 
            }
            .demo-info h1 { font-size: 28px; }
            .recaptcha-wrap {
                margin: 0 0 25px 0;
                width: 100%;
                display: flex;
                justify-content: flex-start;
            }
            .recaptcha-wrap .g-recaptcha {
                transform: scale(0.85);
                transform-origin: left top;
                -webkit-transform: scale(0.85);
                -webkit-transform-origin: left top;
            }
        }
        .alert {
            padding: 15px;
            margin-bottom: 20px;
            border: 1px solid transparent;
            border-radius: 8px;
            font-weight: 500;
        }
        .alert-success { color: #155724; background-color: #d4edda; border-color: #c3e6cb; }
        .alert-danger { color: #721c24; background-color: #f8d7da; border-color: #f5c6cb; }

/* Header Classes */
header.modern-header.cd-header-fixed { position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 1030; background: white; border-bottom: 1px solid #eee; padding: 12px 0; }
.cd-header-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 20px; flex-wrap: nowrap; }
.cd-logo-link { display: flex; align-items: center; text-decoration: none; }
.cd-logo-img { height: 50px; }
.cd-mobile-toggle { background: none; border: none; font-size: 28px; cursor: pointer; color: #003b95; outline: none; margin-left: auto; }
.cd-hamburger-icon { color: #00a651; }
.cd-pages-dropdown { display: inline-block; padding: 10px 18px; text-decoration: none; color: var(--cd-text, #1f2937); font-weight: 500; }
.cd-pages-menu { position: absolute; background: white; border-radius: 4px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); list-style: none; padding: 10px 0; margin: 0; min-width: 150px; z-index: 1000; }
.cd-dropdown-item { display: block; padding: 8px 15px; color: #475569; text-decoration: none; }
.cd-login-link { color: #00a651; font-weight: 600; text-decoration: none; font-size: 18px; padding: 8px 10px; transition: all 0.3s ease; }
.cd-login-link:hover { color: #008a40; text-decoration: underline; }

@media(max-width:1000px){
    .cd-header-container {
        align-items: flex-start;
        padding-top: 5px;
        flex-wrap: wrap;
    }
}
.modern-header nav a { white-space: nowrap; }

/* QA fix for consistent capitalization across all card titles */
.off-module-title, .off-card-title, .why-helps-title, .why-feature-title, .why-step-title, .abt-value-title, .cnt-box-title, .why-approach-title, .why-info-title, .ts-papers-title {
    text-transform: capitalize;
}

/* Fix global popup message z-index to overlap the modern header and prevent cropping */
#_pa_msg {
    z-index: 100000 !important;
    top: 20px !important;
    min-height: fit-content;
    max-height: 80vh;
    overflow-y: auto !important;
    word-wrap: break-word;
}
