/* assets/css/style.css */
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

:root {
    --primary-color: #1a56db; /* Deeper Royal Blue */
    --secondary-color: #ff6b00; /* Vibrant Orange */
    --navy-color: #0b1120; /* Very Dark Navy */
    --bg-light: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    color: #334155;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 { 
    color: var(--navy-color); 
    font-weight: 700; 
    letter-spacing: -0.025em; 
}

.text-navy { color: var(--navy-color) !important; }
.text-orange { color: var(--secondary-color) !important; }
.bg-navy { background-color: var(--navy-color) !important; }
.bg-light { background-color: var(--bg-light) !important; }

/* Buttons */
.btn-primary-gradient {
    background: linear-gradient(135deg, var(--secondary-color), #ff8c00);
    color: white;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary-gradient:hover {
    background: linear-gradient(135deg, #ff8c00, var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
    color: white;
}
.btn-outline-navy {
    color: var(--navy-color);
    border: 2px solid var(--navy-color);
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline-navy:hover {
    background: var(--navy-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 17, 32, 0.2);
}

/* Glassmorphism Navbar */
.navbar {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    padding: 15px 0;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 10px 0;
}
.nav-link {
    color: var(--navy-color) !important;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: 0; left: 50%;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 80%;
}
.nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Hero Video Section */
.hero-video-wrapper {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    opacity: 0.8;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Neutral dark overlay without blue tint */
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}
.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
}

/* Premium Cards */
.product-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(26, 86, 219, 0.12);
    border-color: rgba(26, 86, 219, 0.1);
}
.product-card img {
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.product-card:hover img {
    transform: scale(1.05);
}

/* Service Cards with Glow */
.service-card {
    border-radius: 20px;
    background: white;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: all 0.4s ease;
    padding: 40px 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.service-card:hover::after {
    opacity: 1;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 17, 32, 0.08);
}
.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.1), rgba(26, 86, 219, 0.05));
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}
.service-card:hover .icon-box {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

/* Animated Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer styling */
.footer {
    background-color: var(--navy-color);
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%; width: 50%; height: 200%;
    background: radial-gradient(circle, rgba(26,86,219,0.15) 0%, rgba(11,17,32,0) 70%);
    pointer-events: none;
}
.footer-links a {
    position: relative;
    display: inline-block;
}
.footer-links a:hover {
    color: var(--secondary-color) !important;
    transform: translateX(8px);
    transition: all 0.3s ease;
}

/* Breadcrumb Header Area */
.page-header {
    background: linear-gradient(135deg, var(--navy-color) 0%, var(--primary-color) 100%);
    padding: 100px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: -50px; left: 0; width: 100%; height: 100px;
    background: var(--bg-light);
    transform: skewY(-2deg);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(26, 86, 219, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.back-to-top.active {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    background-color: #128c7e;
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}
