body {
    margin-top: 80px;
}

nav {
    border-bottom: solid;
    border-bottom-width: 5px;
    border-image: linear-gradient(to left, #ff0000 0%, #808080 50%, #ffffff 100%) 1;
    border-image-slice: 1;
    animation: gradientAnimation 3s infinite;
}

@keyframes gradientAnimation {
    0% {
        border-image-source: linear-gradient(to left, #ff0000, #808080, #ffffff);
    }

    50% {
        border-image-source: linear-gradient(to left, #ffffff, #ff0000, #808080);
    }

    100% {
        border-image-source: linear-gradient(to left, #ff0000, #808080, #ffffff);
    }
}

a {
    color: #fafafa;
    text-decoration: none;
    /* No underline */
}

:root {
    --primary-red: #dc3545;
    --primary-white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background-color: var(--primary-white) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: var(--primary-red) !important;
    padding: 0 15px;
}

.nav-link {
    position: relative;
    margin: 0 0.8rem;
    color: var(--primary-red) !important;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border-color: var(--primary-red);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28220, 53, 69, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 76px;
    background: url('../assets/1.png') center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Section Titles */
.section-title {
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-red);
}

/* Vision Card */
.vision-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-5px);
}

/* Mission Items */
.mission-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-item {
    padding: 1.5rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    transition: transform 0.3s ease;
    height: 100%;
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.2);
}

.mission-item h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.floating-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-chat-btn:hover {
    transform: scale(1.1);
    background-color: var(--primary-red);
}

.chat-container {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 300px;
    height: 400px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    z-index: 999;
}

.chat-header {
    padding: 15px;
    background: var(--primary-red);
    color: white;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.chat-input {
    padding: 15px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.message {
    margin: 5px 0;
    padding: 8px 12px;
    border-radius: 15px;
    max-width: 80%;
}

.sent {
    background: var(--primary-red);
    color: white;
    margin-left: auto;
}

.received {
    background: #f1f1f1;
}
/* Contact Page Specific Styles */
.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h4 {
    position: relative;
    padding-bottom: 1rem;
}

.contact-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-red);
}

.contact-card p {
    color: #666;
    margin-bottom: 1rem;
}

.contact-card iframe {
    border-radius: 10px;
}
.branch-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}