/* Navbar Styling */
.navbar {
    background-color: #343a40; /* Dark background color */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
}

.navbar-brand:hover {
    color: #f0f0f0;
}

.nav-link {
    color: #494949; /* Charcoal text color */
    text-decoration: none; /* Remove underline */
    padding: 10px 15px; /* Padding around the link */
    font-size: 16px; /* Font size */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 1s ease, color 1s ease; /* Slower transition for hover */
}

.nav-link:hover {
    background-color: #D1BEA8; /* Dark vanilla background color on hover */
    color: #494949; /* Charcoal text color on hover */
} 

.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7"/></svg>');
}

.btn {
    background-color: #8B4513; /* Russet color */
    border-color: #8B4513;
    color: #ffffff; /* White text color */
    padding: 10px 20px; /* Padding around the button */
    font-size: 16px; /* Font size */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 1s ease, color 1s ease; /* Slower transition for hover */
    margin:0 10px;
}



.btn:hover {
    background-color: #000000; /* Black color on hover */
    border-color: #000000;
    color: #ffffff; /* White text color on hover */
}

/* Hero Card Styling */
.hero-card {
    position: relative;
    text-align: center;
    color: white;
}

.hero-card img {
    width: 100%;
    height: auto;
}

.hero-card .card-img-overlay {
    background: rgba(0, 0, 0, 0.5);
    top: 50%;
    transform: translateY(-50%);
}

.hero-card .btn {
    margin: 10px;
}

/* Mission Card Styling */
.mission-card {
    background-image: url('./two.jpg'); /* Background image */
    background-size: cover;
    
    color: white;
    padding: 40px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
    border: none;
}

.mission-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.mission-card p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

/* Blog Carousel Styling */
.carousel-inner .carousel-item {
    padding: 20px;
}

.carousel-item img {
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.carousel-item .card {
    border: none;
}

/* Practice Area Card Styling */
.practice-area-card {
    transition: transform 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    margin-bottom: 20px;
}

.practice-area-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.practice-area-card .card-body {
    padding: 20px;
}

.practice-area-card .card-title {
    font-weight: bold;
    color: #333;
}

.practice-area-card .btn {
    background-color: #8B4513; /* Russet color */
    color: #ffffff;
    transition: background-color 0.2s;
}

.practice-area-card .btn:hover {
    background-color: #000000; /* Black color on hover */
}

/* View More Link Styling */
.view-more {
    text-align: center;
    margin-top: 20px;
}

.view-more a {
    color: #007bff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.2s;
}

.view-more a:hover {
    color: #0056b3;
}

/* Feedback Section Styling */
.feedback-section {
    background-color: #f8f9fa;
    padding: 40px 20px;
    text-align: center;
}

.feedback-section p {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.feedback-section .btn {
    font-size: 1.25rem;
}

/* Footer Styling */
footer {
    background: #343a40;
    color: white;
    padding: 40px 0;
    position: relative;
}

footer .footer-link {
    color: #ffffff;
    text-decoration: none;
}

footer .footer-link:hover {
    text-decoration: underline;
}

footer .social-icons a {
    color: white;
    font-size: 20px;
    margin-right: 15px;
}

footer .social-icons a:hover {
    color: #007bff;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

footer .container {
    position: relative;
    z-index: 1;
}
        .login-form {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            max-width: 450px;
            width: 100%;
            position: relative;
            background-image: url('./one.jpg'); /* Replace with your form background image URL */
            background-size: cover;
            background-position: center;
        }
        .login-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.8); /* Optional: Adds a white overlay for readability */
            border-radius: 12px;
            z-index: 1;
        }
        .form-label {
            display: block;
            font-weight: bold;
            margin-bottom: 5px;
            position: relative;
            z-index: 2;
        }
        .form-control {
            width: 100%;
            border-radius: 8px;
            padding: 10px;
            font-size: 15px;
            border: 1px solid #ddd;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.3s ease;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        .form-control:focus {
            border: none; /* Remove border on focus */
            box-shadow: 0 0 8px rgba(73, 73, 73, 0.2); /* Maintain shadow effect on focus */
        }
        .btn-login {
            background-color: #494949;
            color: white;
            border :none;
            border-radius: 25px;
            padding: 10px 30px;
            transition: background-color 0.3s ease;
            display: block;
            margin: 20px auto 0;
            position: relative;
            z-index: 2;
        }
        .btn-login:hover {
            background-color: #dea769;
            color: black;
        }
        .login-form h2 {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }
        .registration-form {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            max-width: 450px;
            width: 100%;
            position: relative;
            background-image: url('./one.jpg'); /* Replace with your form background image URL */
            background-size: cover;
            background-position: center;
        }
        .registration-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.8); /* Optional: Adds a white overlay for readability */
            border-radius: 12px;
            z-index: 1;
        }
        .form-label {
            display: block;
            font-weight: bold;
            margin-bottom: 5px;
            position: relative;
            z-index: 2;
        }
        .form-control {
            width: 100%;
            border-radius: 8px;
            padding: 10px;
            font-size: 15px;
            border: 1px solid #ddd;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.3s ease;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        .form-control:focus {
            border: none; /* Remove border on focus */
            box-shadow: 0 0 8px rgba(73, 73, 73, 0.2); /* Maintain shadow effect on focus */
        }
        .btn-register {
            background-color: #494949;
            color: white;
            border-radius: 25px;
            border : none;
            padding: 10px 30px;
            transition: background-color 0.3s ease;
            display: block;
            margin: 20px auto 0;
            position: relative;
            z-index: 2;
        }
        .btn-register:hover {
            background-color: #dba260;
            color: black;
        }
        .registration-form h2 {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }
        .text{
            color: black !important;
        }

