/* Custom CSS for Radant Sensors */

:root {
    --primary-color: #16a34a;
    --primary-dark: #15803d;
    --secondary-color: #10b981;
    --light-bg: #f3f4f6;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
}

* {
    scroll-behavior: smooth;
}
section.py-5.text-white.radant-sensors-img img {
	width: 33%;
	height: 233px;
	object-fit: scale-down;
	background: #f3f3f3;
	padding: 19px 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}


.about-img {
	width: 100%;
	object-fit: contain;
	background: linear-gradient(90deg, rgb(225 225 225) 0%, rgb(243 243 243) 50%, rgb(228 228 228) 100%);
}
/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 50%, #f3f4f6 100%);
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

/* Feature Icons */
.feature-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    background-color: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 12px;
}

.feature-icon-large {
    font-size: 4rem;
    width: 100px;
    height: 100px;
    background-color: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

/* Card Hover Effect */
.hover-card {
    transition: all 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(22, 163, 74, 0.15) !important;
}

/* Button Styling */
.btn-success {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(22, 163, 74, 0.3);
}

.btn-outline-success {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-success:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Badge Styling */
.bg-success {
    background-color: var(--primary-color) !important;
}

.bg-success-light {
    background-color: #dcfce7 !important;
}

/* Text Success */
.text-success {
    color: var(--primary-color) !important;
}

/* Images */
img {
    transition: all 0.3s ease;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--text-dark) !important;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
    border-bottom: 3px solid var(--primary-color);
}

/* Forms */
.form-control {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.form-label {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Accordion */
.accordion-button {
    font-weight: 600;
    color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
    background-color: #f0fdf4;
    color: var(--primary-color);
}

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

/* Footer */
footer {
    background-color: #111827 !important;
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

/* Sections */
section {
    position: relative;
}

section h1, section h2, section h3, section h4, section h5, section h6 {
    color: var(--text-dark);
    font-weight: 700;
}

/* Alert */
.alert-success {
    background-color: #dcfce7;
    border-color: var(--primary-color);
    color: var(--text-dark);
}

.alert-success .btn-close:focus {
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.25);
}

/* Badges */
.badge {
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .hero-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .feature-icon {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }

    .feature-icon-large {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Shadow Classes */
.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.shadow {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

/* Link Colors */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Spacing */
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

/* Typography */
.lead {
    font-size: 1.25rem;
    font-weight: 500;
}

.fw-bold {
    font-weight: 700 !important;
}

/* Cards */
.card {
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
}

/* Display Classes */
.display-4 {
    font-weight: 700;
}

.display-5 {
    font-weight: 700;
}

footer a {
	color: #fff;
}