/* 
    Theme Name: Smartech Corporate Industrial
    Primary Color: #0B1F3A (Deep Corporate Blue)
    Secondary Color: #F58220 (Industrial Orange)
    Accent Color: #1E88E5
    Background: #F8F9FA
    Text Color: #212529
*/

:root {
    --primary: #0B1F3A;
    --secondary: #F58220;
    --accent: #1E88E5;
    --light: #F8F9FA;
    --dark: #212529;
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

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

/* Utilities */
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-dark-blue { background-color: #061224 !important; }
.btn-primary { 
    background-color: var(--primary); 
    border-color: var(--primary); 
}
.btn-primary:hover {
    background-color: #08162b;
    border-color: #08162b;
}
.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: white;
}
.btn-secondary:hover {
    background-color: #e07218;
    border-color: #e07218;
    color: white;
}

/* Topbar */
.topbar {
    font-size: 0.9rem;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease-in-out;
}
.navbar.sticky-top {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.nav-link {
    color: var(--primary) !important;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--secondary) !important;
}

/* Mega Menu */
.dropdown-mega:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}
.mega-menu {
    border-top: 3px solid var(--secondary);
    border-radius: 0 0 10px 10px;
}
.nav-product-link:hover {
    color: var(--secondary) !important;
    padding-left: 5px;
    transition: 0.3s;
}

/* Hero Section */
.hero-slider .swiper-slide {
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}
.hero-slider .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11, 31, 58, 0.7); /* Primary color overlay */
}
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

/* Section Styling */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
}
.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Cards */
.service-card, .product-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-bottom: 3px solid transparent;
}
.service-card:hover, .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-bottom: 3px solid var(--secondary);
}

/* Floating WhatsApp */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.float-whatsapp:hover {
    color: white;
    transform: scale(1.1);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 40px;
    display: none;
    z-index: 99;
}

/* Footer Links */
.footer-link {
    transition: 0.3s;
}
.footer-link:hover {
    color: var(--secondary) !important;
    padding-left: 5px;
}
