:root {
--primary: #4e4bff;
--blueMid: #8a7aff;
--light: #f5f6ff;
--deep: #4b3df2;
--grad: linear-gradient(135deg, #6b63ff, #4b3df2);
--page-bg: #f3f4fb;
}
body {
background: var(--page-bg);
font-family: "Poppins", Arial;
}
.skip-to-content {
position: absolute;
left: -9999px;
top: 0;
z-index: 2000;
padding: 10px 16px;
background: var(--deep);
color: #fff;
border-radius: 0 0 8px 0;
text-decoration: none;
font-weight: 600;
}
.skip-to-content:focus {
left: 0;
}
.logo-icon {
width: 28px;
height: 28px;
object-fit: contain;
}
.main-nav {
transition: 0.3s ease;
background: transparent;
}
.main-nav.scrolled {
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.navbar-toggler {
border: none;
}
.navbar-toggler:focus {
box-shadow: none;
}
.nav-link {
font-weight: 500;
}
.brand-logo,
.brand-logo:hover,
.brand-logo:focus {
text-decoration: none;
}
.main-nav .nav-link[aria-current="page"] {
text-decoration: underline;
text-underline-offset: 6px;
}
.offcanvas .nav-link {
padding: 8px 4px;
}
.hero-section {
min-height: 70vh;
padding-top: 120px;
position: relative;
z-index: 1;
background: linear-gradient(
180deg,
#ffffff 0%,
#eef0ff 20%,
#bfc4ff 45%,
#8a7aff 70%,
#4b3df2 100%
);
display: flex;
justify-content: center;
align-items: center;
}
.hero-section--compact {
min-height: 0;
padding-top: 140px;
padding-bottom: 60px;
}
.hero-title {
color: #fff;
font-weight: 800;
font-size: 42px;
}
.hero-text {
color: rgba(255, 255, 255, 0.85);
font-size: 16px;
max-width: 650px;
margin: 10px auto 25px;
}
.hero-section .btn.hero-btn {
background: #fff;
color: #4b3df2;
font-weight: 600;
border-radius: 10px;
transition: 0.3s;
}
.hero-section .btn.hero-btn:hover {
background: rgba(255, 255, 255, 0.9);
transform: translateY(-2px);
}
.appointment-box {
position: relative;
border-radius: 22px 0 0 22px;
background: var(--grad);
overflow: hidden;
}
.appointment-box::before,
.appointment-box::after {
content: "";
position: absolute;
width: 200px;
height: 200px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.15);
}
.appointment-box::before {
top: -40px;
left: -20px;
}
.appointment-box::after {
bottom: -30px;
right: 30px;
}
.appointment-box > * {
position: relative;
z-index: 1;
}
.equal-img {
height: 255px;
width: 100%;
object-fit: cover;
border-radius: 0 22px 22px 0;
}
.no-gap {
}
.footer-section {
background: #ffffff;
}
.footer-links {
list-style: none;
padding: 0;
}
.footer-links li {
margin-bottom: 6px;
}
.footer-links a {
text-decoration: none;
color: #555;
font-size: 0.9rem;
}
.footer-links a:hover {
color: #4e4bff;
}
.footer-contact {
list-style: none;
padding: 0;
}
.footer-contact li {
margin-bottom: 8px;
font-size: 0.9rem;
color: #444;
}
.footer-contact li a {
color: inherit;
text-decoration: none;
}
.footer-contact li a:hover {
color: #4e4bff;
}
.footer-contact i {
color: #4e4bff;
margin-right: 6px;
}
.newsletter-box input {
border-radius: 8px;
}
.footer-section .newsletter-box button {
border-radius: 8px;
}
.social-icons a {
color: var(--blueMid);
text-decoration: none;
line-height: 1;
}
.social-icons a:hover {
color: #4e4bff;
}
.social-icons i {
font-size: 18px;
cursor: pointer;
color: var(--blueMid);
}
.logo {
color: var(--blueMid) !important;
}
.footer-credit p {
margin-bottom: 0;
}
@media (prefers-reduced-motion: reduce) {
[data-aos] {
opacity: 1 !important;
transform: none !important;
transition: none !important;
animation: none !important;
}
}
.form-status {
border-radius: 10px;
padding: 10px 14px;
font-size: 14px;
margin-bottom: 12px;
}
.form-status--success {
background: #e8f7ee;
color: #1c6b3c;
}
.form-status--error {
background: #fdeaea;
color: #a11a1a;
}
.form-status ul {
margin: 6px 0 0;
padding-left: 18px;
}