:root {
    --primary-color: #9c27b0; /* Deep Purple/Pink from logo */
    --secondary-color: #00bcd4; /* Cyan/Blue from logo */
    --accent-color: #e91e63; /* Bright Pink from logo */
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #fff;
    --gradient-primary: linear-gradient(135deg, #9c27b0 0%, #00bcd4 100%);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, .section-title {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 15px 0;
    margin-inline: 0px;
}

.navbar.scrolled {
    padding: 10px 0;
    background: #fff;
}

.nav-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: rgb(33 151 172);
}
.nav-link:focus, .nav-link:hover {
    color: rgb(197 10 98);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #177fa1;
    border-color: #291453;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero-logo {
    max-width: 300px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.info-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
}

.info-box i {
    font-size: 2rem;
    display: block;
    color: var(--secondary-color);
}

/* Section Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
}

/* Cards */
.chair-card {
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    border-bottom: 5px solid var(--primary-color);
}

.chair-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.advisor-group {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.advisor-group h4 {
    color: var(--secondary-color);
}

/* Pricing */
.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.pricing-card.featured {
    background: rgba(156, 39, 176, 0.1);
    border-width: 2px !important;
    transform: scale(1.05);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.price small {
    font-size: 1rem;
    font-weight: 400;
}

/* Special Elements */
.special-rate {
    background: var(--gradient-primary) !important;
    color: white;
}

.submission-box, .accommodation-box {
    border-left: 5px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.submission-box:hover, .accommodation-box:hover {
    background: #fff !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: #000 !important;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: rotate(360deg);
}

/* Animations */
[data-aos] {
    pointer-events: none;
}

.aos-animate {
    pointer-events: auto;
}
@media screen and (max-width:678px){
    
    .info-box {
        min-width: 20px;
        max-width: 200px;
    }
    .fs-5 {
        font-size: 13px !important;
    }
}