h1 {
  font-size: 68px;
  font-weight: 700;
  line-height: 1.2;
}
h2, h3, h4, h5, h6 {
    color: #0d1b2a;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}
h1 span {
  border-bottom: 5px solid #cd020a;
}

.subtext {
  margin: 20px 0;
  font-size: 20px;
  opacity: 0.85;
}

/* FEATURES */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  font-size: 17px;
}

/* BUTTONS */
.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.primary {
  background: #cd020a;
  color: #fff;
}

.primary:hover {
  background: #e65c00;
}

.secondary {
  border: 1px solid #fff;
  color: #fff;
}

.secondary:hover {
  background: #fff;
  color: #000;
}
section.main-banner {
    background: #000;
}

section.main-banner img {
    opacity: 0.7;
    width: 100%;
}

.banner-content {
    position: absolute;
    color: #fff;
    text-align: center;
}
section.main-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #cd020a;
}
.text-center {
    text-align: center !important;
}
.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border-top: 4px solid #cd020a;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #011e60;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
    z-index: -1;
}
.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    transition: #000;
}
.text-muted {
    --bs-text-opacity: 1;
    color: rgba(33, 37, 41, 0.75) !important;
}
.text-accent-theme {
    color: #cd020a !important;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: #000;
}
.service-card:hover .service-icon, .service-card:hover h3, .service-card:hover p, .service-card:hover a {
    color: #fff !important;
}
.service-card:hover::before {
    transform: scaleY(1);
}
.rounded {
    border-radius: #f8f9fa !important;
}
.border {
    border: 1px solid #dee2e6 !important;
}
.fs-5 {
    font-size: 1.25rem !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.btn-theme-primary {
    background-color: #cd020a;
    color: #fff;
    border: 2px solid #cd020a;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.subject-sec{
  margin-bottom: 15px;
}
.process-step {
    text-align: center;
    position: relative;
    padding: 20px;
}
.process-icon {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border: 3px solid #cd020a;
    color: #cd020a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.process-step:hover .process-icon {
    background-color: #cd020a;
    color: #fff;
}
.text-primary-theme {
    color: #0d1b2a !important;
}
.mb-3 {
    margin-bottom: 1rem !important;
}
.d-flex {
    display: flex !important;
}
.me-3 {
    margin-right: 1rem !important;
}
.bg-primary-theme {
    background-color: #0d1b2a;
}
.text-white {
    --bs-text-opacity: 1;
    color: rgba(255, 255, 255, 1) !important;
}
.btn-theme-accent {
    background-color: #cd020a;
    color: #fff;
    border: 2px solid #cd020a;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn-theme-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn-theme-accent:hover {
    background-color: #011e60;
    border-color: #011e60;
    color: #fff;
}
.btn-theme-outline:hover {
    background-color: #fff;
    color: #0d1b2a;
}
.me-2 {
    margin-right: .5rem !important;
}
section.about-us-sec h3 {
    font-size: .875rem;
    line-height: 1.25rem;
    color: #cd020a;
    margin: 0;
}

section.about-us-sec h4 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    color: #2e3538;
}

section.about-us-sec p {
    color: #67777e;
}

section.about-us-sec ul {
    margin-left: 10px;
}

section.about-us-sec ul li {
    color: #67777e;
}
section.mitigation-services {
    background-color: #011e60;
    padding: 60px 0;
}
.mitigation-services .col-left {
    flex: 1;
    min-width: 250px;
}
.mitigation-services .sidebar {
    background: #eee;
    padding: 20px;
}
.mitigation-services .sidebar h3 {
    margin-bottom: 15px;
}
.mitigation-services .tab-btn.active {
    background: #011e60;
    color: #fff;
}
.mitigation-services .tab-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: none;
    text-align: left;
    cursor: pointer;
    background: #ddd;
    transition: 0.3s;
}
.mitigation-services .col-right {
    flex: 3;
    min-width: 300px;
}
.mitigation-services .content-box {
    background: #f5f5f5;
    padding: 20px;
}
.mitigation-services .content h2 {
    color: #011e60;
}
.mitigation-services .content img {
    width: 100%;
    margin: 15px 0;
}
.services-tabs-section p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}
.services-tabs-section h4 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 10px;
}
.services-tabs-section h4 {
    font-size: 40px;
    font-weight: 800;
    color: #011e60;
    display: inline-block;
    margin: 20px 0 10px;
}
.col-right.services-tabs-section ul {
    margin: 30px 0 0;
}
.mitigation-services ul li {
    margin-bottom: 8px;
    list-style: none;
}
.mitigation-services ul li {
    margin-bottom: 8px;
    color: #000;
    font-size: 17px;
    font-weight: 400;
}

section.mitigation-services .row {
    gap: 12px;
}
section.inner-banner {
    position: relative;
}

section.inner-banner img {
    width: 100%;
}

.inner-cap {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.inner-cap h4 {
    font-size: 65px;
    color: #fff;
}

.inner-cap ul {
    display: flex;
    align-items: center;
}

.inner-cap ul li {
    color: #fff;
    padding: 0 10px;
    list-style: none;
}
.reviews-section .slides-box p {
    color: #000 !important;
    margin-top: 10px;
}
.slides-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid #cd020a;
    margin-bottom: 30px;
    height: 100%;
}
.reviews-section .slides-box .slides-box-info h3 {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.reviews-section .slides-box-info h3 i {
    background: #000;
    color: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.footer-content img {
    width: 165px;
}
.academic-subjects-cover {
    background: url('../images/subject-bg.png');
    object-fit: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
}
section.about-us-sec {
    padding-bottom: 70px;
}
@media (min-width: 768px) {
    .text-md-start {
        text-align: left !important;
    }
    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }
}
@media (min-width: 1200px) {
    .fs-3 {
        font-size: 1.75rem !important;
    }
}
@media (max-width: 768px) {
    h1 {
        font-size: 29px !important;
    }

    .subtext {
        margin: 11px 10px;
    }

    .btn {
        padding: 7px 17px;
        font-size: 11px;
    }
}
@media (max-width: 570px) {
    h1 {
        font-size: 20px !important;
    }

    p.subtext {
        margin: 5px 9px;
        font-size: 14px;
    }

    .btn {
        padding: 5px 17px;
        font-size: 10px;
    }
}
@media (max-width: 510px) {
    section.main-banner img {
        height: 360px;
    }
}
@media(max-width:991px) {
    h1 {
      font-size: 48px;
    }
}