body {
    font-family: "Roboto Slab", serif;
    color: #333;
    line-height: 1.8;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #fff;
}

.navbar-nav .nav-link {
    position: relative; /* Ensures the ::after pseudo-element is positioned relative to the nav-link */
    color: #fff; /* Nav link text color */
    transition: color 0.3s ease; /* Smooth transition for color */
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0; /* Start with no underline */
    height: 2px; /* Thickness of the underline */
    background-color: #007bff; /* Color of the underline */
    transition: width 0.3s ease; /* Sliding effect */
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px; /* Position the underline below the text */
    width: 100%;
    height: 2px;
    background-color: #007bff;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%; /* Full underline on hover */
}

.navbar-nav .nav-link.active::after {
    width: 100%; /* Full underline for active link */
}

.navbar-nav .nav-link:hover {
    color: #fff; /* Keep text color the same on hover */
}
header {
    background: url('../images/hero-bg.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
header .text-center {
    position: relative;
    z-index: 2;
}

header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}
header p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}
section {
    padding: 4rem 0;
}
.btn-custom {
    background: #007bff;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    transition: background 0.3s;
}
.btn-custom:hover {
    background: #0056b3;
    color: #fff;
}
footer {
    background: #222;
    color: white;
    padding: 2rem 0;
    text-align: center;
}
footer a {
    color: #007bff;
    text-decoration: none;
}
footer a:hover {
    color: #0056b3;
}
.card {
    border: none;
    transition: transform 0.3s;
}
.card:hover {
    transform: translateY(-10px);
}
#contact .row {
    display: flex;
    align-items: stretch;
}

#contact .col-md-6 {
    display: flex;
    flex-direction: column;
}

#contact .col-md-6 .text-center {
    flex-grow: 1;
}

.border-gray {
    border-color: #ccc;
    border-radius: 12px;
    margin-right: 5px;
}

.border {
    border-width: 1px;
}

.contact-block {
    flex-grow: 1;
}

/* Make Call Us and Email side by side with a bit more spacing */
.d-flex.justify-content-between {
    display: flex;
    justify-content: space-between;
}

.w-48 {
    width: 50%; /* Adjusted width for each block to allow more space */
}

/* Optional: Adjusting padding/margin */
.contact-block i {
    margin-bottom: 10px;
}

.contact-block h4 {
    margin-bottom: 10px;
}

.contact-block p {
    margin-bottom: 0;
}
.team-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.team-member {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.team-member:hover {
    transform: scale(1.05);
}

.team-member img {
    width: 100%;
    height: 380px; /* Set a fixed height */
    object-fit: cover; /* Maintain aspect ratio and crop */
    display: block; /* Ensure the image is treated as a block element */
    margin: 0 auto; /* Center horizontally */
    border-radius: 8px 8px 0 0; /* Round top corners */
}

.team-info {
    padding: 20px;
    text-align: left; /* Center-align text inside the info section */
}

.team-info h4 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.team-info p {
    font-size: 14px;
    color: #777;
}

.social-icons {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.social-icons li {
    display: inline-block;
    margin-right: 10px;
}

.social-icons a {
    font-size: 18px;
    color: #333;
    transition: color 0.3s ease;
}

.social-icons i:hover {
    color: #007bff !important;
}
/* Updated "Our Services" Section */
.service-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Updated "Contact" Section */
.icon-circle {
    width: 60px;
    height: 60px;
    border: 2px dotted #0056b3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    background-color: #f9f9f9; /* Optional background color */
    position: relative; /* Ensure relative positioning */
}

.icon-circle i {
    font-size: 20px; /* Adjust font size as needed */
    color: #007bff;
    line-height: 1; /* Remove potential line-height issues */
    margin: 0; /* Remove potential default margins */
    position: relative; /* Ensure alignment within flexbox */
}

.icon-circle:hover i {
    color: #0056b3 !important; /* Change color on hover */
}
/* Style the service card container */
.service-card {
    position: relative;
    overflow: hidden; /* Ensures the zoom effect stays within bounds */
    border-radius: 10px; /* Smooth corners */
    transition: transform 0.3s ease; /* Optional: Add subtle effect on hover for the card */
}

/* Style the image inside the service card */
.service-card img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease; /* Smooth zoom effect */
    display: block; /* Ensure no gaps appear */
}
/* Style for the card body (title and text) */
.service-card .card-body {
    position: relative;
    z-index: 1;
    background-color: #fff;
    text-align: center;
    padding: 15px;
    border-top: 1px solid #ddd;
}

/* Optional: Hover effect for the entire card */
.service-card:hover {
    transform: translateY(-5px); /* Lift the card slightly */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Add shadow for a dynamic feel */
    border-color: #007bff; /* Change border color on hover */
    background-color: #f0f8ff; /* Optional: change card background on hover */
}

.service-card:hover img {
    transform: scale(1.5); /* Zoom in the image */
}
/* Default Card Title Style */
.service-card .card-title {
    color: #333; /* Default title color */
    transition: all 0.3s ease; /* Smooth transition for color change */
}

.service-card:hover .card-title {
    color: #007bff; /* Change title color on hover */
    transition: color 0.5s ease; /* Smooth transition for color */
}

.service-card:hover .icon-circle-service {
    background-color: #ffffff !important; /* Keep the background white */
    color: #007bff !important; /* Change font color */
    border: 2px solid #007bff !important; /* Change border to the hover color */
    transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease; /* Smooth transition for hover effects */
}
.hover-link:hover {
    color: #0d6efd;
    transition: color 0.3s ease;
}

.hover-btn:hover {
    background-color: #0069d9;
    transition: background-color 0.3s ease;
}

.bg-dark {
    background-color: #343a40 !important;
}

.fs-4 {
    font-size: 1.25rem !important;
}

.fs-5 {
    font-size: 1.1rem !important;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}
.custom-row {
    display: flex;
    justify-content: center; /* Center the content */
    gap: 20px; /* Optional: Add spacing between columns */
    flex-wrap: wrap; /* Ensure proper wrapping on smaller screens */
}

.custom-col {
    flex: 0 0 28%; /* Adjust width to 28% or your preferred size */
    max-width: 28%; /* Keep the width consistent */
    text-align: center; /* Ensure text remains centered */
}

@media (max-width: 768px) {
    .custom-col {
        flex: 0 0 100%; /* Full width for smaller screens */
        max-width: 100%;
    }
}
.contactForm input{
    height: 50px;
    border-radius: 0%;
}
.contactForm textarea {
    border-radius: 0%;
    resize: none;
}
.icon-circle-service {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
}
/* General container styles */
.custom-row .custom-col {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.custom-row .custom-col:hover {
    transform: translateY(-10px);
}

/* Icon wrapper styles */
.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #007bff, #343a40);
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.icon-wrapper i {
    color: #fff;
    font-size: 2rem;
}

/* Headings and text styles */
h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

p {
    font-size: 1rem;
    color: #666;
}
/* Target the active image inside the GLightbox */
.glightbox-container .gslide img {
    border-radius: 20px; /* Rounded edges for the image */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6); /* Depth via shadow */
    border: 5px solid rgba(255, 255, 255, 0.8); /* Subtle border for elegance */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animations for hover effects */
}

/* Add hover effect for extra catchiness */
.glightbox-container .gslide img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8); /* Stronger shadow effect */
    border: 5px solid rgba(255, 255, 255, 1); /* Bolder border on hover */
}

/* Glow Effect (Optional) */
.glightbox-container .gslide img::after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 25px; /* Match or exceed the image border-radius */
    background: rgba(255, 255, 255, 0.2); /* Light glow */
    z-index: -1; /* Behind the image */
    pointer-events: none; /* Doesn't interfere with user interactions */
    animation: glowEffect 1.5s infinite alternate; /* Soft pulsating glow */
}

/* Glow Animation */
@keyframes glowEffect {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}
#discount .modal-content {
    background: linear-gradient(145deg, #007bff, #fff); /* Bluey gradient */
    color: #fff;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

#discount .modal-header {
    border-bottom: none;
}

#discount .modal-title {
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#discount .modal-body {
    font-size: 1.2rem;
    line-height: 1.5;
    padding: 2rem;
}

#discount .modal-body p {
    color: #000;
}

#discount .modal-footer {
    border-top: none;
}

#discount .btn-claim {
    background: #007bff;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

#discount .btn-claim:hover {
    background: #0056b3;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
}
.btn-gradient {
    background: linear-gradient(90deg, #007bff, #00c6ff);
    color: white;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.btn-gradient:hover {
    background: linear-gradient(45deg, #0056b3, #0099cc);
    color: white;
    transform: scale(1.05);
}

/* Custom styles for the registration modal */
#registrationModal .modal-content {
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

#registrationModal .modal-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 10px 10px 0 0;
}

#registrationModal .modal-title {
    font-weight: bold;
    font-size: 1.5rem;
}

#registrationModal .nav-tabs .nav-link {
    border-radius: 5px 5px 0 0;
    color: #007bff;
    font-weight: 600;
}

#registrationModal .nav-tabs .nav-link.active {
    background: #007bff;
    color: white;
}

#registrationModal .form-control {
    border-radius: 8px;
    padding: 10px;
}

#registrationModal .input-group-text {
    background: #007bff;
    color: white;
    border-radius: 8px 0 0 8px;
}

#registrationModal .btn-gradient {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    transition: 0.3s ease;
}

#registrationModal .btn-gradient:hover {
    background: linear-gradient(135deg, #0056b3, #003d82);
}

#registrationModal .modal-footer {
    justify-content: space-between;
}

#registration .input-group-text {
    width: 40px;  /* Set a fixed width */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0; /* Remove extra padding */
    border-radius: 0;
}
.form-step {
    display: none;
}

.error {
    border: 2px solid red;
}
