/* Font is globally defined in main.css (Roboto Slab) */

background-position: center;
position: relative;
color: #fff;
padding: 80px 50px;
display: flex;
flex-direction: column;
justify-content: center;
}

.contact-bg h2 {
    font-weight: 700;
    font-size: 50px;
}

.contact-bg p {
    margin-top: 10px;
    font-size: 25px;
    color: #ddd;
    text-align: left;
}

.contact-bg em {
    font-style: italic;
    font-weight: 600;
    color: #fff;
}

/* Right Side (Form Section) */
.contact-form-box {
    flex: 1;
    background-color: #fff;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 60px;
    margin-left: 60px;
}

.contact-form {
    width: 100%;
    max-width: 600px;
}

.form-control {
    border: 1px solid #1471aa;
    border-radius: 3px;
}

.btn-submit {
    background-color: #FF8C00;
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-submit:hover {
    background-color: #e67e00;
}

/* Responsive */
@media (max-width: 992px) {

    .contact-bg,
    .contact-form-box {
        flex: 100%;
        width: 100%;
        min-height: 50vh;
    }

    .contact-bg {
        text-align: center;
        padding: 60px 20px;
    }

    .contact-form-box {
        padding: 30px 20px;
    }
}

.testimonial-section {
    padding: 80px 0;
    text-align: center;
}

.testimonial-title {
    display: inline-block;
    border: 2px solid #1471aa;
    color: #1471aa;
    border-radius: 25px;
    padding: 8px 25px;
    font-weight: 600;
    margin-bottom: 40px;
}

.testimonial-card {
    background: #fff;
    border: 2px solid #1471aa;
    border-radius: 10px;
    padding: 30px 25px 50px;
    position: relative;
    text-align: left;
    margin: 10px;
    transition: all 0.3s ease;
    margin-bottom: 100px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card i.fa-quote-left {
    color: #1471aa;
    font-size: 2rem;
    position: absolute;
    top: 15px;
    left: 15px;
}

.testimonial-card i.fa-quote-right {
    color: #1471aa;
    font-size: 2rem;
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: #333;
    margin-top: 30px;
    font-size: 0.95rem;
}

.testimonial-author {
    font-weight: 600;
    margin-top: 15px;
}

.testimonial-role {
    color: #333333;
    font-size: 0.9rem;
}

.carousel-indicators li {
    background-color: #1471aa;
}

@media (max-width: 991px) {
    .testimonial-card {
        margin-bottom: 20px;
    }
}

/* Global Button Override for flat blue style */

/* IT service pages */
.it-service-hero {
       position: relative;
    min-height: 399px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
    padding-top: 25px;
}

.it-service-hero::after {
    display: none;
}

.it-service-hero__overlay {
    position: absolute;
    inset: 0;
       background: radial-gradient(circle at 18% 20%, rgb(8 70 109 / 45%), transparent 32%), linear-gradient(90deg, rgb(5 36 88 / 92%) 0%, rgb(3 62 98 / 59%) 48%, rgba(20, 113, 170, 0.3) 100%);
    z-index: 0;
}

.it-service-hero .container {
    position: relative;
    z-index: 2;
}

.it-service-hero__content {
    max-width: 1000px;
          padding: 72px 0 36px;
}

.it-service-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 0 24px;
    padding: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.it-service-breadcrumb li {
    display: inline-flex;
    align-items: center;
}

.it-service-breadcrumb li+li::before {
    content: "/";
    margin-right: 9px;
    color: #74b8ff;
}

.it-service-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.it-service-kicker,
.it-service-eyebrow,
.it-section-heading span,
.it-service-cta span {
    display: inline-block;
    color: #1471aa;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.it-service-main-title
{
	font-size: 32px;
    font-weight: 700;
    color: #08517e;
    margin-top: 10px;
    margin-bottom: 0;
}


.it-service-eyebrow
{
  display: block;
    font-size: 18px;
    font-weight: 300;
    color: #141515;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.it-service-hero h1 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 60px;
    line-height: 1.08;
    font-weight: 700;
	text-shadow: 2px 2px 4px #000000;
}

.it-service-hero p {
    max-width: 900px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    line-height: 1.7;
    text-align: left;
}

.it-service-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: 34px;
}

.it-service-link {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #1471aa;
    padding-bottom: 4px;
}

.it-service-link:hover {
    color: #74b8ff;
    text-decoration: none;
}

.it-service-page {
    position: relative;
    margin-top: 0;
    padding-top: 52px;
    background: #fff;
    z-index: 2;
}

.it-service-media {
    position: relative;
    max-width: 540px;
}

.it-service-media img {
    width: 100%;
    display: block;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(18, 34, 74, 0.18);
}

.it-service-media__badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: min(260px, calc(100% - 48px));
    padding: 18px 20px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(18, 34, 74, 0.18);
}

.it-service-media__badge strong,
.it-service-media__badge span {
    display: block;
    color: #1471aa;
}

.it-service-media__badge span {
    margin-top: 4px;
    color: #52606d;
    line-height: 1.45;
}

.it-service-intro h3,
.it-section-heading h3,
.it-service-table-wrap h3,
.it-service-cta h3 {
    margin-top: 12px;
        color: #181919;
    font-weight: 700;
}

.it-service-intro p,
.it-service-card p,
.it-service-help p,
.it-service-cta p {
    color: #151515;
    line-height: 1.75;
    font-size: 18px;
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
}

.it-service-intro .lead-text {
    margin: 18px 0 12px;
    color: #151515;
    font-size: 18px;
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    text-align: left;
}

.it-service-points {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.it-service-points div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1471aa;
}

.it-service-points .fa {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf4ff;
    color: #1471aa;
}

.it-service-band {
    background: #f4f8fc;
}

.it-section-heading {
    max-width: 620px;
    margin: 0 auto 34px;
    text-align: center;
}

.it-service-card {
    height: 100%;
    padding: 30px;
    border: 1px solid #dce8f4;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(18, 34, 74, 0.07);
    text-align: left;
}

.it-service-card p {
    text-align: left;
}

.it-service-card__icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 8px;
    background: #1471aa;
    color: #fff;
    font-weight: 700;
}

.it-service-card h5 {
    color: #1471aa;
    font-weight: 700;
}

.it-service-table-wrap,
.it-service-list {
    border: 1px solid #dce8f4;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(18, 34, 74, 0.06);
}

.it-service-table-wrap {
   
    overflow-x: auto;
}

.it-service-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

.it-service-table th,
.it-service-table td {
        padding: 9px 5px;
    border-bottom: 1px solid #e6eef6;
    color: #52606d;
    vertical-align: top;
}

.it-service-table th {
    background: #f4f8fc;
    color: #1471aa;
    font-weight: 700;
}

.it-service-table tbody tr:last-child td {
    border-bottom: 0;
}

.it-service-list {
        padding: 8px;
}

.it-service-list h5 {
    margin-bottom: 18px;
    color: #1471aa;
    font-weight: 700;
}

.it-service-list>a {
   display: block;
    padding: 3px 7px;
    margin-bottom: 4px;

    border-radius: 6px;
    color: #26364f;
    background: #f4f8fc;
    text-decoration: none;
}

.it-service-list>a:hover,
.it-service-list>a.active {
    color: #fff;
       background: #04609e;
    text-decoration: none;
}

.it-service-help {
    margin-top: 22px;
    padding: 20px;
    border-radius: 8px;
    background: #eaf4ff;
}

.it-service-help strong {
    color: #1471aa;
}

.it-service-help a {
    color: #1471aa;
    font-weight: 700;
}

.it-service-cta {
    padding: 30px 0;
    background: #1471aa;
}

.it-service-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.it-service-cta span {
    color: #a4baf3;
    margin-bottom: 5px;
}

.it-service-cta h3 {
    color: #fff;
}

.it-service-cta p {
    max-width: 680px;
    margin: 12px auto 0;
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
}

@media (max-width: 991px) {
    .it-service-hero {
        min-height: auto;
    }

    .it-service-hero__content {
        padding: 112px 0 82px;
    }

    .it-service-page {
        margin-top: 0;
        padding-top: 42px;
    }

    .it-service-hero h1 {
        font-size: 44px;
    }

    .it-service-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .it-service-hero__content {
        padding: 96px 0 72px;
    }

    .it-service-page {
        margin-top: 0;
        padding-top: 34px;
    }

    .it-service-hero h1 {
        font-size: 34px;
    }

    .it-service-hero p {
        font-size: 17px;
    }

    .it-service-hero__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .it-service-media__badge {
        position: static;
        width: 100%;
        margin-top: 16px;
    }

    .it-service-table-wrap,
    .it-service-list,
    .it-service-card {
        padding: 22px;
    }
}

.btn-center-black {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-center-black::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 350px;
    background: #000;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    z-index: -1;
}

.btn-center-black:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.btn-center-black:hover {
    color: #fff !important;
}

/* Global Theme Button Styles (Center-Out Radial) */
.btn-theme-primary {
    background-color: #1471aa;
    color: #ffffff !important;
    font-weight: 500;
    font-family: 'Roboto Slab', serif;
    text-transform: uppercase;
    border-radius: 0;
    padding: 16px 45px !important;
    border: none;
    font-size: 26px !important;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: transparent !important;
    transition: background-color 0.3s ease;
    cursor: pointer;
    display: inline-block;
    isolation: isolate;
}

.btn-theme-primary:hover {
    color: #ffffff !important;
}

.btn-theme-primary::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #1471aa;
    z-index: -2;
}

.btn-theme-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 0;
    padding-bottom: 80%;
    background-color: #151515;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.4s ease-out;
    z-index: -1;
}

.btn-theme-primary:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.btn-theme-white {
    background-color: #ffffff;
    color: #1471aa !important;
    font-weight: 500;
    font-family: 'Roboto Slab', serif;
    text-transform: uppercase;
    border-radius: 0;
    padding: 16px 45px !important;
    border: none;
    font-size: 26px !important;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: background-color 0.3s ease;
    cursor: pointer;
    display: inline-block;
    isolation: isolate;
}

.btn-theme-white:hover {
    color: #ffffff !important;
}

.btn-theme-white::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    z-index: -2;
}

.btn-theme-white::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 0;
    padding-bottom: 80%;
    background-color: #151515;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.4s ease-out;
    z-index: -1;
}

.btn-theme-white:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 767px) {

    .section,
    section,
    .tiles-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .footer-services-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-variant-2-content .col-lg-4 {
        margin-bottom: 40px;
    }

    .footer-variant-2-content .col-lg-4:last-child {
        margin-bottom: 0;
    }
}

html,
body {
    overflow-x: hidden !important;
    width: 100%;
}

.page {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

.hero-title,
.hero-title * {
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 64px;
    font-family: 'Roboto Slab', serif;
    line-height: 1.2;
    word-break: break-word;
    margin-left: 0;
    padding: 0;
}

.hero-title,
.hero-title *,
.hero-title span,
.hero-title strong,
.hero-title b,
.hero-title i {
    color: #ffffff !important;
}

.hero-title span:first-child {
    color: #1471aa !important;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }
}