:root {
    --primary: #0d6efd;
    --dark: #121212;
    --light: #f8f9fa;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body { font-family: 'Inter', sans-serif; }
.py-100 { padding: 100px 0; }
.rounded-custom { border-radius: 20px; }

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero-pro { min-height: 90vh; padding-top: 100px; background: radial-gradient(circle at bottom right, #eff6ff, #fff); }
.bg-primary-soft { background: rgba(13, 110, 253, 0.1); border-radius: 50px; padding: 10px 20px; font-weight: 600; font-size: 14px; }

/* Carousel Excellence */
.carousel-img { height: 600px; object-fit: cover; }
.carousel-item::after {
    content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    color: #333 !important;
    bottom: 40px !important;
    max-width: 500px;
    left: 40px !important;
}

/* Service Zoom Pro */
.service-zoom-pro {
    background: #1e1e1e; padding: 40px; border-radius: 20px; text-align: center;
    border: 1px solid #333; cursor: pointer; transition: var(--transition);
}
.service-zoom-pro i { font-size: 50px; margin-bottom: 20px; display: block; }
.service-zoom-pro.selected { transform: scale(1.1); border-color: var(--primary); background: #252525; }

/* Feature Boxes */
.feature-pro-box { padding: 30px; border-radius: 15px; border: 1px solid #eee; transition: var(--transition); }
.feature-pro-box:hover { transform: translateY(-10px); background: #fff; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }


.hero-image-only {
    height: 100vh; /* Full screen height */
    background-image: url("Imeage/01 (2).png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.career-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.career-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.12);
}

.bg-primary-soft {
    background-color: rgba(13,110,253,0.1);
}
/* ===============================
   PREMIUM STICKY NAVBAR EFFECT
================================ */

.navbar {
    min-height: 90px;
    transition: all 0.35s ease;
}

/* Default logo size */
.brand-logo {
    height: 62px;
    width: auto;
    transition: all 0.35s ease;
    object-fit: contain;
}

/* Shrink state (on scroll) */
.navbar.scrolled {
    min-height: 70px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.navbar.scrolled .brand-logo {
    height: 48px;
}

/* Logo hover – premium subtle effect */
.navbar-brand:hover .brand-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 10px rgba(13,110,253,0.25));
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .navbar {
        min-height: 70px;
    }

    .brand-logo {
        height: 46px;
    }

    .navbar.scrolled .brand-logo {
        height: 42px;
    }
}


/* Mobile */
@media (max-width: 768px) {
    .navbar {
        min-height: 70px;
    }

    .brand-logo {
        height: 48px;
    }
}

