:root {
    --primary-color: #1a1a1a;
    --indian-indigo: #002e5d; /* Rich Indian Indigo */
    --accent-color: #f4c430;  /* Saffron Gold */
    --bengali-red: #8e0000;
    --indian-teal: #006d77;
    --text-color: #333;
    --light-bg: #fdfaf5;      /* Warm cream background */
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background-color: rgba(26, 26, 26, 0.95) !important;
}

.navbar-scrolled {
    padding: 0.5rem 0;
    background-color: #1a1a1a !important;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 2px;
    border: 1px solid var(--accent-color);
    padding: 5px 15px;
}

.nav-link {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 15px;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Section Styling */
.section-padding {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Cards & Fusion Style */
.card {
    border: 1px solid rgba(0,0,0,0.1);
    border-top: 4px solid var(--accent-color); /* Indian accent border */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-radius: 0;
    background: white;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--indian-indigo);
}

.bg-dark {
    background-color: var(--indian-indigo) !important;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Animations */
.fade-up {
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Alpana Divider */
.alpana-divider {
    height: 30px;
    background-image: radial-gradient(circle, var(--indian-teal) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
    margin: 40px 0;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
    border-radius: 0;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e5b82e;
    border-color: #e5b82e;
    color: #000;
    transform: scale(1.05);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border: 5px solid white;
    outline: 1px solid var(--accent-color);
}