/* =========================================
   1. Global & Typography
   ========================================= */
:root {
    --primary-color: #0d6efd;
    --card-bg: #ffffff;
    --hover-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Times New Roman', Times, serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

a { text-decoration: none; }

/* =========================================
   2. Hero Section
   ========================================= */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

div[data-aos="zoom-in"] img {
    animation: float 5s ease-in-out infinite;
}

/* =========================================
   3. Cards Styling
   ========================================= */
.bg-white.rounded-4, 
.border.rounded-4 {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.bg-white.rounded-4:hover, 
.border.rounded-4:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow) !important;
    border-color: var(--primary-color) !important;
}

.border.rounded-4:hover .fs-1, 
.bg-white.rounded-4:hover .fs-2 {
    transform: scale(1.15);
    transition: transform 0.3s ease;
}

/* =========================================
   4. Border Colors (Why Choose Us)
   ========================================= */
.border-primary-subtle:hover { background-color: #f0f7ff; border-color: #0d6efd !important; }
.border-success-subtle:hover { background-color: #f0fff4; border-color: #198754 !important; }
.border-warning-subtle:hover { background-color: #fffbf0; border-color: #ffc107 !important; }
.border-info-subtle:hover    { background-color: #f0fdff; border-color: #0dcaf0 !important; }
.border-danger-subtle:hover  { background-color: #fff5f5; border-color: #dc3545 !important; }
.border-secondary-subtle:hover { background-color: #f8f9fa; border-color: #6c757d !important; }

/* =========================================
   5. Button
   ========================================= */
.fire-btn {
    background: linear-gradient(45deg, #0d6efd, #0dcaf0);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(13, 202, 240, 0.4);
    transition: all 0.4s ease;
}

.fire-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 202, 240, 0.6);
    color: #fff;
}