/*=========================================
AI Wealth Tech India
Frontend CSS v2.0
Part 1
Global + Hero + Dashboard
=========================================*/

/*=========================================
Reset
=========================================*/

.awti-wrapper,
.awti-wrapper *{
	box-sizing:border-box;
}

.awti-wrapper{
	width:100%;
	max-width:1400px;
	margin:40px auto;
	padding:20px;
	font-family:inherit;
	color:#111827;
}

/*=========================================
Branding Hero
=========================================*/

.awti-branding{
	position:relative;
	overflow:hidden;
	padding:50px 40px;
	margin-bottom:35px;
	border-radius:24px;
	background:linear-gradient(135deg,#2563eb,#16a34a);
	color:#fff;
	text-align:center;
	box-shadow:0 20px 55px rgba(37,99,235,.22);
}

.awti-branding::before{
	content:"";
	position:absolute;
	inset:0;
	background:linear-gradient(
		135deg,
		rgba(255,255,255,.15),
		transparent 65%
	);
}

.awti-branding-content{
	position:relative;
	z-index:2;
}

.awti-branding h1{
	margin:0;
	font-size:42px;
	font-weight:700;
	line-height:1.3;
	color:#fff;
}

.awti-branding p{
	margin:18px 0 28px;
	font-size:18px;
	color:rgba(255,255,255,.92);
}

.awti-branding-badges{
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
	gap:15px;
}

.awti-branding-badges span{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:10px 22px;
	border-radius:50px;
	background:rgba(255,255,255,.15);
	border:1px solid rgba(255,255,255,.25);
	backdrop-filter:blur(8px);
	font-size:15px;
	font-weight:600;
}

/*=========================================
Dashboard
=========================================*/

.awti-dashboard{
	margin-bottom:40px;
}

.awti-dashboard-grid{
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:24px;
}

.awti-dashboard-card{
	position:relative;
	display:block;
	overflow:hidden;
	padding:30px;
	border-radius:22px;
	background:#fff;
	border:1px solid #e5e7eb;
	text-decoration:none;
	color:#111827;
	box-shadow:0 12px 35px rgba(15,23,42,.08);
	transition:.35s ease;
}

.awti-dashboard-card:hover{
	transform:translateY(-6px);
	box-shadow:0 20px 50px rgba(37,99,235,.15);
	color:#111827;
	text-decoration:none;
}

.awti-dashboard-card::before{
	content:"";
	position:absolute;
	left:0;
	top:0;
	width:6px;
	height:100%;
}

.awti-live-card::before{
	background:#22c55e;
}

.awti-upcoming-card::before{
	background:#f59e0b;
}

.awti-closed-card::before{
	background:#ef4444;
}

.awti-dashboard-card.active{
	border:2px solid #2563eb;
	box-shadow:0 22px 55px rgba(37,99,235,.18);
}

.awti-card-icon{
	font-size:42px;
	margin-bottom:18px;
}

.awti-dashboard-card h2{
	margin:0;
	font-size:28px;
	font-weight:700;
	color:#111827;
	line-height:1.3;
}

.awti-dashboard-card h3{
	margin:18px 0 10px;
	font-size:52px;
	font-weight:800;
	line-height:1;
	color:#2563eb;
}

.awti-dashboard-card p{
	margin:0;
	font-size:15px;
	color:#6b7280;
}

/*=========================================
Hero Section
=========================================*/

.awti-hero{
	display:flex;
	align-items:center;
	gap:30px;
	padding:30px;
	margin-bottom:30px;
	background:#fff;
	border:1px solid #e5e7eb;
	border-radius:22px;
	box-shadow:0 10px 30px rgba(15,23,42,.08);
}

.awti-hero-image{
	flex-shrink:0;
}

.awti-hero-image img{
	width:150px;
	height:auto;
	border-radius:16px;
	display:block;
	box-shadow:0 10px 25px rgba(0,0,0,.10);
}

.awti-hero-content{
	flex:1;
}

.awti-hero-content h1{
	margin:0 0 15px;
	font-size:34px;
	font-weight:700;
	line-height:1.35;
	color:#111827;
}

.awti-hero-content p{
	margin:0;
	font-size:16px;
	line-height:1.8;
	color:#6b7280;
}

/*=========================================
Status Badge
=========================================*/

.awti-status{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:8px 18px;
	margin-bottom:16px;
	border-radius:999px;
	font-size:13px;
	font-weight:700;
	border:1px solid transparent;
}

.awti-status.live{
	background:#dcfce7;
	color:#15803d;
	border-color:#86efac;
}

.awti-status.upcoming{
	background:#fef3c7;
	color:#b45309;
	border-color:#fcd34d;
}

.awti-status.closed{
	background:#fee2e2;
	color:#b91c1c;
	border-color:#fca5a5;
}

.awti-status:not(.live):not(.upcoming):not(.closed){
	background:#eff6ff;
	color:#2563eb;
	border-color:#bfdbfe;
}/*=========================================
AI Wealth Tech India
Frontend CSS v2.0
Part 2
IPO Cards + Content Sections
=========================================*/

/*=========================================
IPO Accordion Card
=========================================*/

.awti-ipo-card{
	background:#fff;
	border:1px solid #e5e7eb;
	border-radius:22px;
	margin:30px 0;
	overflow:hidden;
	box-shadow:0 10px 30px rgba(15,23,42,.08);
	transition:all .35s ease;
}

.awti-ipo-card:hover{
	transform:translateY(-4px);
	box-shadow:0 18px 45px rgba(37,99,235,.12);
}

.awti-ipo-card.active{
	border-color:#2563eb;
	box-shadow:0 22px 50px rgba(37,99,235,.18);
}

/*=========================================
Accordion Header
=========================================*/

.awti-card-header{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:20px;
	padding:24px 28px;
	cursor:pointer;
	background:#fff;
	transition:.3s;
}

.awti-card-header:hover{
	background:#f8fafc;
}

.awti-card-left{
	flex:1;
}

.awti-company-title{
	margin:12px 0 0;
	font-size:30px;
	font-weight:700;
	color:#111827;
	line-height:1.35;
}

.awti-card-arrow{
	font-size:24px;
	font-weight:700;
	color:#2563eb;
	transition:.35s;
}

.awti-ipo-card.active .awti-card-arrow{
	transform:rotate(180deg);
}

/*=========================================
Accordion Body
=========================================*/

.awti-card-body{
	display:none;
	padding:30px;
	background:#f8fafc;
	border-top:1px solid #e5e7eb;
}

.awti-ipo-card.active .awti-card-body{
	display:block;
	animation:awtiFade .35s ease;
}

@keyframes awtiFade{

	from{
		opacity:0;
		transform:translateY(-8px);
	}

	to{
		opacity:1;
		transform:translateY(0);
	}

}

/*=========================================
Common Card
=========================================*/

.awti-card{
	background:#fff;
	border:1px solid #e5e7eb;
	border-radius:18px;
	padding:25px;
	margin-bottom:25px;
	box-shadow:0 8px 25px rgba(15,23,42,.06);
}

.awti-card h2{
	margin:0 0 20px;
	font-size:24px;
	font-weight:700;
	color:#111827;
}

/*=========================================
GMP Card
=========================================*/

.awti-gmp-card{
	border-left:5px solid #16a34a;
}

.awti-gmp-grid{
	display:grid;
	grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
	gap:18px;
}

.awti-gmp-item{
	background:#f8fafc;
	border-radius:14px;
	padding:18px;
	text-align:center;
}

.awti-gmp-item strong{
	display:block;
	margin-bottom:10px;
	font-size:15px;
	color:#6b7280;
}

.awti-gmp-value{
	font-size:28px;
	font-weight:800;
	color:#16a34a;
}

/*=========================================
Subscription Card
=========================================*/

.awti-subscription-card{
	border-left:5px solid #2563eb;
}

.awti-subscription-grid{
	display:grid;
	grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
	gap:18px;
}

.awti-subscription-item{
	background:#f8fafc;
	border-radius:14px;
	padding:18px;
	text-align:center;
}

.awti-subscription-item strong{
	display:block;
	margin-bottom:10px;
	font-size:15px;
	color:#6b7280;
}

.awti-subscription-value{
	font-size:26px;
	font-weight:700;
	color:#2563eb;
}

/*=========================================
Key Details
=========================================*/

.awti-key-details-card{
	border-left:5px solid #f59e0b;
}

.awti-key-details{
	width:100%;
	border-collapse:collapse;
}

.awti-key-details td{
	padding:14px 16px;
	border-bottom:1px solid #edf2f7;
	font-size:15px;
}

.awti-key-details td:first-child{
	font-weight:700;
	color:#374151;
	width:40%;
}

.awti-key-details td:last-child{
	color:#111827;
}

.awti-key-details tr:last-child td{
	border-bottom:none;
}

/*=========================================
Company Information
=========================================*/

.awti-company-info{
	line-height:1.9;
	font-size:16px;
	color:#4b5563;
}

.awti-company-info p{
	margin:0 0 18px;
}

/*=========================================
Analysis Button
=========================================*/

.awti-analysis-btn-wrap{
	text-align:center;
	margin:35px 0;
}

.awti-analysis-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:10px;
	padding:15px 32px;
	background:linear-gradient(135deg,#2563eb,#22c55e);
	color:#fff;
	text-decoration:none;
	font-size:16px;
	font-weight:700;
	border-radius:14px;
	box-shadow:0 12px 30px rgba(37,99,235,.18);
	transition:.3s;
}

.awti-analysis-btn:hover{
	transform:translateY(-3px);
	box-shadow:0 18px 40px rgba(37,99,235,.25);
	color:#fff;
	text-decoration:none;
}/*=========================================
AI Wealth Tech India
Frontend CSS v2.0
Part 3
Promoter + FAQ + Footer + Responsive
=========================================*/

/*=========================================
Promoter Card
=========================================*/

.awti-promoter-card{
	background:#fff;
	border:1px solid #e5e7eb;
	border-radius:20px;
	padding:25px;
	margin-bottom:30px;
	box-shadow:0 10px 30px rgba(15,23,42,.08);
}

.awti-promoter-card h2{
	margin:0 0 20px;
	font-size:24px;
	font-weight:700;
	color:#111827;
}

.awti-promoter-table{
	width:100%;
	border-collapse:collapse;
}

.awti-promoter-table th,
.awti-promoter-table td{
	padding:14px 16px;
	border-bottom:1px solid #edf2f7;
	text-align:left;
	font-size:15px;
}

.awti-promoter-table th{
	background:#f8fafc;
	font-weight:700;
	color:#374151;
}

.awti-promoter-table tr:last-child td{
	border-bottom:none;
}

/*=========================================
FAQ
=========================================*/

.awti-faq-card{
	background:#fff;
	border:1px solid #e5e7eb;
	border-radius:20px;
	padding:25px;
	margin-bottom:30px;
	box-shadow:0 10px 30px rgba(15,23,42,.08);
}

.awti-faq-card h2{
	margin:0 0 20px;
	font-size:24px;
	font-weight:700;
}

.awti-faq details{
	border:1px solid #e5e7eb;
	border-radius:12px;
	margin-bottom:15px;
	background:#fff;
}

.awti-faq summary{
	padding:18px 20px;
	cursor:pointer;
	font-weight:600;
	font-size:16px;
	list-style:none;
}

.awti-faq summary::-webkit-details-marker{
	display:none;
}

.awti-faq p{
	padding:0 20px 20px;
	margin:0;
	line-height:1.8;
	color:#4b5563;
}

/*=========================================
Footer Branding
=========================================*/

.awti-footer-branding{
	margin-top:40px;
	padding:35px 25px;
	text-align:center;
	background:#111827;
	color:#fff;
	border-radius:24px;
}

.awti-footer-branding h2{
	margin:0;
	font-size:30px;
	color:#fff;
}

.awti-footer-branding p{
	margin:15px auto;
	max-width:750px;
	line-height:1.8;
	color:#d1d5db;
}

.awti-footer-links{
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
	gap:12px;
	margin-top:20px;
}

.awti-footer-links span{
	padding:10px 18px;
	border-radius:50px;
	background:rgba(255,255,255,.10);
	font-size:14px;
}

/*=========================================
Back to Dashboard
=========================================*/

.awti-back-wrap{
	text-align:center;
	margin:35px 0 15px;
}

.awti-back-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:14px 30px;
	border-radius:14px;
	background:#2563eb;
	color:#fff;
	font-size:16px;
	font-weight:700;
	text-decoration:none;
	box-shadow:0 10px 25px rgba(37,99,235,.18);
	transition:.3s ease;
}

.awti-back-btn:hover{
	background:#1d4ed8;
	color:#fff;
	transform:translateY(-2px);
}

/*=========================================
Responsive
=========================================*/

@media (max-width:992px){

	.awti-dashboard-grid{
		grid-template-columns:repeat(2,1fr);
	}

	.awti-hero{
		flex-direction:column;
		text-align:center;
	}

	.awti-hero-image img{
		width:120px;
	}

}

@media (max-width:768px){

	.awti-dashboard-grid{
		grid-template-columns:1fr;
	}

	.awti-dashboard-card{
		padding:22px;
	}

	.awti-dashboard-card h2{
		font-size:24px;
	}

	.awti-dashboard-card h3{
		font-size:38px;
	}

	.awti-card-header{
		padding:18px;
	}

	.awti-company-title{
		font-size:22px;
	}

	.awti-card-body{
		padding:18px;
	}

	.awti-branding{
		padding:30px 20px;
	}

	.awti-branding h1{
		font-size:28px;
	}

	.awti-branding p{
		font-size:15px;
	}

	.awti-promoter-table{
		display:block;
		overflow-x:auto;
		white-space:nowrap;
	}

}

@media (max-width:480px){

	.awti-wrapper{
		padding:15px;
	}

	.awti-dashboard-card{
		padding:18px;
	}

	.awti-dashboard-card h2{
		font-size:20px;
	}

	.awti-dashboard-card h3{
		font-size:32px;
	}

	.awti-footer-branding h2{
		font-size:24px;
	}

	.awti-back-btn{
		width:100%;
	}

}