/* Custom CSS for Universal Versatile Society */
:root {
    --primary: #FF9933; /* Saffron - Warmth & Energy */
    --primary-dark: #cc7a29;
    --secondary: #138808; /* India Green - Nature & Growth */
    --accent: #000080; /* Navy Blue - Trust (Ashoka Chakra color) */
    --light: #F9F9F9;
    --dark: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 15px rgba(0,0,0,0.1);
    --radius: 12px;
}

/* Global Overrides */
body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--light);
}

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

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Navbar */
.navbar {
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.navbar .navbar-brand h2 {
    color: var(--primary) !important;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.navbar-light .navbar-nav .nav-link {
    font-weight: 600;
    color: var(--dark);
    transition: color 0.3s;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

/* Carousel */
.owl-carousel-item {
    position: relative;
    height: 80vh;
    min-height: 600px;
}

.owl-carousel-item img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85); /* Slight darken for text readability */
}

/* Cards & Services */
.service-item, .project-item, .portfolio-item {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
}

.service-item:hover, .project-item:hover, .portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: rgba(255, 153, 51, 0.1); /* Light Saffron */
    border-radius: 50%;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-icon i {
    color: var(--primary);
}

/* Features/Stats */
.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

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

.footer .text-white {
    color: var(--white) !important;
}

/* Utility */
.rounded-0 {
    border-radius: var(--radius) !important;
}

.btn-square {
    border-radius: 50% !important; /* Make social icons circular */
}

/* Glassmorphism for specific overlays if needed */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
