@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Changa&family=Dancing+Script&family=Heebo&family=Josefin+Sans&display=swap');
:root {
	--open-sans: 'Open Sans', sans-serif;
	--oswald: 'Oswald', sans-serif;
	--blue: #0097FC;
	--light-blue: #7AC1FE;
	--dark-blue: #008CEA;
	--grey: #828282;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: var(--open-sans);
}
body {
	background-color: #FD6766;

}
a {
	text-decoration: none;
}
li {
	list-style: none;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
	height: 100%;
}
nav {
	background: #fff;
	height: 60px;
	position: relative;
	z-index: 111;
}
nav .toggle-navbar {
	cursor: pointer;
	position: relative;
	z-index: 200;
	transition: all .3s ease;
	display: none;
}
nav > .nav-container {
	display: flex;
	align-items: center;
}
nav .brand {
	margin-right: auto;
	font-size: 24px;
	font-weight: 700;
	font-family: var(--oswald);
	color: #000;
	text-transform: uppercase;
}

nav .nav-menu {
	display: flex;
	grid-gap: 36px;
}
nav .nav-menu > li {
	height: 60px;
    font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
}
nav .nav-menu > li > a {
	color: #000;
	font-family: 'changa', 'cursive';
	letter-spacing: 0.5px;
    text-decoration: none;
	transition: all .3s ease;
	font-weight: 600;
}

nav .nav-menu > li > a:hover, nav .nav-menu > li:hover{
	color: #ED3226;
}

.nav-menu > li > a .bx {
	transition: all .3s ease;
	transform: rotate(0deg);
}
.nav-menu > li.active > a{
	color: #ED3226;
}
.nav-menu > li.active > a .bx {
	transform: rotate(180deg);
	color: #ED3226;
}
.nav-menu > li .dropdown-menus {
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	background: #fff;
	overflow-y: hidden;
	max-height: 0;
	transition: all .3s ease;
}
::-webkit-scrollbar {
    width: 4px;
    color: #000
  }
.nav-menu > li.active .dropdown-menus {
	max-height: 10000px !important;
    z-index: 88;
}
nav .nav-menu > li .dropdown-menus .nav-container {
	display: flex;
	grid-gap: 56px;
	flex-wrap: wrap;
	padding: 24px 16px 40px;
}
nav .nav-menu > li .dropdown-menus .left-section {
	flex-grow: 1;
	flex-basis: 300px;
}
nav .nav-menu > li .dropdown-menus .left-section .dropdown-close {
	cursor: pointer;
	margin-bottom: 28px;
	display: none;
}
nav .nav-menu > li .dropdown-menus .left-section h1 {
	margin-bottom: 16px;
	font-size: 24px;
}
nav .nav-menu > li .dropdown-menus .left-section p {
	line-height: 170%;
	font-size: 16px;
	color: var(--grey);
	margin-bottom: 28px;
}
nav .nav-menu > li .dropdown-menus .left-section .btn-see-all {
	padding: 12px 28px;
	background: #FD6766;
	border-radius: 8px;
	color: #fff;
	transition: all .3s ease;
	text-decoration: none;
}
nav .nav-menu > li .dropdown-menus .left-section .btn-see-all:hover {
	background: #FD6766;
}
nav .nav-menu > li .dropdown-menus .right-section {
	flex-grow: 1;
	flex-basis: 700px;
}
nav .nav-menu > li .dropdown-menus .right-section h3 {
	font-size: 18px;
	text-transform: uppercase;
	margin-bottom: 36px;
}
nav .nav-menu > li .dropdown-menus .right-section .dropdown-links {
	display: flex;
	
	flex-wrap: wrap;
	grid-gap: 28px;
}
.dropdown-about{
	letter-spacing: 1px;
	font-family: 'changa', 'cursive;';
}
nav .nav-menu > li .dropdown-menus .right-section .dropdown-links li {
	flex-grow: 1;
	flex-basis: 300px;
}
nav .nav-menu > li .dropdown-menus .right-section .dropdown-links li a {
	display: flex;
	align-items: center;
	grid-gap: 16px;

    text-decoration: none;
	color: #000;
	padding: 10px 10px 0 15px;
	transition: all.3s ease;
}
nav .nav-menu > li .dropdown-menus .right-section .dropdown-links li a .bx {
	min-width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	background: #f5f5f5;
	transition: all.3s ease;
}
nav .nav-menu > li .dropdown-menus .right-section .dropdown-links li a h5 {
	font-size: 16px;
	letter-spacing: 1px;
	font-family: 'changa', 'cursive;';

	margin-bottom: 6px;
	transition: all.3s ease;
}
nav .nav-menu > li .dropdown-menus .right-section .dropdown-links li a p {
	font-size: 14px;
	letter-spacing: 1px;
	
	font-family: 'changa', 'cursive;';
	font-size: 500;
	transition: all.3s ease;
}
nav .nav-menu > li .dropdown-menus .right-section .dropdown-links li a:hover {
	background-color: #FD6766;
	

}
.fontawesometool{
	cursor: pointer;
}
@media screen and (max-width: 576px) {
	nav .nav-menu {
		position: fixed;
		top: 0;
		left: 100%;
		width: 100%;
		height: 100%;
		background: #fff;
		z-index: 100;
		flex-direction: column;
		align-items: flex-start;
		grid-gap: 0;
		padding-left: 24px;
		padding-top: 60px;
		transition: all .3s ease;
	}
	nav .nav-menu.show {
		left: 0;
	}
	nav .nav-menu > li .dropdown-menus {
		top: 0;
		overflow: scroll;
		height: 100vh;
		left: 100%;	
		transition: all .3s ease;
	}
	nav .nav-menu > li .dropdown-menus.show {
		left: 0;
	}
	nav .nav-menu > li:hover .dropdown-menus {
		max-height: 100vh;
	}
	nav .nav-menu > li > a .bx {
		transform: rotate(-90deg);
	}
	nav .nav-menu > li:hover > a .bx {
		transform: rotate(-90deg);
	}
	nav .nav-menu > li .dropdown-menus .left-section .dropdown-close {
		display: inline-block;
	}
	nav .toggle-navbar {
		display: block;
		transition-delay: .3s;
	}
	nav .toggle-navbar.hide {
		opacity: 0;
		pointer-events: none;
		transition-delay: 0s;
	}
}

/* Our Services */



.box {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
	
}

.our-services {
    margin-top: 75px;
    padding-bottom: 30px;
    padding: 0 60px;
    min-height: 198px;
    text-align: center;
	height: 300px;
    border-radius: 10px;
	
    background-color: #fff;
    box-shadow: 0 0 25px 0 rgba(27, 27, 27, 0.17)
}

.our-services .icon {
    margin-bottom: -21px;
    transform: translateY(-50%);
    text-align: center;
}
.our-services p{
    padding-bottom: 20px;
}
.our-services:hover h4,
.our-services:hover p {
    cursor: pointer;
    
}
.speedup,
.settings,
.privacy,
.backups,
.ssl,
.database {
    transition: all .5s ease;
}
.speedup:hover,
.settings:hover,
.privacy:hover,
.backups:hover,
.ssl:hover,
.database:hover {
    box-shadow: 0 0 25px 0 rgba(143, 143, 143, 0.57)

}

/* content card */

.content-card{
	background-color: transparent;
	cursor: pointer;
	transition: 0.2s;
}
.content-card-red{
	border: 1px solid #DA7878;
}
.content-card-red:hover{
	background-color: #f5c7c7;
}

.content-card-blue{
	border: 1px solid #3984F8;
}
.content-card-blue:hover{
	background-color: #EAF3FE
}

.content-card-green{
	border: 1px solid #20C8AC
}
.content-card-green:hover{
	background-color: #C5FEF5
}
.content-card-yellow{
	border: 1px solid #F0C734
}
.content-card-yellow:hover{
	background-color: #FEF0BF
}
.content-card-grey{
	border: 1px solid #D0AE94
}
.content-card-grey:hover{
	background-color: #FFECDC
}
.content-card-1{
	border: 1px solid #5C7049
}
.content-card-1:hover{
	background-color: #E7F7D7
}
.content-card-2{
	border: 1px solid #D13076
}
.content-card-2:hover{
	background-color: #FFE5EF
}
.content-card-3{
	border: 1px solid #FD9644;
}
.content-card-3:hover{
	background-color: #FFE6D1;
}

.content-card-4{
	border: 1px solid #6D214F;
}
.content-card-4:hover{
	background-color: #FDD5E5;
}

.content-card-5{
	border: 1px solid #B5EAEA;
}
.content-card-5:hover{
	background-color: #E1F5F5;
}

.content-card-6{
	border: 1px solid #F67280;
}
.content-card-6:hover{
	background-color: #FDE2E4;
}

.content-card-7{
	border: 1px solid #2D9CDB;
}
.content-card-7:hover{
	background-color: #D1F1FF;
}

.content-card-8{
	border: 1px solid #EB5757;
}
.content-card-8:hover{
	background-color: #FDEEEE;
}
.content-card-9{
	border: 1px solid #6D214F;
}
.content-card-9:hover{
	background-color: #FDD5E5;
}

.content-card-10{
	border: 1px solid #E63946;
}
.content-card-10:hover{
	background-color: #FFE5D9;
}

.content-card-11{
	border: 1px solid #5368DF;
}
.content-card-11:hover{
	background-color: #E7EAFD;
}

.content-card-12{
	border: 1px solid #FFC107;
}
.content-card-12:hover{
	background-color: #FFF8DC;
}

.content-card-13{
	border: 1px solid #27AE60;
}
.content-card-13:hover{
	background-color: #D8EAD3;
}

.content-card-14{
	border: 1px solid #2ECC71;
}
.content-card-14:hover{
	background-color: #D4EDDA;
}
.content-card-15{
	border: 1px solid #FF0066;
}
.content-card-15:hover{
	background-color: #FFC2D6;
}

.content-card-16{
	border: 1px solid #2B2D42;
}
.content-card-16:hover{
	background-color: #8D99AE;
}

.content-card-17{
	border: 1px solid #FF4136;
}
.content-card-17:hover{
	background-color: #FFD8D6;
}

.content-card-18{
	border: 1px solid #6F1E51;
}
.content-card-18:hover{
	background-color: #F4D2D3;
}

.content-card-19{
	border: 1px solid #0074D9;
}
.content-card-19:hover{
	background-color: #A9D1F7;
}

.content-card-20{
	border: 1px solid #FF7F50;
}
.content-card-20:hover{
	background-color: #FFE5D4;
}
.content-card-21{
	border: 1px solid #ED553B;
}
.content-card-21:hover{
	background-color: #F3B3A6;
}

.content-card-22{
	border: 1px solid #00B2CA;
}
.content-card-22:hover{
	background-color: #B1E6EA;
}

.content-card-23{
	border: 1px solid #F2C80F;
}
.content-card-23:hover{
	background-color: #FFF5CF;
}

.content-card-24{
	border: 1px solid #913D88;
}
.content-card-24:hover{
	background-color: #D5A6C2;
}

.content-card-25{
	border: 1px solid #00B159;
}
.content-card-25:hover{
	background-color: #B4E9C6;
}

.content-card-26{
	border: 1px solid #FFC300;
}
.content-card-26:hover{
	background-color: #FFE5B7;
}


.footer {
	position: relative;
	padding-top: 45px;
	background: #121518;
	background-image: url("https://cdn.pixabay.com/photo/2022/01/22/10/53/wave-6951458_960_720.png");
	background-repeat: repeat-x;
	background-position: top;
  }
  
  .footer .newsletter {
	position: relative;
	margin: 0 auto 45px auto;
	padding: 30px 15px;
	text-align: center;
  }
  
  .footer .newsletter h2 {
	color: #dddddd;
	font-size: 35px;
	font-weight: 600;
	margin-bottom: 20px;
  }
  
  .footer .newsletter .form {
	position: relative;
	max-width: 400px;
	margin: 0 auto;
  }
  
  .footer .newsletter input {
	height: 50px;
	border: 2px solid #cdcdcd;
	border-radius: 0;
  }
  
  .footer .newsletter .btn {
	position: absolute;
	top: 5px;
	right: 5px;
	height: 40px;
	padding: 8px 20px;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	color: #FD6766;
	background: #121518;
	border-radius: 0;
	border: 2px solid #FD6766;
	transition: .3s;
  }
  
  .footer .newsletter .btn:hover {
	color: #ffffff;
	background: #FD6766;
  }
  
  .footer .newsletter .btn:focus {
	box-shadow: none;
  }
  
  .footer .footer-about,
  .footer .footer-link,
  .footer .footer-contact {
	position: relative;
	margin-bottom: 45px;
	color: #dddddd;
  }
  
  .footer .footer-about h3,
  .footer .footer-link h3,
  .footer .footer-contact h3{
	position: relative;
	margin-bottom: 20px;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 1px;
	color: #FD6766;
  }
  
  .footer .footer-link a {
	display: block;
	text-decoration: none;
	margin-bottom: 10px;
	color: #dddddd;
	transition: .3s;
	text-transform: capitalize;
  }
  
  .footer .footer-link a::before {
	position: relative;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 10px;
  }
  
  .footer .footer-link a:hover {
	color: #FD6766
	
  }
  
  .footer .footer-contact p i {
	width: 25px;
  }
  
  .footer .footer-social {
	position: relative;
	margin-top: 20px;
  }
  
  .footer .footer-social a {
	display: inline-block;
  }
  
  .footer .footer-social a i {
	margin-right: 15px;
	font-size: 18px;
	color: #FD6766;
  }
  
  .footer .footer-social a:last-child i {
	margin: 0;
  }
  
  .footer .footer-social a:hover i {
	color: #dddddd;
  }
  
  .footer .footer-menu .f-menu {
	position: relative;
	padding: 10px 0;
	font-size: 0;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, .1);
	border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
  
  .footer .footer-menu .f-menu a {
	color: #dddddd;
	font-size: 16px;
	margin-right: 15px;
	text-decoration: none;
	transition: 0.2s;
	padding-right: 15px;
	border-right: 1px solid rgba(255, 255, 255, .3);
  }
  
  .footer .footer-menu .f-menu a:hover {
	color: #FD6766;
  }
  
  .footer .footer-menu .f-menu a:last-child {
	margin-right: 0;
	padding-right: 0;
	border-right: none;
  }
  
  .footer .copyright {
	padding: 30px 15px;
  }
  
  .footer .copyright p {
	margin: 0;
	color: #dddddd;
  }
  
  .footer .copyright .col-md-6:last-child p {
	text-align: right;
  }
  
  .footer .copyright p a {
	color: #FD6766;
	font-weight: 500;
	letter-spacing: 1px;
  }
  
  .footer .copyright p a:hover {
	color: #ffffff;
  }
  
  @media (max-width: 768px) {
	.footer .copyright p,
	.footer .copyright .col-md-6:last-child p {
	  margin: 5px 0;
	  text-align: center;
	}
  }
.common-btn{
	font-family: 'changa', 'cursive';
	background-color: #ED3427;
	color: #fff;

}
.main-container{
	background-color: #fff;
	border-radius: 15px;
	font-family: 'changa', 'cursive';

}
.tool-section{
	background-color: #fff;

}
.heading-main{
	font-family: 'changa', 'cursive';

}
.card-title, .card-text, .card-heading{
	font-family: 'changa', 'cursive';
}
.services-h4, .services-p, .services-head{
	font-family: 'changa', 'cursive';
}

/* Global dark theme + responsive overrides */
:root {
	--bg-main: #06080d;
	--bg-elev-1: #0c1118;
	--bg-elev-2: #121a25;
	--line-soft: #243041;
	--text-main: #e9eef8;
	--text-muted: #9eabc1;
	--accent: #ff5b5b;
	--accent-soft: #ff7d7d;
}

html,
body {
	background: radial-gradient(circle at 10% 10%, #131f30 0%, var(--bg-main) 45%, #04060a 100%) !important;
	color: var(--text-main);
	min-height: 100%;
}

a {
	color: var(--text-main);
}

nav {
	background: rgba(6, 10, 16, 0.9) !important;
	border-bottom: 1px solid var(--line-soft);
	backdrop-filter: blur(8px);
}

nav .brand,
nav .nav-menu > li > a,
.fontawesometool {
	color: var(--text-main) !important;
}

nav .nav-menu > li > a:hover,
nav .nav-menu > li:hover,
.nav-menu > li.active > a,
.nav-menu > li.active > a .bx {
	color: var(--accent) !important;
}

.nav-menu > li .dropdown-menus {
	background: var(--bg-elev-1) !important;
	border-top: 1px solid var(--line-soft);
}

nav .nav-menu > li .dropdown-menus .left-section h1,
nav .nav-menu > li .dropdown-menus .right-section h3,
nav .nav-menu > li .dropdown-menus .right-section .dropdown-links li a h5 {
	color: var(--text-main);
}

nav .nav-menu > li .dropdown-menus .left-section p,
nav .nav-menu > li .dropdown-menus .right-section .dropdown-links li a p,
.dropdown-about {
	color: var(--text-muted) !important;
}

nav .nav-menu > li .dropdown-menus .right-section .dropdown-links li a {
	color: var(--text-main);
	border: 1px solid transparent;
	border-radius: 10px;
}

nav .nav-menu > li .dropdown-menus .right-section .dropdown-links li a .bx {
	background: var(--bg-elev-2);
	color: var(--text-main);
}

nav .nav-menu > li .dropdown-menus .right-section .dropdown-links li a:hover {
	background-color: #1a2638;
	border-color: #2d3d55;
}

nav .nav-menu > li .dropdown-menus .left-section .btn-see-all,
.common-btn,
.footer .newsletter .btn {
	background: linear-gradient(120deg, var(--accent), #ff3b3b) !important;
	border-color: #ff4f4f !important;
	color: #fff !important;
}

.main-container,
.tool-section,
.our-services,
.content-card,
.card,
.range-box,
.list-group-item {
	background-color: var(--bg-elev-1) !important;
	color: var(--text-main) !important;
	border-color: var(--line-soft) !important;
}

.heading-main,
.card-heading,
.card-title,
.services-head,
.services-h4,
.card-text,
.services-p,
.pdfhead,
h1,
h2,
h3,
h4,
h5,
h6,
p,
label,
li {
	color: var(--text-main);
}

a[style*="color: #000"] {
	color: var(--text-main) !important;
}

.content-card {
	border: 1px solid var(--line-soft) !important;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.content-card:hover,
.our-services:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
	transition: all 0.25s ease;
}

.footer {
	background: #060a10;
	background-image: none;
	border-top: 1px solid var(--line-soft);
}

.footer .newsletter input {
	background: var(--bg-elev-1);
	border-color: var(--line-soft);
	color: var(--text-main);
}

.footer .footer-link a,
.footer .copyright p,
.footer .footer-about,
.footer .footer-about p {
	color: var(--text-muted);
}

.footer .footer-about h3,
.footer .footer-link h3,
.footer .footer-contact h3,
.footer .copyright p a,
.footer .footer-link a:hover,
.footer .footer-social a i {
	color: var(--accent);
}

.container-fluid[style*="background-color: #fff"],
.card[style*="background-color: #F2F6FF"] {
	background-color: var(--bg-elev-1) !important;
	border: 1px solid var(--line-soft);
	color: var(--text-main);
}

@media screen and (max-width: 992px) {
	nav .brand img {
		width: 140px;
		height: auto;
	}

	nav .nav-menu {
		padding-top: 72px;
		background: #070b12;
	}

	nav .nav-menu > li {
		height: auto;
		padding: 10px 0;
	}

	nav .nav-menu > li .dropdown-menus {
		background: #070b12;
	}
}

@media screen and (max-width: 768px) {
	.main-container {
		width: 94% !important;
		padding: 12px;
		border-radius: 12px;
	}

	.heading-main {
		font-size: 1.6rem;
	}

	.tool-section .col-sm-4,
	.row > [class*="col-"] {
		margin-bottom: 12px;
	}

	.our-services {
		height: auto;
		min-height: 220px;
		padding: 0 20px 20px;
	}
}

@media screen and (max-width: 576px) {
	.main-container {
		width: 96% !important;
	}

	.heading-main {
		font-size: 1.35rem;
	}

	.footer .newsletter h2 {
		font-size: 1.5rem;
	}
}

.sidebar-link.is-active {
	background: #1a2638;
	border-color: #2d3d55;
	color: #ffffff;
}

.sidebar-link.is-active i {
	color: #ff5b5b;
}

.ai-pdf-panel {
	margin: 8px 8px 14px;
	padding: 12px;
	background: #0f1724;
	border: 1px solid #243041;
	border-radius: 12px;
}

.ai-pdf-title {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	color: #f2f6ff;
}

.ai-pdf-subtitle {
	margin: 4px 0 10px;
	font-size: 0.78rem;
	color: #9eabc1;
}

.ai-pdf-form {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ai-upload-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	border: 1px dashed #2d3d55;
	border-radius: 10px;
	background: #111b2a;
	color: #dbe4f4;
	font-size: 0.82rem;
	cursor: pointer;
}

#aiPdfInput {
	display: none;
}

.ai-selection-text {
	margin: 0;
	font-size: 0.76rem;
	color: #9eabc1;
}

.ai-command-label {
	font-size: 0.78rem;
	font-weight: 600;
	color: #dbe4f4;
}

#aiCommandInput {
	min-height: 78px;
	resize: vertical;
	padding: 8px 10px;
	border-radius: 10px;
	border: 1px solid #2d3d55;
	background: #0a111b;
	color: #e9eef8;
	font-size: 0.82rem;
	line-height: 1.35;
}

#aiCommandInput:focus {
	outline: none;
	border-color: #ff5b5b;
	box-shadow: 0 0 0 2px rgba(255, 91, 91, 0.15);
}

.ai-submit-btn {
	width: 100%;
	border: 1px solid #ff4f4f;
	border-radius: 10px;
	padding: 9px 10px;
	font-size: 0.84rem;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(120deg, #ff5b5b, #ff3b3b);
	cursor: pointer;
}

.ai-status-text {
	min-height: 16px;
	margin: 0;
	font-size: 0.75rem;
	color: #9eabc1;
}

.ai-workspace {
	background: #0f1724;
	border: 1px solid #243041;
	border-radius: 14px;
	padding: 18px;
	margin-bottom: 8px;
}

.ai-workspace-header h2 {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 700;
	color: #f2f6ff;
}

.ai-workspace-header p {
	margin: 6px 0 0;
	font-size: 0.9rem;
	color: #9eabc1;
}

.ai-workspace-form {
	margin-top: 14px;
	min-height: 360px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 14px;
}

.ai-workspace-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ai-upload-label-lg {
	width: 100%;
	min-height: 96px;
	justify-content: center;
	font-size: 1rem;
	border-style: dashed;
	border-width: 1px;
}

.ai-chatbox {
	border-top: 1px solid #243041;
	padding-top: 12px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.dashboard-sidebar {
	padding-top: 16px;
}

.dashboard-sidebar .sidebar-nav {
	gap: 8px;
}

.dashboard-sidebar .sidebar-link {
	min-height: 48px;
}

.dashboard-sidebar .sidebar-caption {
	margin-top: 8px;
}

@media (max-width: 768px) {
	.ai-workspace {
		padding: 12px;
	}

	.ai-workspace-form {
		min-height: 300px;
	}
}

/* Sidebar stability fixes: separate scrolling + clear spacing */
.dashboard-shell {
	height: 100dvh;
	overflow: hidden;
}

.dashboard-sidebar {
	overflow-y: auto;
	overflow-x: hidden;
	padding: 18px 14px 28px;
	scrollbar-width: thin;
	scrollbar-color: #2d3d55 #0b111a;
}

.dashboard-sidebar::-webkit-scrollbar {
	width: 8px;
}

.dashboard-sidebar::-webkit-scrollbar-track {
	background: #0b111a;
}

.dashboard-sidebar::-webkit-scrollbar-thumb {
	background: #2d3d55;
	border-radius: 12px;
}

.dashboard-content {
	height: 100dvh;
	overflow-y: auto;
	overflow-x: hidden;
}

.sidebar-brand-wrap {
	margin-bottom: 18px;
}

.sidebar-caption {
	margin: 18px 10px 10px;
	font-size: 0.8rem;
	line-height: 1.25;
}

.sidebar-nav {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 8px;
}

.sidebar-link {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 50px;
	padding: 10px 12px;
	border-radius: 11px;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sidebar-link i {
	min-width: 20px;
	font-size: 1rem;
}

.sidebar-link span {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 0.9rem;
	font-weight: 600;
}

.dashboard-sidebar .sidebar-nav {
	height: auto !important;
	position: static !important;
	background: transparent !important;
	z-index: auto !important;
	border: 0 !important;
	padding: 0 !important;
}

.dashboard-sidebar .sidebar-nav .sidebar-link {
	height: auto !important;
	justify-content: flex-start !important;
}

@media (max-width: 991px) {
	.dashboard-shell {
		height: auto;
		overflow: visible;
	}

	.dashboard-sidebar {
		width: min(320px, 86vw);
		min-width: min(320px, 86vw);
		height: 100dvh;
		padding-bottom: 22px;
	}

	.dashboard-content {
		height: auto;
		overflow: visible;
	}

	.sidebar-link {
		min-height: 46px;
		padding: 9px 11px;
	}
}
