/* Premium Corporate Theme - Blesson Facility */
:root {
    --primary-blue: #0046ad;      /* Professional Royal Blue */
    --deep-navy: #0a192f;        /* Trust & Authority */
    --accent-gold: #d4af37;      /* Subtle luxury accent */
    --light-slate: #f8fafc;      /* Clean background */
    --glass: rgba(255, 255, 255, 0.8);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--deep-navy);
    background-color: #ffffff;
    line-height: 1.6;
}

/* 1. SECTION COLORS: Using "Alternating Depth" */
section { padding: 100px 0; }

.bg-light-alt { background-color: var(--light-slate); }
.bg-dark-premium { 
    background: linear-gradient(135deg, #0a192f 0%, #061221 100%); 
    color: white; 
}

/* 2. NAVIGATION: Glassmorphism Effect */
.navbar {
    backdrop-filter: blur(10px);
    background: var(--glass);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 0;
}

/* Stats Card Impact */
.stat-card { transition: 0.3s; }
.stat-card:hover { 
    background: var(--primary-blue) !important; 
    color: white !important; 
    transform: translateY(-5px);
}
.stat-card h3 { font-weight: 700; color: var(--primary-blue); }
.stat-card:hover h3 { color: white; }
/* Navbar & Logo */
.logo-img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-text span {
    line-height: 1;
    /* letter-spacing: 0.5px; */
}

/* Hero Section */
/* Custom Modern Hero Styling */
.hero-modern {
    background: url('images/BlessonFacility.png')no-repeat center center/cover; /* New optimized image */
    height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)); /* Subtle Dark Overlay */
    z-index: 1;
}

/* Make text modern and stand out */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem); /* Responsive font size */
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(to right, #fff, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-text {
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 800px;
    margin: 0 auto;
}
.btn-primary {
    background: linear-gradient(to right, var(--primary-blue), #0062ff);
    border: none;
    box-shadow: 0 8px 15px rgba(0, 70, 173, 0.2);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 70, 173, 0.3);
}

/* Modern Hover Effects */
.hero-btn {
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: scale(1.05);
    background-color: var(--dark-bg); /* Use logo colors for hover */
}

/* Service Cards */

/* .service-card-modern { border-radius: 15px; overflow: hidden; transition: 0.4s; } */
/* 4. SERVICE CARDS: Modern Elevation */
.service-card-modern {
    border-radius: 20px;
    background: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05) !important;
}

.service-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 70, 173, 0.15) !important;
}


.modern-service-img { height: 220px; object-fit: cover;   transition: transform 0.6s ease;}
.service-card-modern:hover .modern-service-img {
    transform: scale(1.1);
}

/* Advantage Section */
.advantage-card {
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: scale(1.05);
}

/* Sectors Boxes */
.sector-box {
    transition: all 0.3s ease;
    background: #fff;
}

.sector-box:hover {
    background: var(--primary-blue);
    color: white;
}

.sector-box:hover i {
    color: white !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white !important;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
background-color: #1ebe57;
}
/* Modal Styling */
.modal-content {
    border-radius: 15px;
    overflow: hidden;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero { height: 75vh; }
}
@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
/* Sectors Section - High Impact Styles */
.ls-2 { letter-spacing: 2px; }

.sector-card-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.sector-card-premium:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-12px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0, 70, 173, 0.3);
}

.icon-box-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), #00d2ff);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.5s ease;
}

.sector-card-premium:hover .icon-box-circle {
    transform: rotateY(180deg);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.6);
}

.text-light-50 {
    color: rgba(255, 255, 255, 0.6);
}
::selection {
    background: var(--primary-blue);
    color: white;
}
