/********** Template CSS **********/
:root {
    /* --primary: #F3525A; */
    --primary: #25a9e0;
    /* --primary: #173f90; */
    /* --secondary: #F6F6F6; */
    --secondary: #5c5c5c;
    --light: #FFFFFF;
    --dark: #152440;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.pt-6 {
    padding-top: 90px;
}

.pb-6 {
    padding-bottom: 90px;
}

.py-6 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.btn {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.sticky {
    padding: 5px 20px 5px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
    box-shadow: 0 -6px 10px 5px rgba(0, 0, 0, 0.5);
}

.nav__menu li a:hover {
    color: var(--primary) !important;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--primary) !important;
    transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Barlow', sans-serif;
    padding: 35px 15px;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

.bg-primary,
.btn-primary,
.nav__menu .dropdown ul li {
    background: var(--primary) !important;
}

.btn-primary {
    border-color: var(--primary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.service-item {
    position: relative;
    overflow: hidden;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50px;
    bottom: -50px;
    left: 0;
    background: var(--light);
    border-radius: 100% 100% 0 0;
    box-shadow: 0px -10px 5px #EEEEEE;
    transition: .5s;
}

.service-item:hover::after {
    bottom: -25px;
}

.service-item p {
    transition: .3s;
}

.service-item:hover p {
    margin-bottom: 25px !important;
}

.team-item img {}

.team-item:hover img {
    margin-left: 0;
}

.team-item .team-text {
    left: -100%;
    transition: .5s;
}

.team-item .team-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    right: -60px;
    margin-top: -30px;
    border: 30px solid;
    border-color: transparent transparent transparent var(--primary) !important;
}

.team-item:hover .team-text {
    left: 0;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary) !important;
    font-size: 22px;
    border-radius: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .owl-item img {
    width: 90px;
    height: 90px;
}

.blog-item img {
    transition: .5s;
}

.blog-item:hover img {
    transform: scale(1.1);
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

td,
th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}

.form-control {
    display: block;
    width: 100%;
    padding: 14px !important;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #6B6A75;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    appearance: none;
    border-radius: .25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out
}

/* :root {
    --primary: #25a9e0;
    --secondary:#5c5c5c;
} */
.nav__menu .dropdown ul li a:hover {
    color: #fff !important;
}

@media screen and (max-width: 500px) {
    .nav__logo img {
        height: 40px !important;
    }
}

.footer {
    background-image: url(../assets/uploads/bg-footer.jpg);
   background-color: #152440;;
    background-size: cover;
}

.blog-page-section {
    background: linear-gradient(180deg, #fff9f9 0%, #ffffff 100%);
}

.blog-card {
    height: 100%;
    border: 1px solid #f0d8d8;
    border-radius: 22px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(56, 24, 24, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(56, 24, 24, 0.14);
}

.blog-card-image {
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.04);
}

.blog-card-body {
    padding: 1.4rem 1.35rem 1.5rem;
}

.blog-date-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: #fff0f1;
    color: #b61c2b;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.blog-card-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.45;
    min-height: 3.1rem;
    margin-bottom: 1rem;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    border-radius: 12px;
    background: #eb1d2c;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.blog-card-link:hover {
    color: #fff;
    background: #c91724;
}

.blog-sidebar-box {
    background: #fff;
    border: 1px solid #f0d8d8;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(56, 24, 24, 0.08);
    padding: 1.5rem;
}

.blog-sidebar-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.2rem;
}

.blog-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.blog-sidebar-link {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.5;
}

.blog-sidebar-link i {
    color: #eb1d2c;
    margin-top: 0.2rem;
}

.blog-sidebar-link:hover {
    color: #1397cb;
}

.category-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 10px;
}

.category-kicker {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: #fff0f1;
    color: #bb1e2d;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.category-title {
    font-size: 2rem;
    font-weight: 800;
    color: #16202a;
    margin-bottom: 1rem;
}

.category-description {
    color: #566273;
    line-height: 1.8;
    font-size: 1rem;
}


.category-card {
    display: block;
    height: 100%;
    background: #fff;
    border: 1px solid #f1dcdc;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 16px 38px rgba(53, 20, 20, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(53, 20, 20, 0.13);
}

.category-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.features-box {
    border: 1px solid #e1e5ea;
    border-radius: 8px;
    padding: 18px 20px;
    background: #fff;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.features-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0073e6;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
    color: #2b2f33;
    font-size: 15px;
}

.feature-list .icon {
    color: #0073e6;
    font-weight: bold;
    margin-top: 2px;
}

.feature-list .text {
    flex: 1 1 auto;
}

.feature-list li+li {
    border-top: 1px dashed #eef1f5;
    padding-top: 10px;
}

.blog-sidebar-box {
    background: #fff;
    border: 1px solid #f0d8d8;
    /* border-radius: 22px; */
    box-shadow: 0 18px 40px rgba(56, 24, 24, 0.08);
    padding: 1.5rem;
}

.blog-sidebar-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.2rem;
}

.blog-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.blog-sidebar-link {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.5;
}

.blog-sidebar-link i {
    color: #eb1d2c;
    margin-top: 0.2rem;
}

.blog-sidebar-link:hover {
    color: #eb1d2c;
}

.blog-content img {
    max-width: 100%;
    height: auto;
}