/* Global Styles */
body {
    font-family: 'Poppins', sans-serif !important;
}

/* Navbar Styles */
.navbar {
    background-color: #007bff!important; /* Blue */
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff !important; /* White */
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #f8f9fa; /* Light Gray */
}

/* Footer Styles */
footer {
    background-color: #4a2894!important; /* Green */
    color: #fff; /* White */
}

/* About Us Section Styles */
#about {
    background-color: #f8f9fa; /* Light Gray */
    color: #212529; /* Dark Gray */
}

/* Our Team Section Styles */
#team {
    background-color: #fff; /* White */
    color: #212529; /* Dark Gray */
}

/* Our Services Section Styles */
#services {
    background-color: #f8f9fa; /* Light Gray */
    color: #212529; /* Dark Gray */
}

/* Our Clients Section Styles */
#clients {
    background-color: #fff; /* White */
    color: #212529; /* Dark Gray */
}

/* Latest Blogs Section Styles */
#blogs {
    background-color: #f8f9fa; /* Light Gray */
    color: #212529; /* Dark Gray */
}
/* File ITR Online Section Styles */
.text-custom-orange{
    color: #ff9136 !important;
}

@media (max-width: 767px) {
    .carousel-item .col-lg-4,
    .carousel-item .col-md-4,
    .carousel-item .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.custom-card {
    background-color: #fff; /* White background */
    border: none; /* No border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1); /* Soft shadows */
    transition: transform 0.2s, box-shadow 0.2s; /* Smooth transition for hover effect */
}

.custom-card:hover {
    transform: translateY(-5px); /* Lift card on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 12px 40px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.custom-card .card-body {
    padding: 20px; /* Add some padding */
}

.custom-card .card-title {
    font-weight: bold; /* Bold title */
    color: #333; /* Darker color for title */
}

.custom-card .card-text {
    color: #666; /* Slightly lighter color for text */
}

.custom-card .btn-primary {
    background-color: #007bff; /* Primary button color */
    border-color: #007bff; /* Primary button border color */
    transition: background-color 0.2s, box-shadow 0.2s; /* Smooth transition for button */
}

.custom-card .btn-primary:hover {
    background-color: #0056b3; /* Darker blue on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow to button on hover */
}

/* Carousel card */

.carousel-custom-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.carousel-custom-card .card-img-top {
    width: 200px;
    margin: auto;
    height: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.carousel-custom-card .card-body {
    padding: 20px;
}

.carousel-custom-card .card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
}

.carousel-custom-card .card-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.carousel-custom-card .btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.carousel-custom-card .btn-primary:hover {
    background-color: #0056b3;
}
