/* Color Variables & Custom Styles */
:root {
    --primary-color: #0a192f;
    --accent-color: #fbbf24;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #334155;
    background-color: #f8fafc;
    /* Top-bar aur Navbar ki combined height ke mutabiq padding */
    padding-top: 100px; 
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.fw-black {
    font-weight: 900;
}

.tracking-wider {
    letter-spacing: 0.1em;
}

/* Top Bar Styling & Fixing */
.top-bar {
    background-color: #0b1329; 
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1070 !important;
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 0.72rem; 
        padding-top: 6px !important;
        padding-bottom: 6px !important;
    }
    
    .top-bar .container {
        gap: 4px !important;
    }
    
    .top-contact-info {
        flex-direction: column;
        gap: 2px !important;
    }
    
    body {
        padding-top: 80px;
    }
    
    .navbar {
        top: 31px !important; 
    }

    .navbar-logo {
        margin-top: 12px;
        height: 35px !important;      
    }
}

/* Bento Grid Layout Styles */
.cursor-pointer { 
    cursor: pointer; 
}

.bento-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.15) !important;
}

.bento-card .card-img {
    transition: transform 0.6s ease;
}

.bento-card:hover .card-img {
    transform: scale(1.06);
}

.card-gradient {
    background: linear-gradient(180deg, rgba(15,23,42,0.1) 20%, rgba(15,23,42,0.9) 90%);
}

/* Navbar Styling & Fixing */
.navbar {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    position: fixed !important;
    top: 30px; 
    left: 0;
    width: 100%;
    z-index: 1050 !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); 
}

.navbar .nav-link {
    color: #334155;
    font-weight: 600;
    transition: color 0.2s ease;
}

.navbar .nav-link:hover, .navbar .nav-link.active {
    color: var(--primary-color) !important;
}

/* Responsive Navbar Logo */
.navbar-logo {
    height: 50px;         
    width: auto;
    object-fit: contain;
    max-width: 100%;
}

.dropdown-menu {
    z-index: 1060 !important;
}

/* Bounce and Pulse Animation */
@keyframes bounce-pulse {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.1);
    }
}

.icon-active-anim {
    animation: bounce-pulse 2s ease-in-out infinite;
    display: inline-block;
}
/* Hero Section */
/* Hero Video Styling */
.hero-video-section {
    min-height: 78vh !important; 
}

.hero-video-section video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(0.75);  
}

.light-watercolor-section {
    background: 
        radial-gradient(circle at 10% 20%, rgba(251, 191, 36, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    background-size: cover;
    background-position: center;
}

/* Scroll Reveal Animation Styles */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.about-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, rgba(62, 128, 228, 0.4), rgba(7, 19, 37, 0.20)), url('/images/aboutbanner.jpg');
    background-size: cover;
    background-position: center;
}

/* Team Image Zoom Effect on Hover */
.team-img {
    transition: transform 0.4s ease;
}

.card:hover .team-img {
    transform: scale(1.05);
}

/* contactus*/
/* High-End Rich Contact Banner Styling */
.contact-hero-banner {
    background: linear-gradient(135deg, rgba(29, 74, 141, 0.75), rgba(15, 23, 42, 0.65)), url('/images/contactbanner.avif');
    background-size: cover;
    background-position: center;
}