/* ==========
Global
========== */
body {
    font-family: 'Inter',sans-serif;
    color: #222;
    background: #ffffff;
}
h1,h2,h3,h4,h5,h6 {
    font-family: 'Poppins',sans-serif;
}
a {
    text-decoration: none;
}
/* ==========
Top Bar
========== */
.top-bar {
    background: #0d6efd;
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
}
.top-contact span {
    margin-right: 25px;
}
.top-contact i {
    margin-right: 6px;
}
.top-social a {
    color: #fff;
    margin-left: 18px;
    transition: .3s;
}
.top-social a:hover {
    opacity: .7;
}
/* ==========
Navbar
========== */
.navbar {
    padding: 5px 0;
}
.navbar-brand {
    font-size: 28px;
    font-weight: 700;
}
.navbar-brand img {
    margin-right: 10px;
}
.nav-link {
    font-weight: 600;
    margin-left: 18px;
    color: #333 !important;
}
.nav-link:hover {
    color: #0d6efd !important;
}
.dropdown-menu {
    border: none;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.dropdown-item {
    padding: 12px 18px;
}
.dropdown-item:hover {
    background: #0d6efd;
    color: #fff;
}
.btn-primary {
    border-radius: 40px;
    padding: 12px 26px;
}
/*==================================
HERO SECTION
==================================*/
.hero {
    padding: 90px 0;
    background:
        linear-gradient(
          135deg,
          #eef7ff,
          #ffffff
        );
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: #0073e61a;
    border-radius: 50%;
    top: -200px;
    right: -100px;
}
.hero-tag {
    display: inline-block;
    background: #0073e6;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}
.hero h1 span {
    color: #0073e6;
}
.hero p {
    font-size: 18px;
    line-height: 32px;
    color: #666;
    margin-bottom: 35px;
}
.hero-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}
.hero-list div {
    font-weight: 600;
}
.hero-list i {
    color: #0073e6;
    margin-right: 8px;
}
.hero-buttons {
    display: flex;
    gap: 20px;
}
.btn-call {
    background: #0073e6;
    color: #fff;
    padding: 15px 35px;
    border-radius: 40px;
    font-weight: 700;
    transition: .3s;
}
.btn-chat {
    background: #fff;
    border: 2px solid #0073e6;
    color: #0073e6;
    padding: 15px 35px;
    border-radius: 40px;
    font-weight: 700;
    transition: .3s;
}
.btn-call:hover {
    background: #0056c9;
    color: #fff;
    transform: translateY(-3px);
}
.btn-chat:hover {
    background: #0073e6;
    color: #fff;
}
.hero-image {
    position: relative;
    text-align: center;
}
.main-image {
    max-width: 100%;
    animation: float 5s infinite ease-in-out;
}
.floating-card {
    position: absolute;
    background: #fff;
    padding: 15px 22px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    font-weight: 600;
}
.floating-card i {
    color: #0073e6;
    margin-right: 8px;
}
.card1 {
    top: 10px;
    left: 15px;
}
.card2 {
    bottom: 10px;
    left: 20px;
}
.card3 {
    bottom: 180px;
    right: -3px;
}
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}
/*=========================
SERVICES SECTION
=========================*/
.services-section {
    background: #f8fbff;
}
.section-title .sub-title {
    display: inline-block;
    padding: 8px 20px;
    background: #0073e6;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}
.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}
.section-title p {
    color: #666;
    max-width: 700px;
    margin: auto;
}
.service-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: .35s;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}
.service-icon {
    width: 75px;
    height: 75px;
    background: #0073e6;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}
.service-icon i {
    font-size: 32px;
    color: #fff;
}
.service-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}
.service-card p {
    color: #666;
    line-height: 28px;
    margin-bottom: 20px;
}
.service-card a {
    font-weight: 700;
    color: #0073e6;
    transition: .3s;
}
.service-card a:hover {
    letter-spacing: 1px;
}
/*=========================
WHY CHOOSE US
=========================*/
.why-us {
    padding: 100px 0;
    background: #fff;
}
.why-image {
    position: relative;
}
.why-image img {
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}
.experience-box {
    position: absolute;
    top: 30px;
    right: 0px;
    background: #0073e6;
    color: #fff;
    padding: 12px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,115,230,.3);
}
.experience-box h2 {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
}
.experience-box p {
    margin: 0;
}
.feature-list {
    margin-top: 40px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}
.feature-item .icon {
    width: 70px;
    height: 70px;
    background: #eef6ff;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}
.feature-item .icon i {
    font-size: 28px;
    color: #0073e6;
}
.feature-item h5 {
    font-weight: 700;
    margin-bottom: 8px;
}
.feature-item p {
    margin: 0;
    color: #666;
    line-height: 28px;
}
/*=================================
HOW IT WORKS
==================================*/
.process-section {
    background: #f8fbff;
    padding: 100px 0;
}
.process-card {
    background: #fff;
    border-radius: 22px;
    padding: 45px 30px;
    text-align: center;
    position: relative;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    height: 100%;
}
.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,.10);
}
.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 18px;
    font-weight: 700;
    color: #0073e6;
    opacity: .25;
}
.process-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #eef6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}
.process-card:hover .process-icon {
    background: #0073e6;
}
.process-card:hover .process-icon i {
    color: #fff;
}
.process-icon i {
    font-size: 38px;
    color: #0073e6;
}
.process-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}
.process-card p {
    color: #666;
    line-height: 28px;
}
/*==================================
COUNTER SECTION
==================================*/
.counter-section {
    padding: 30px 0;
    background:
        linear-gradient(
          135deg,
          #0073e6,
          #0099ff
        );
}
.counter-box {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(15px);
    padding: 15px 15px;
    border-radius: 25px;
    text-align: center;
    color: #fff;
    transition: .35s;
    height: 100%;
    border: 1px solid rgba(255,255,255,.15);
}
.counter-box:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,.18);
}
.counter-icon {
    width: 85px;
    height: 85px;
    margin: auto;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}
.counter-icon i {
    font-size: 35px;
    color: #0073e6;
}
.counter-box h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}
.counter-box h5 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}
.counter-box p {
    opacity: .9;
    margin: 0;
    line-height: 28px;
}
/*==================================
TESTIMONIAL SECTION
==================================*/
.testimonial-section {
    padding: 40px 0;
    background: #f8fbff;
}
.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}
.testimonial-card:hover {
    transform: translateY(-10px);
}
.stars {
    margin-bottom: 20px;
}
.stars i {
    color: #ffc107;
    margin-right: 3px;
}
.testimonial-card p {
    color: #666;
    line-height: 30px;
    margin-bottom: 30px;
    font-size: 16px;
}
.client {
    display: flex;
    align-items: center;
}
.client img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}
.client h5 {
    margin: 0;
    font-weight: 700;
}
.client span {
    color: #888;
    font-size: 14px;
}
/*====================================
FAQ SECTION
=====================================*/
.faq-section {
    padding: 40px 0;
    background: #ffffff;
}
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px!important;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}
.accordion-button {
    padding: 20px;
    font-weight: 600;
    font-size: 18px;
}
.accordion-button:not(.collapsed) {
    background: #0073e6;
    color: #fff;
}
.accordion-body {
    padding: 25px;
    line-height: 30px;
    color: #666;
}
/*====================================
CTA SECTION
=====================================*/
.cta-section {
    padding: 32px 0;
    background:
        linear-gradient(
          135deg,
          #0073e6,
          #009dff
        );
    color: #fff;
}
.cta-section h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}
.cta-section p {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 600;
    text-align: justify;
    line-height: 27px;
}
.cta-section .btn {
    padding: 6px 12px;
    font-weight: 600;
    margin-bottom: 10px;
}
/*==========================
FOOTER
===========================*/
.footer {
    background: #0f172a;
    color: #fff;
    padding: 45px 0 1px;
    position: relative;
}
.footer-logo img {
    height: 55px;
    margin-bottom: 25px;
    background: #fff;
    border-radius: 46px;
}
.footer-about {
    line-height: 30px;
    margin-bottom: 4px;
    text-align: justify;
    font-size: 15px;
    font-weight: 500;
}
.footer h4 {
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 700;
}
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer ul li {
    margin-bottom: 15px;
}
.footer ul li a {
    color: #fff;
    transition: .3s;
}
.footer ul li a:hover {
    color: #fff;
    padding-left: 8px;
}
.footer-social a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #1e293b;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: .3s;
}
.footer-social a:hover {
    background: #0073e6;
    transform: translateY(-5px);
}
.footer-contact i {
    margin-right: 10px;
    color: #fff;
}
.newsletter {
    display: flex;
    margin-top: 25px;
}
.newsletter input {
    flex: 1;
    padding: 14px;
    border: none;
    outline: none;
    border-radius: 8px 0 0 8px;
}
.newsletter button {
    background: #0073e6;
    color: #fff;
    border: none;
    padding: 14px 25px;
    border-radius: 0 8px 8px 0;
}
.footer hr {
    margin: 15px 0 15px;
    border-color: #fff;
}
.copyright {
    text-align: center;
    color: #fff;
}
/*==========================
FLOATING BUTTONS
===========================*/
.floating-call, .floating-chat {
    position: fixed;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #fff;
    z-index: 999;
    box-shadow: 0 15px 40px rgba(0,0,0,.2);
    transition: .3s;
}
.floating-call {
    bottom: 100px;
    background: #0073e6;
}
.floating-chat {
    bottom: 30px;
    background: #22c55e;
}
.floating-call:hover, .floating-chat:hover {
    transform: scale(1.1);
    color: #fff;
}
#backTop {
    position: fixed;
    left: 25px;
    bottom: 30px;
    width: 55px;
    height: 55px;
    border: none;
    background: #0073e6;
    color: #fff;
    border-radius: 50%;
    display: none;
    cursor: pointer;
    z-index: 999;
}
/*==========================
PAGE BANNER
===========================*/
.page-banner {
    padding: 60px 0;
    background:
        linear-gradient(
          135deg,
          #0073e6,
          #00a6ff
        );
    color: #fff;
        text-align: center;
}
.page-banner h1 {
    font-size: 31px;
    font-weight: 800;
    margin-bottom: 15px;
}
.page-banner nav {
    font-size: 18px;
}
.page-banner nav a {
    color: #fff;
}
.page-banner nav span {
    margin: 0 8px;
}
/*==========================
ABOUT COMPANY
===========================*/
.about-company {
    padding: 100px 0;
}
.about-company h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 20px 0;
}
.about-company p {
    line-height: 28px;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    text-align: justify;
    margin-bottom: 10px;
}
.mini-card {
    padding: 30px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    text-align: center;
    transition: .3s;
}
.mini-card:hover {
    transform: translateY(-8px);
}
.mini-card i {
    font-size: 36px;
    color: #0073e6;
    margin-bottom: 15px;
}
.mini-card h5 {
    font-weight: 700;
    margin: 0;
}
/*==================================
MISSION SECTION
===================================*/
.mission-section {
    padding: 100px 0;
    background: #f8fbff;
}
.mission-card {
    background: #fff;
    padding: 50px 35px;
    border-radius: 25px;
    text-align: center;
    transition: .35s;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.mission-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background:
        linear-gradient(
          90deg,
          #0073e6,
          #00b8ff
        );
}
.mission-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}
.mission-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background:
        linear-gradient(
          135deg,
          #0073e6,
          #00aaff
        );
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.mission-icon i {
    font-size: 40px;
    color: #fff;
}
.mission-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}
.mission-card p {
    line-height: 30px;
    color: #000;
    margin: 0;
    font-size: 15px;
    text-align: justify;
    font-weight: 600;
}
/*==================================
TEAM SECTION
===================================*/
.team-section {
    padding: 100px 0;
    background: #ffffff;
}
.team-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}
.team-card:hover {
    transform: translateY(-10px);
}
.team-image {
    position: relative;
    overflow: hidden;
}
.team-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: .5s;
}
.team-card:hover img {
    transform: scale(1.08);
}
.team-social {
    position: absolute;
    left: 50%;
    bottom: -60px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    transition: .35s;
}
.team-card:hover .team-social {
    bottom: 20px;
}
.team-social a {
    width: 42px;
    height: 42px;
    background: #0073e6;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: .3s;
}
.team-social a:hover {
    background: #0f172a;
}
.team-content {
    padding: 30px;
    text-align: center;
}
.team-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
.team-content span {
    color: #777;
    font-size: 15px;
}
/*==================================
TIMELINE
===================================*/
.timeline-section {
    padding: 100px 0;
    background: #f8fbff;
}
.timeline {
    position: relative;
    max-width: 1100px;
    margin: auto;
    padding-top: 30px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: #0073e6;
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    width: 50%;
    padding: 25px 45px;
}
.timeline-item.left {
    left: 0;
    text-align: right;
}
.timeline-item.right {
    left: 50%;
}
.timeline-content {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    position: relative;
    transition: .35s;
}
.timeline-content:hover {
    transform: translateY(-8px);
}
.timeline-content::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #0073e6;
    border-radius: 50%;
    top: 40px;
}
.timeline-item.left .timeline-content::before {
    right: -55px;
}
.timeline-item.right .timeline-content::before {
    left: -55px;
}
.year {
    display: inline-block;
    background: #0073e6;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}
.timeline-content h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}
.timeline-content p {
    line-height: 30px;
    color: #666;
    margin: 0;
}
/*==================================
ABOUT COUNTER
===================================*/
.about-counter {
    padding: 100px 0;
    background:
        linear-gradient(
          135deg,
          #0073e6,
          #009cff
        );
    position: relative;
    overflow: hidden;
}
.about-counter::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    top: -220px;
    right: -120px;
}
.about-counter-card {
    position: relative;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,.2);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: .35s;
    height: 100%;
    color: #fff;
}
.about-counter-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,.22);
}
.about-counter-card .counter-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}
.about-counter-card .counter-icon i {
    font-size: 36px;
    color: #0073e6;
}
.about-counter-card h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 10px;
}
.about-counter-card h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}
.about-counter-card p {
    line-height: 28px;
    margin: 0;
    opacity: .95;
}
/*==================================
AWARDS SECTION
===================================*/
.awards-section {
    padding: 100px 0;
    background: #ffffff;
}
.award-card {
    background: #fff;
    padding: 45px 30px;
    border-radius: 25px;
    text-align: center;
    transition: .35s;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    height: 100%;
    border-top: 5px solid #0073e6;
}
.award-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}
.award-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background:
        linear-gradient(
          135deg,
          #0073e6,
          #00b7ff
        );
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.award-icon i {
    font-size: 38px;
    color: #fff;
}
.award-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}
.award-card p {
    line-height: 30px;
    color: #666;
    margin: 0;
}
/*====================================
ABOUT CTA
=====================================*/
.about-cta {
    padding: 60px 0;
    background:
        linear-gradient(
          135deg,
          #0073e6,
          #00a9ff
        );
    position: relative;
    overflow: hidden;
    color: #fff;
}
.about-cta::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    top: -250px;
    right: -180px;
}
.cta-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255,255,255,.15);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 25px;
}
.about-cta h2 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}
.about-cta p {
    font-size: 18px;
    line-height: 34px;
    opacity: .95;
    margin-bottom: 35px;
}
.cta-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-bottom: 35px;
}
.cta-features div {
    font-weight: 600;
}
.cta-features i {
    margin-right: 10px;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.btn-primary-cta {
    padding: 16px 38px;
    background: #fff;
    color: #0073e6;
    font-weight: 700;
    border-radius: 50px;
    transition: .35s;
}
.btn-primary-cta:hover {
    background: #0f172a;
    color: #fff;
}
.btn-outline-cta {
    padding: 16px 38px;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    transition: .35s;
}
.btn-outline-cta:hover {
    background: #fff;
    color: #0073e6;
}
.cta-image {
    position: relative;
    text-align: center;
}
.cta-image img {
    max-width: 100%;
    animation: float 5s ease-in-out infinite;
}
.cta-card {
    position: absolute;
    background: #fff;
    color: #0073e6;
    padding: 15px 25px;
    border-radius: 15px;
    font-weight: 700;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}
.cta-card.one {
    top: 30px;
    left: -10px;
}
.cta-card.two {
    bottom: 80px;
    left: 20px;
}
.cta-card.three {
    top: 180px;
    right: -15px;
}
/*==================================
SERVICES PAGE
===================================*/
.services-page {
    padding: 100px 0;
    background: #ffffff;
}
.service-box {
    background: #fff;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
    border-top: 5px solid transparent;
}
.service-box:hover {
    transform: translateY(-10px);
    border-top: 5px solid #0073e6;
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}
.service-box .icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background:
        linear-gradient(
          135deg,
          #0073e6,
          #00b6ff
        );
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}
.service-box .icon i {
    font-size: 34px;
    color: #fff;
}
.service-box h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
}
.service-box p {
    line-height: 30px;
    color: #666;
    margin-bottom: 25px;
}
.service-box a {
    font-weight: 700;
    color: #0073e6;
    transition: .3s;
}
.service-box a:hover {
    letter-spacing: 1px;
}
/*==================================
WHY SERVICE
===================================*/
.why-service {
    padding: 110px 0;
    background: #f8fbff;
}
.service-image {
    position: relative;
}
.service-image img {
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
.experience-box {
    position: absolute;
    top: 30px;
    /*left:-20px;*/
    background: #0073e6;
    color: #fff;
    padding: 12px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}
.experience-box h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
}
.service-feature {
    display: flex;
    align-items: flex-start;
    margin: 30px 0;
}
.feature-icon {
    width: 70px;
    height: 70px;
    background:
        linear-gradient(
          135deg,
          #0073e6,
          #00b8ff
        );
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}
.feature-icon i {
    color: #fff;
    font-size: 28px;
}
.service-feature h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}
.service-feature p {
    margin: 0;
    line-height: 28px;
    color: #666;
}
.progress-item {
    margin-top: 30px;
}
.progress {
    height: 10px;
    border-radius: 50px;
    background: #dbeafe;
    margin-top: 10px;
    overflow: hidden;
}
.progress-bar {
    background: #0073e6;
    border-radius: 50px;
}
/*==================================
SERVICE FEATURES
===================================*/
.service-features {
    padding: 110px 0;
    background: #ffffff;
}
.feature-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 22px;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
    border: 1px solid #edf2f7;
}
.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
    border-color: #0073e6;
}
.feature-circle {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background:
        linear-gradient(
          135deg,
          #0073e6,
          #00b6ff
        );
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}
.feature-circle i {
    font-size: 36px;
    color: #fff;
}
.feature-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}
.feature-card p {
    line-height: 28px;
    color: #666;
    margin: 0;
}
/*==================================
SERVICE PROCESS
===================================*/
.service-process {
    padding: 110px 0;
    background: #f8fbff;
    position: relative;
}
.process-wrapper {
    position: relative;
    margin-top: 60px;
}
.process-line {
    position: absolute;
    top: 55px;
    left: 10%;
    width: 80%;
    height: 4px;
    background:
        linear-gradient(
          90deg,
          #0073e6,
          #00b6ff
        );
    z-index: 0;
}
.process-box {
    position: relative;
    background: #fff;
    padding: 40px 25px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
    z-index: 2;
}
.process-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}
.step-number {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 50px;
    font-weight: 800;
    color: #eef5ff;
}
.step-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    background:
        linear-gradient(
          135deg,
          #0073e6,
          #00b6ff
        );
    display: flex;
    justify-content: center;
    align-items: center;
}
.step-icon i {
    font-size: 34px;
    color: #fff;
}
.process-box h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}
.process-box p {
    color: #666;
    line-height: 28px;
    margin: 0;
}
/*==================================
PRICING
===================================*/
.pricing-section {
    padding: 110px 0;
    background: #ffffff;
}
.pricing-card {
    position: relative;
    background: #fff;
    padding: 45px 35px;
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
    border: 2px solid transparent;
}
.pricing-card:hover {
    transform: translateY(-12px);
    border-color: #0073e6;
}
.active-plan {
    border-color: #0073e6;
    transform: scale(1.03);
}
.popular {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #0073e6;
    color: #fff;
    padding: 8px 40px;
    font-size: 14px;
    font-weight: 700;
    transform: rotate(45deg);
}
.pricing-header {
    text-align: center;
    margin-bottom: 35px;
}
.pricing-header h4 {
    font-size: 28px;
    font-weight: 700;
}
.pricing-header h2 {
    font-size: 60px;
    font-weight: 800;
    color: #0073e6;
    margin: 15px 0;
}
.pricing-header span {
    color: #777;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}
.pricing-card li {
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}
.pricing-card li i {
    width: 28px;
}
.fa-check {
    color: #28a745;
}
.fa-xmark {
    color: #dc3545;
}
.pricing-btn {
    display: block;
    text-align: center;
    padding: 16px;
    background: #0073e6;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    transition: .3s;
}
.pricing-btn:hover {
    background: #0f172a;
    color: #fff;
}
.pricing-note {
    max-width: 850px;
    margin: auto;
    color: #666;
    line-height: 28px;
}
/*==============================
CONTACT PAGE
===============================*/
.contact-info {
    padding: 90px 0;
    background: #f8fbff;
}
.contact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}
.contact-card:hover {
    transform: translateY(-10px);
}
.contact-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background:
        linear-gradient(
          135deg,
          #0073e6,
          #00b8ff
        );
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.contact-icon i {
    font-size: 34px;
    color: #fff;
}
.contact-section {
    padding: 110px 0;
}
.contact-form {
    background: #fff;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}
.contact-form h2 {
    margin-bottom: 30px;
    font-weight: 700;
}
.contact-form .form-control {
    height: 56px;
    border-radius: 12px;
    margin-bottom: 15px;
}
.contact-form textarea.form-control {
    height: auto;
}
.btn-submit {
    padding: 16px 40px;
    background: #0073e6;
    border: none;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    transition: .3s;
}
.btn-submit:hover {
    background: #0f172a;
}
.contact-image {
    text-align: center;
}
.contact-image img {
    max-width: 100%;
}
.map-section iframe {
    display: block;
}
/*==================================
BUSINESS HOURS
===================================*/
.business-hours {
    padding: 100px 0;
    background: #f8fbff;
}
.hours-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    font-size: 18px;
}
.hours-row:last-child {
    border: none;
}
/*==================================
CONTACT FAQ
===================================*/
.contact-faq {
    padding: 100px 0;
    background: #fff;
}
/*==================================
EMERGENCY SUPPORT
===================================*/
.emergency-support {
    padding: 90px 0;
    background:
        linear-gradient(
          135deg,
          #0073e6,
          #00a8ff
        );
    color: #fff;
}
.emergency-support h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 15px;
}
.emergency-support p {
    font-size: 18px;
    opacity: .95;
}
.emergency-support .btn {
    padding: 16px 36px;
    font-weight: 700;
}
/*==================================
LEGAL PAGES
===================================*/
.legal-section {
    padding: 100px 0;
    background: #f7f9fc;
}
.legal-card {
    background: #fff;
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}
.legal-card h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
}
.legal-card p {
    font-size: 17px;
    line-height: 32px;
    color: #555;
    margin-bottom: 30px;
}
.legal-card hr {
    margin: 40px 0;
    border-color: #ececec;
}
.legal-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #0073e6;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    transition: .3s;
    text-decoration: none;
}
.legal-btn:hover {
    background: #0f172a;
    color: #fff;
}
/*==============================
LEGAL LIST
==============================*/
.legal-list {
    padding-left: 20px;
    margin-bottom: 30px;
}
.legal-list li {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 30px;
    color: #555;
}
/*==================================
COOKIE POLICY
===================================*/
.cookie-table {
    margin: 30px 0;
    overflow-x: auto;
}
.cookie-table table {
    margin-bottom: 0;
    border-radius: 15px;
    overflow: hidden;
}
.cookie-table thead {
    background: #0073e6;
    color: #fff;
}
.cookie-table th {
    padding: 18px;
    font-weight: 700;
}
.cookie-table td {
    padding: 18px;
    vertical-align: middle;
}