:root {
    --primary-color: #010333; /* Deep Navy */
    --secondary-color: #0588A5; /* Teal */
    --accent-color: #FE765D; /* Coral */
    --bg-light: #f4fdff; /* Lightest Cyan */
    --text-main: #1e293b;
    --text-muted: #64748b;
    --font-main: 'Outfit', sans-serif;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-color);
}

.text-navy { color: var(--primary-color) !important; }
.text-teal { color: var(--secondary-color) !important; }
.text-coral { color: var(--accent-color) !important; }

.bg-navy { background-color: var(--primary-color) !important; }
.bg-teal { background-color: var(--secondary-color) !important; }
.bg-coral { background-color: var(--accent-color) !important; }

.btn-teal {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-teal:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(5, 136, 165, 0.2);
}

.btn-outline-teal {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-teal:hover {
    background: var(--secondary-color);
    color: white;
}

/* --- Header & Navigation --- */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
}

.branding-bar {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #edf2f7;
}

.main-navbar {
    background-color: var(--secondary-color) !important;
    padding: 10px 0; /* Added vertical padding for better spacing */
    box-shadow: var(--shadow-md);
}

.main-navbar .nav-link {
    color: white !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 10px 20px !important; /* Adjusted padding to match new navbar height */
    transition: var(--transition);
    border-radius: 5px;
}

.main-navbar .nav-link:hover, 
.main-navbar .nav-link.active {
    background: rgba(255,255,255,0.15); /* More visible background on hover/active */
}

.nav-enquiry-btn {
    background-color: var(--primary-color) !important;
    color: white !important;
    padding: 8px 25px !important;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    display: inline-block;
}

.nav-enquiry-btn:hover {
    background-color: transparent !important;
    color: white !important;
    border-color: white;
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero-wrapper {
    background-color: var(--bg-light);
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-subtitle-tag {
    display: inline-block;
    padding: 5px 15px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title span {
    color: var(--secondary-color);
}

.hero-image-box {
    position: relative;
    z-index: 1;
}

.hero-image-box img {
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.hero-image-box::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(var(--accent-color) 20%, transparent 20%);
    background-size: 10px 10px;
    z-index: -1;
}

/* --- Floating Cards --- */
.floating-cards {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.f-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.f-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--accent-color);
}

.f-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

/* --- Section Styling --- */
.section-tag {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title span {
    color: var(--secondary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* --- Property Cards (Like Specializations) --- */
.prop-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition);
    height: 100%;
}

.prop-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.prop-card .icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.prop-card .price {
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.4rem;
    display: block;
    margin: 15px 0;
}

/* --- Testimonials (Alumni style) --- */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--accent-color);
    position: relative;
}

.testimonial-card.teal { border-top-color: var(--secondary-color); }
.testimonial-card.navy { border-top-color: var(--primary-color); }

.quote-icon {
    font-size: 2rem;
    color: rgba(0,0,0,0.1);
    position: absolute;
    top: 20px;
    left: 20px;
}

/* --- Newsletter --- */
.newsletter-section {
    background: var(--bg-light);
    padding: 80px 0;
    border-radius: 50px;
    margin: 40px 0;
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 10px;
    border-radius: 50px;
    display: flex;
    box-shadow: var(--shadow-sm);
}

.newsletter-box input {
    border: none;
    padding: 10px 30px;
    flex: 1;
    outline: none;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0 20px;
}

.footer-heading {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
}

.footer-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .main-navbar .nav-link { padding: 10px 15px !important; }
}
