:root {
    --ink: #142d3f;
    --muted: #617789;
    --paper: #ffffff;
    --mist: #f3f9fb;
    --line: #d8e8ee;
    --cyan: #088fa1;
    --cyan-dark: #076b78;
    --green: #36a376;
    --navy: #12324a;
    --amber: #e8a84e;
    --rose: #cf6965;
    --shadow: 0 20px 48px rgba(18, 50, 74, 0.12);
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 90% 0%, rgba(54, 163, 118, 0.12), transparent 28%),
        linear-gradient(180deg, #f7fcfd 0, #ffffff 420px);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--cyan);
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

a:hover,
a:focus {
    color: var(--cyan-dark);
    text-decoration: none;
}

a:focus {
    outline: 3px solid rgba(8, 143, 161, 0.18);
    outline-offset: 3px;
}

p {
    margin: 0 0 18px;
    color: var(--muted);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 22px;
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    line-height: 1.14;
}

h1 {
    font-size: 54px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 22px;
}

h5,
h6 {
    font-size: 18px;
}

.h-ultra,
.h-bold {
    font-weight: 800;
}

.h-light {
    font-weight: 700;
}

.color {
    color: var(--cyan);
}

.container {
    max-width: 1160px;
}

#wrapper {
    overflow: hidden;
    background: transparent;
}

.navbar-custom {
    min-height: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 34px rgba(18, 50, 74, 0.08);
    backdrop-filter: blur(12px);
}

.navbar-custom .top-area {
    padding: 8px 0;
    background: linear-gradient(90deg, var(--navy), var(--cyan-dark));
    color: #fff;
}

.top-area p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 700;
}

.navigation {
    display: flex;
    align-items: center;
    min-height: 76px;
}

.navbar-header {
    flex: 0 0 auto;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    height: auto;
    min-height: 62px;
    padding: 8px 0;
}

.navbar-brand img {
    width: auto;
    max-width: 210px;
    max-height: 52px;
    object-fit: contain;
}

.navbar-toggle {
    margin-top: 13px;
    margin-right: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--mist);
    color: var(--navy);
}

.navbar-toggle .fa {
    color: var(--navy);
}

.navbar-main-collapse {
    flex: 1 1 auto;
}

.navbar-custom ul.nav {
    margin-top: 0;
}

.navbar-custom ul.nav li a {
    position: relative;
    margin: 0 0 0 6px;
    padding: 12px 12px;
    border-radius: 8px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.navbar-custom ul.nav li a:after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 7px;
    left: 12px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.32;
}

.navbar-custom ul.nav li a:hover,
.navbar-custom ul.nav li a:focus {
    background: #e9f7fa;
    color: var(--cyan-dark);
}

.navbar-custom ul.nav li:nth-child(3) a {
    background: var(--navy);
    color: #fff;
}

.navbar-custom ul.nav li:nth-child(3) a:after {
    opacity: 0.58;
}

.navbar-custom ul.nav li:nth-child(3) a:hover,
.navbar-custom ul.nav li:nth-child(3) a:focus {
    background: var(--cyan-dark);
    color: #fff;
}

.intro {
    position: relative;
    overflow: hidden;
    padding-top: 126px;
    background:
        radial-gradient(circle at 87% 26%, rgba(54, 163, 118, 0.22), transparent 26%),
        radial-gradient(circle at 8% 24%, rgba(8, 143, 161, 0.15), transparent 24%),
        linear-gradient(135deg, #f2fbfe 0%, #fff 46%, #edf8f3 100%);
}

.intro:before {
    content: "";
    position: absolute;
    right: -140px;
    bottom: -190px;
    width: 540px;
    height: 540px;
    border: 78px solid rgba(8, 143, 161, 0.08);
    border-radius: 46% 54% 55% 45%;
    transform: rotate(-18deg);
}

.intro:after {
    content: "\f0f1  \f0fa  \f21e";
    position: absolute;
    left: 7%;
    bottom: 34px;
    color: rgba(18, 50, 74, 0.07);
    font-family: FontAwesome;
    font-size: 86px;
    letter-spacing: 26px;
    pointer-events: none;
}

.intro-content {
    position: relative;
    z-index: 1;
    padding: 80px 0 88px;
}

.intro-content > .container > .row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.intro .text-center.marginbot-40 {
    width: 100%;
    margin-bottom: 36px;
    text-align: left;
}

.intro .text-center.marginbot-40:before,
.intro .well-trans:before {
    content: "Advanced circumcision care";
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 13px;
    border: 1px solid rgba(8, 143, 161, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--cyan-dark);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.intro h1,
.intro h2.h-ultra {
    max-width: 760px;
    margin-bottom: 12px !important;
    color: var(--navy);
    font-size: 58px;
    line-height: 1.02;
}

.intro h2.h-light {
    max-width: 720px;
    color: #4e6678;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.45;
}

.well {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.well-trans {
    min-height: 100%;
    padding: 32px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88)),
        #fff;
}

.lead-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lead-list li {
    position: relative;
    margin: 0 0 20px;
    padding-left: 58px;
}

.lead-list li:before {
    content: "\f0f1";
    position: absolute;
    left: 0;
    top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #e8f8fa;
    color: var(--cyan);
    font-family: FontAwesome;
    font-size: 18px;
}

.lead-list strong {
    color: var(--ink);
    font-weight: 800;
}

.form-wrapper {
    position: relative;
}

.form-wrapper:before {
    content: "Same-day consultation available";
    position: absolute;
    left: 24px;
    top: -14px;
    z-index: 2;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--amber);
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.panel {
    border: 0;
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.panel-skin > .panel-heading {
    padding: 20px 24px;
    border: 0;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(135deg, var(--navy), var(--cyan-dark));
    color: #fff;
}

.panel-title {
    margin: 0;
    color: #fff;
    font-size: 19px;
    font-weight: 800;
}

.panel-title small {
    color: rgba(255, 255, 255, 0.78);
}

.panel-body {
    padding: 24px;
}

label {
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
}

.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="datetime-local"],
textarea,
select {
    min-height: 44px;
    border: 1px solid #cbdde4;
    border-radius: 8px;
    box-shadow: none;
    color: var(--ink);
}

.form-control:focus,
input:focus,
textarea:focus,
select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(8, 143, 161, 0.15);
    outline: 0;
}

.btn,
.btn-skin {
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    color: #fff !important;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 14px 28px rgba(8, 143, 161, 0.2);
}

.btn:hover,
.btn:focus,
.btn-skin:hover,
.btn-skin:focus {
    background: linear-gradient(135deg, var(--cyan-dark), #287f68);
    color: #fff !important;
    transform: translateY(-1px);
}

.lead-footer {
    margin: 12px 0 0;
    font-size: 13px;
}

.home-section {
    padding: 76px 0;
    background: #fff;
}

.home-section.bg-gray,
.bg-gray {
    background: var(--mist);
}

.paddingtop-80,
.paddingtop-60,
.paddingtop-40 {
    padding-top: 76px;
}

.navbar-fixed-top + #boxes,
.navbar-fixed-top ~ #boxes:first-of-type {
    padding-top: 150px;
}

.paddingbot-80,
.paddingbot-60 {
    padding-bottom: 76px;
}

.nopadding {
    padding-bottom: 76px;
}

#boxes {
    background: #fff;
}

#boxes > .container > .row {
    margin-right: -15px;
    margin-left: -15px;
}

#boxes > .container > .row > [class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}

.box {
    height: 100%;
    margin-bottom: 30px;
    padding: 34px 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 15px 34px rgba(18, 50, 74, 0.08);
}

.box.text-center {
    text-align: left;
}

.box img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 14px 30px rgba(18, 50, 74, 0.12);
}

.circled,
.bg-skin,
.service-icon .fa,
.fa-stack .fa-circle {
    background: #e8f8fa;
    color: var(--cyan);
}

.box .circled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
    border-radius: 8px;
    font-size: 25px;
    line-height: 1;
}

.box h4,
.h-bold {
    color: var(--navy);
}

.box h4 {
    margin-bottom: 18px;
}

.callaction {
    padding: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--cyan), var(--navy));
    color: #fff;
    box-shadow: var(--shadow);
}

.callaction h3,
.callaction p {
    color: #fff;
}

.cta-btn {
    text-align: right;
}

.service-box {
    min-height: 180px;
    margin-bottom: 28px;
    padding: 34px 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 15px 34px rgba(18, 50, 74, 0.08);
}

.service-icon {
    margin-bottom: 22px;
}

.service-icon .fa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 8px;
    font-size: 23px;
    line-height: 1;
}

.service-desc h5 {
    margin-bottom: 10px;
}

.service-desc h5 a {
    color: var(--cyan-dark);
    text-decoration: underline;
    text-decoration-color: rgba(8, 143, 161, 0.38);
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.service-desc h5 a:after {
    content: " \f105";
    font-family: FontAwesome;
    font-weight: normal;
    text-decoration: none;
}

.service-desc h5 a:hover,
.service-desc h5 a:focus {
    color: var(--navy);
    text-decoration-color: var(--navy);
}

#facilities {
    background: var(--mist);
}

.section-heading h2 {
    color: var(--navy);
}

.contact-form,
.contact-address {
    min-height: 100%;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 15px 34px rgba(18, 50, 74, 0.08);
}

.contact-form .section-heading,
.contact-address .section-heading {
    padding-top: 0 !important;
    margin-bottom: 22px;
}

.contact-form .section-heading h2,
.contact-address .section-heading h2 {
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 1.2;
}

.contact-form .line,
.contact-address .line {
    width: 62px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), var(--green));
}

.contact-form form.lead {
    margin-top: 22px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.6;
}

.contact-form form.lead .row {
    display: block;
    margin-right: 0;
    margin-left: 0;
}

.contact-form form.lead .row > [class*="col-"] {
    float: none;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    margin-bottom: 7px;
    line-height: 1.35;
    text-align: left;
}

.contact-form .form-control {
    width: 100%;
    font-size: 15px;
    line-height: 1.45;
}

.contact-form .btn {
    margin-top: 6px;
}

.contact-address .widget {
    margin-bottom: 0;
}

.contact-address ul {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.contact-address li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--muted);
    line-height: 1.45;
}

.contact-address .fa-stack {
    flex: 0 0 auto;
}

.contact-address .fa-stack .fa-circle {
    color: #e8f8fa;
}

.contact-address .fa-inverse {
    color: var(--cyan);
}

.divider-short {
    width: 72px;
    height: 4px;
    margin: 0 auto 30px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), var(--green));
}

.owl-carousel .item {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 356px;
    padding: 16px 16px 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--muted);
    box-shadow: 0 14px 28px rgba(18, 50, 74, 0.08);
}

.owl-carousel .item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}

.owl-carousel .item br {
    display: none;
}

.owl-carousel .item a {
    display: block;
    flex: 0 0 auto;
}

.owl-carousel .item {
    text-align: left;
    line-height: 1.75;
}

.owl-carousel .item > a + br {
    display: none;
}

.owl-carousel .item > a {
    margin-bottom: 22px;
}

.owl-carousel .owl-wrapper {
    display: flex !important;
    align-items: stretch;
}

.owl-carousel .owl-item {
    display: flex;
    padding-right: 8px;
    padding-left: 8px;
}

.owl-carousel .owl-item > .item {
    width: 100%;
}

footer {
    padding: 54px 0 0;
    background: #0d2430;
    color: #fff;
}

footer h5 {
    margin-bottom: 16px;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
}

footer p,
footer li {
    color: rgba(255, 255, 255, 0.72);
}

footer a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.32);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

footer a:hover,
footer a:focus {
    color: #fff;
    text-decoration-color: #fff;
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer li {
    margin-bottom: 9px;
}

.widget {
    margin-bottom: 28px;
}

.fa-stack .fa-circle {
    border-radius: 50%;
}

.sub-footer {
    margin-top: 28px;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.18);
}

.sub-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

.scrollup {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--cyan);
    color: #fff;
    box-shadow: 0 14px 28px rgba(8, 143, 161, 0.24);
}

.scrollup:hover,
.scrollup:focus {
    background: var(--cyan-dark);
    color: #fff;
}

.wow {
    visibility: visible !important;
}

@media (min-width: 768px) {
    #boxes > .container > .row,
    #service .row,
    footer .row {
        display: flex;
        flex-wrap: wrap;
    }

    #boxes > .container > .row > h2 {
        flex: 0 0 100%;
        width: 100%;
        margin-bottom: 34px;
    }

    #boxes > .container > .row > [class*="col-"],
    #boxes > .container > .row > [class*="col-"] > .wow,
    #service .row > .wow {
        display: flex;
    }

    #boxes > .container > .row > [class*="col-"] > .wow,
    #service .row > .wow > .service-box {
        width: 100%;
    }

    #boxes .box,
    #service .service-box {
        display: flex;
        flex-direction: column;
    }

    #boxes > .container > .row > [class*="col-"] {
        margin-bottom: 30px;
    }

    #boxes > .container > .row > [class*="col-"] .box {
        margin-bottom: 0;
    }

    #service .row > .wow {
        padding-right: 15px;
        padding-left: 15px;
    }

    #service .row > .wow > .service-box {
        float: none;
        margin-right: 0;
        margin-left: 0;
    }
}

@media (min-width: 992px) {
    #service .row > .wow {
        flex: 0 0 33.333333%;
        width: 33.333333%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #service .row > .wow {
        flex: 0 0 50%;
        width: 50%;
    }
}

@media (max-width: 991px) {
    .navigation {
        display: block;
    }

    .navbar-main-collapse {
        width: 100%;
    }

    .intro {
        padding-top: 118px;
    }

    .intro-content > .container > .row {
        display: block;
    }

    .form-wrapper {
        margin-top: 32px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 15px;
    }

    .container {
        width: auto;
        padding-right: 24px;
        padding-left: 24px;
    }

    .row {
        margin-right: -10px;
        margin-left: -10px;
    }

    .row > [class*="col-"] {
        padding-right: 10px;
        padding-left: 10px;
    }

    h1,
    .intro h1,
    .intro h2.h-ultra {
        font-size: 32px;
        line-height: 1.12;
        overflow-wrap: anywhere;
    }

    h2 {
        font-size: 26px;
        line-height: 1.18;
        overflow-wrap: anywhere;
    }

    .top-area .text-left,
    .top-area .text-right {
        text-align: left;
    }

    .navbar-custom {
        position: relative;
    }

    .intro {
        padding-top: 0;
    }

    .intro:after {
        display: none;
    }

    .navbar-brand img {
        max-width: 185px;
    }

    .navbar-custom ul.nav li a {
        margin: 4px 0;
        background: #f4fafb;
    }

    .intro-content {
        padding: 54px 0;
    }

    .intro .text-center.marginbot-40 {
        margin-bottom: 28px;
    }

    .intro h2.h-light {
        font-size: 19px;
        line-height: 1.5;
    }

    .well-trans,
    .panel-body,
    .box,
    .service-box,
    .contact-form,
    .contact-address,
    .callaction {
        padding: 24px;
    }

    .panel-skin > .panel-heading {
        padding: 18px 20px;
    }

    .contact-form .section-heading h2,
    .contact-address .section-heading h2 {
        font-size: 25px;
    }

    .lead-list li {
        padding-left: 0;
    }

    .lead-list li:before {
        position: static;
        display: flex;
        margin: 0 0 16px;
    }

    .lead-list strong {
        display: block;
        margin-bottom: 10px;
        line-height: 1.25;
    }

    .panel-title {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
        font-size: 24px;
        line-height: 1.2;
    }

    .panel-title .fa {
        flex: 0 0 auto;
    }

    .panel-title small {
        display: inline-block;
        font-size: 16px;
    }

    .panel-body form.lead > .row {
        display: block;
        margin-right: 0;
        margin-left: 0;
    }

    .panel-body form.lead > .row > [class*="col-"] {
        float: none;
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }

    .panel-body .form-group {
        margin-bottom: 18px;
    }

    .panel-body .btn {
        margin-top: 4px;
    }

    .home-section,
    .paddingtop-80,
    .paddingtop-60,
    .paddingtop-40,
    .paddingbot-80,
    .paddingbot-60,
    .nopadding {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .navbar-fixed-top + #boxes,
    .navbar-fixed-top ~ #boxes:first-of-type {
        padding-top: 48px;
    }

    .cta-btn {
        text-align: left;
        margin-top: 18px;
    }

    .sub-footer .text-left,
    .sub-footer .text-right {
        text-align: left;
    }
}
