
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
@import "blog.css";
@import "regform.css";
* {
	font-family: 'Montserrat', sans-serif;
}

body {
	background: #000;;
}

.navbar-style {
    box-shadow: 0 5px 10px #efefef;
}

.logo {
    height: 48px;
    padding: 1px 10px;
}

.icon-bar {
    background: black;
}

li a {
    color: black;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
* {
	font-family: 'Montserrat', sans-serif;
}
body {
	background: #000;
}
.section-padding {
	padding: 100px 0;
}

.carousel-item {
	height: 100vh;
	min-height: 300px;
}
.carousel-caption {
	bottom: 220px;
	z-index: 2;
}
.carousel-caption h5 {
	font-size: 45px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-top: 25px;
}
.carousel-caption p {
	width: 60%;
	margin: auto;
	font-size: 18px;
	line-height: 1.9;
}
.carousel-inner:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.navbar .getstarted {
	background: #106eea;
	margin-left: 30px;
	border-radius: 4px;
	font-weight: 400;
	color: #fff;
	text-decoration: none;
	padding: .5rem 1rem;
	line-height: 2.3;
}
.navbar-nav a {
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 500;
}
.navbar-light .navbar-brand {
	color: #000;
	font-size: 25px;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 2px;
}
.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
	color: #000;
}
.navbar-light .navbar-nav .nav-link {
	color: #000;
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
	color: #000;
}
.w-100 {
	height: 100vh;
}
.navbar-toggler {
	padding: 1px 5px;
	font-size: 18px;
	line-height: 0.3;
	background: #fff;
}
.portfolio .card {
	box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);
}
.team .card {
	box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);
}
.services .card-body i {
	font-size: 50px;
}
.team .card-body i {
	font-size: 20px;
}

.about .card-body i {
    font-size: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.carousel-caption {
		bottom: 370px;
	}
	.carousel-caption p {
		width: 100%;
	}
	.card {
		margin-bottom: 30px;
	}
	.img-area img {
		width: 100%;
	}
}
@media only screen and (max-width: 767px) {
	.navbar-nav {
		text-align: center;
	}
	.carousel-caption {
		bottom: 125px;
	}
	.carousel-caption h5 {
		font-size: 17px;
	}
	.carousel-caption a {
		padding: 10px 15px;
		font-size: 15px;
	}
	.carousel-caption p {
		width: 100%;
		line-height: 1.6;
		font-size: 12px;
	}
	.about-text {
		padding-top: 50px;
	}
	.card {
		margin-bottom: 30px;
	}
}

/* ============================
   FUTURISTIC / GLASSMORPHISM UI
   ============================ */

/* Glassmorphism card */
.glass-card {
    background: rgba(30, 30, 50, 0.45);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.35s ease;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.35);
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 35px rgba(0, 255, 255, 0.25);
    border-color: rgba(0, 255, 255, 0.35);
}

/* Glass container (for single service pages) */
.glass-box {
    background: rgba(30, 30, 50, 0.45);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    transition: all 0.35s ease;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.35);
}

.glass-box:hover {
    box-shadow: 0 0 35px rgba(0, 255, 255, 0.25);
    border-color: rgba(0, 255, 255, 0.35);
}

/* Neon underline title */
.neon-title {
    position: relative;
    display: inline-block;
}

.neon-title::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #00eaff, #7b2ff7);
    border-radius: 10px;
    box-shadow: 0 0 10px #00eaff;
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Futuristic button */
.btn-future {
    border: 1px solid rgba(0, 255, 255, 0.4);
    color: #00eaff;
    padding: 10px 26px;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: 0.3s ease;
    background: transparent;
}

.btn-future:hover {
    background: rgba(0, 255, 255, 0.15);
    border-color: rgba(0, 255, 255, 0.8);
    color: #fff;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.5);
}

/* ============================
   ADMIN PANEL STYLES
   ============================ */

.admin-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border-radius: 15px;
}

.admin-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #0d6efd;
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0d6efd;
}

.card-link {
    text-decoration: none;
    color: inherit;
}
