/* ===================================
   ROOT VARIABLES
=================================== */

:root {

    --light-green: #e3eefb;
    --dark-green: #153b65;
    --accent-green: #2381d4;
    --black: #101010;
    --white: #ffffff;

    --radius: 16px;
    --transition: all .3s ease;

}

/* ===================================
   RESET
=================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Open Sans', sans-serif;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;

}

h1 {
    font-size: 52px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 22px;
}

p {
    font-size: 18px;
    line-height: 1.8;
}

@media(max-width:991px){
    h1{font-size:42px;}
    h2{font-size:34px;}
}

@media(max-width:767px){
    h1{font-size:32px;}
    h2{font-size:28px;}
    p{font-size:16px;}
}

a {
    text-decoration: none;
}

img {

    max-width: 100%;
    height: auto;
    display: block;

}

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

section {
    position: relative;
}

/* ===================================
   CONTAINER
=================================== */

.container {

    max-width: 1320px;

}

/* ===================================
   COMMON BUTTONS
=================================== */

.btn-main {

    background: var(--dark-green);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    font-weight: 600;
    transition: var(--transition);

}

.btn-main:hover {

    background: #0d3c28;
    color: var(--white);

}

.btn-secondary-custom {

    background: var(--accent-green);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    font-weight: 600;
    transition: var(--transition);

}

.btn-secondary-custom:hover {

    color: var(--white);
    transform: translateY(-2px);

}

/* ===================================
   SECTION SPACING
=================================== */

.section-padding {

    padding: 100px 0;

}

/* ===================================
   SECTION TITLE
=================================== */

.section-title {

    margin-bottom: 60px;

}

.section-title span {

    color: var(--accent-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;

}

.section-title h2 {

    font-size: 48px;
    font-weight: 800;
    margin-top: 10px;

}

/* ===================================
   MODAL
=================================== */

.modal-content {

    border: none;
    border-radius: 20px;
    overflow: hidden;

}

.modal-header {

    background: var(--dark-green);
    color: var(--white);

}

.modal-title {

    font-weight: 700;

}

.form-control {

    height: 55px;
    border-radius: 10px;

}

textarea.form-control {

    height: auto;

}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width:991px) {

    .section-padding {

        padding: 80px 0;

    }

    .section-title h2 {

        font-size: 38px;

    }

}

@media (max-width:767px) {

    .section-padding {

        padding: 60px 0;

    }

    .section-title h2 {

        font-size: 30px;

    }

}


/* ===================================
   TOP BAR
=================================== */

.top-bar {
    background: var(--light-green);
    padding: 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
}

.social-links i {
    font-size: 28px;
    color: #E4405F;
}


.top-actions {
    display: flex;
}

.enquiry-btn, .call-btn {
    background: var(--dark-green);
    color: var(--white);
    border-radius: 0;
    padding: 15px 25px;
    border: none;
    font-weight: 400;
    font-size: 15px;
}

.call-btn {
    background: var(--accent-green);
}

.enquiry-btn:hover,
.call-btn:hover {
    color: var(--white);
    background: var(--black);
}

/* ===================================
   HEADER
=================================== */

.main-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0,0,0,.05);
}

.navbar {
    min-height: 100px;
}

.logo-area h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-green);
    margin: 0;
    line-height: 1.1;
}

.logo-area p {
    margin-top: 4px;
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--dark-green);
    font-weight: 600;
}

.navbar-nav {
    gap: 25px;
}

.nav-link {
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-green);
}

.nav-link.active {
    color: var(--accent-green);
}

/* ===================================
   MOBILE
=================================== */

.mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.mobile-call-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--accent-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler i {
    font-size: 28px;
    color: var(--dark-green);
}

.offcanvas {
    width: 320px;
}

.offcanvas-header {
    border-bottom: 1px solid #eee;
}

.offcanvas-body {
    padding: 30px;
}

.mobile-menu {
    margin-top: 0px;
}

.mobile-menu li {
    margin-bottom: 22px;
}

.mobile-menu a {
    color: var(--black);
    font-size: 18px;
    font-weight: 500;
}

.mobile-buttons {
    margin-top: 40px;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width:1199px) {

    .top-actions {
        display: none;
    }

    .navbar {
        min-height: 90px;
    }

    .logo-area h1 {
        font-size: 2rem;
    }

    .logo-area p {
        font-size: 14px;
    }
}

@media (max-width:767px) {


    .social-links {
        gap: 18px;
        margin: 10px 0;
    }

    .social-links i {
        font-size: 24px;
    }

    .social-links img {
        height: 24px;
    }

    .logo-area h1 {
        font-size: 1.5rem;
    }

    .logo-area p {
        font-size: 13px;
    }

    .navbar {
        min-height: 80px;
    }

    .enquiry-btn, .call-btn {
        font-size: 18px;
        border-radius: 10px;
    }

}

@media (max-width:575px) {

    .logo-area {
        max-width: 220px;
    }

}

/* ===================================
   HERO SECTION
=================================== */

.hero-section {

    position: relative;

    min-height: 400px;

    display: flex;
    align-items: center;

    background-image: url('../images/banner11.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.hero-section::before {

    content: '';

    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(227,252,236,0.30) 0%,
        rgba(227,252,236,0.10) 50%,
        rgba(255,255,255,0) 100%
    );
}

.hero-content {

    position: relative;
    z-index: 2;

    max-width: 650px;
}

.hero-content h1 {

    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;

    color: var(--accent-green);

    margin-bottom: 10px;
}

.hero-content h1 span {
    display: block;
}

.hero-content p {

    font-size: 1.2rem;
    line-height: 1.5;

    color: var(--dark-green);

    font-weight: 500;

    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    font-weight: 500;
    min-width: 200px;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 1199px) {

    .hero-section {
        min-height: 600px;
    }

    .hero-content {
        background: rgba(255,255,255,.8);
        padding: 20px 20px 30px;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-content p {
        font-size: 1.6rem;
    }
}

@media (max-width: 991px) {

    .hero-section {

        min-height: 550px;

        background-position: 72% center;
    }

    .hero-content {
        max-width: 550px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {

    .hero-section {

        min-height: 500px;

        text-align: center;

        background-position: 78% center;
    }

    .hero-content {

        max-width: 100%;
    }

    .hero-content h1 {

        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-content p {

        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-buttons {

        justify-content: center;
    }

    .hero-buttons .btn {

        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 575px) {

    .hero-section {

        min-height: 450px;
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
}


/* ===================================
   WELCOME SECTION
=================================== */

.welcome-section {

    background: var(--light-green);

    padding: 40px 0;
}

.section-heading {
    margin-bottom: 30px;
}

.section-heading h2 {

    font-size: 2rem;
    font-weight: 400;

    color: var(--dark-green);
}

.section-heading span {

    color: var(--accent-green);
    font-weight: 700;
}

.title-line {

    width: 70px;
    height: 5px;

    background: var(--accent-green);

    margin: 18px auto 0;
}

.welcome-card {

    text-align: center;

    padding: 20px;

    transition: all .3s ease;
}

.welcome-card:hover {

    transform: translateY(-8px);
}

.welcome-icon {

    margin-bottom: 20px;
}

.welcome-icon i {

    font-size: 40px;

    color: var(--accent-green);
}

.welcome-card h3 {

    font-size: 1.3rem;

    font-weight: 400;

    color: var(--dark-green);

    margin: 0;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width:1199px) {

    .section-heading h2 {
        font-size: 2.5rem;
    }

    .welcome-card h3 {
        font-size: 1.6rem;
    }
}

@media (max-width:991px) {

    .welcome-section {
        padding: 40px 0;
    }

    .section-heading {
        margin-bottom: 20px;
    }

    .welcome-icon i {
        font-size: 60px;
    }

    .welcome-card h3 {
        font-size: 1.6rem;
    }
}

@media (max-width:767px) {

    .welcome-section {
        padding: 30px 0;
    }

    .section-heading h2 {
        font-size: 1.5rem;
    }

    .welcome-card {
        padding: 10px;
    }

    .welcome-icon {
        margin-bottom: 20px;
    }

    .welcome-icon i {
        font-size: 30px;
    }

    .welcome-card h3 {
        font-size: 1rem;
    }
}


/* ===================================
   ABOUT DOCTOR SECTION
=================================== */

.about-doctor-section {

    padding: 50px 0;
    background: #f7f7f7;
}

.about-content h2 {

    font-size: 30px;
    line-height: 1.3;
    font-weight: 400;

    color: var(--dark-green);

    max-width: 550px;
}

.about-content h2 span {

    color: var(--accent-green);
    font-weight: 700;
}

.section-line {

    width: 70px;
    height: 4px;

    background: var(--accent-green);

    margin: 25px 0 35px;
}

.info-block {

    margin-bottom: 30px;
}

.info-block h3 {

    font-size: 16px;
    font-weight: 600;

    color: var(--dark-green);

    margin-bottom: 15px;
}

.info-block p {

    font-size: 16px;
    color: #666;
    margin: 0;
}

.award-list {

    padding: 0;
    margin: 0;
}

.award-list li {

    list-style: none;

    position: relative;

    padding-left: 30px;
    margin-bottom: 22px;

    font-size: 16px;
    line-height: 1.8;

    color: #666;
}

.award-list li i {
    position: absolute;
    font-size: 26px;
    color: var(--dark-green);
    left: 0;
    top: 4px;
}

.about-image {

    overflow: hidden;
}

.about-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .4s ease;
}

.about-image:hover img {

    transform: scale(1.03);
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:1199px){

    .about-content h2{
        font-size:48px;
    }

}

@media(max-width:991px){

    .about-doctor-section{
        padding:30px 0;
    }

    .about-content h2{
        font-size:2.2rem;
        max-width:100%;
    }

    .about-image{
        margin-top:20px;
    }

    .info-block h3 {
        font-size: 1.8rem;
    }

    .info-block p, .award-list li {
        font-size: 1.6rem;
    }

}

@media(max-width:767px){

    .about-content h2{
        font-size:22px;
    }

    .info-block h3{
        font-size:18px;
    }

    .section-line{
        margin:20px 0 30px;
    }

}


/* ===================================
   DOCTOR PROFILE SECTION
=================================== */

.doctor-profile-section {
    overflow: hidden;
}

.doctor-profile-wrapper {

    display: flex;
    /* min-height: 700px; */
}

.doctor-image {

    width: 48%;
    position: relative;
}

.doctor-image img {

    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-content {

    width: 52%;

    background: var(--dark-green);

    position: relative;

    display: flex;
    align-items: center;

    /* overflow: hidden; */
}

/* Diagonal Shape */

.doctor-content::before {
    content: '';
    position: absolute;
    left: -70px;
    top: 0;
    width: 140px;
    height: 100%;
    background: var(--dark-green);
    transform: skewX(-11deg);
    z-index: 1;
}

/* Medical Pattern */

.doctor-content::after {

    content: '';

    position: absolute;

    right: 0;
    top: 0;

    width: 350px;
    height: 100%;

    opacity: 1;

    background-image: url('../images/health-bg-blue.png');
    background-size: cover;
    background-position: right;
}

.doctor-content-inner {

    position: relative;
    z-index: 2;

    max-width: 700px;

    padding: 40px 40px 40px 60px;
}

.doctor-content h2 {

    font-size: 30px;
    font-weight: 300;

    color: #fff;

    margin-bottom: 0;
}

.doctor-content h2 span {

    color: var(--accent-green);
    font-weight: 600;
}

.doctor-content .section-line {

    margin: 20px 0 20px;
}

.doctor-content p {

    color: rgba(255,255,255,.95);

    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.8;

    margin-bottom: 20px;
}

.doctor-content strong {

    color: #fff;
    font-weight: 600;
}

.doctor-signature {

    margin-top: 25px;
}

.doctor-signature h3 {

    color: var(--accent-green);

    font-size: 24px;
    font-weight: 700;

    margin-bottom: 5px;
}

.doctor-signature p {

    margin: 0;
    font-size: 14px;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:1400px){

    .doctor-content h2{
        font-size:50px;
    }

    .doctor-signature h3{
        font-size:30px;
    }

}

@media(max-width:1199px){

    .doctor-content-inner{
        padding:70px 50px;
    }

    .doctor-content h2{
        font-size:2.5rem;
    }

}

@media(max-width:991px){

    .doctor-profile-wrapper{
        flex-direction: column;
    }

    .doctor-image,
    .doctor-content{
        width:100%;
    }

    .doctor-image{
        height:500px;
    }

    .doctor-content::before{
        display:none;
    }

    .doctor-content-inner{
        padding:30px;
        max-width: 100%;
    }

    .doctor-content p {
        font-size: 1.5rem;
    }

}

@media(max-width:767px){

    .doctor-image{
        height:300px;
    }

    .doctor-content h2{
        font-size:24px;
    }

    .doctor-content p{
        font-size:14px;
        font-weight: 400;
        text-align: justify;
    }

    .doctor-signature h3{
        font-size:20px;
    }

}


/* ===================================
   STATS SECTION
=================================== */

.stats-section {

    background: var(--light-green);

    padding: 40px 0;
}

.stat-card {

    text-align: center;
}

.stat-card h2 {

    font-size: 42px;
    font-weight: 700;

    color: var(--accent-green);

    margin-bottom: 10px;

    line-height: 1;
}

.stat-card p {

    font-size: 1.3rem;
    font-weight: 400;

    color: var(--dark-green);

    margin: 0;
}

/* Tablet */

@media(max-width:991px){

    .stat-card h2{
        font-size:40px;
    }

    .stat-card p{
        font-size:1.3rem;
    }

}

/* Mobile */

@media(max-width:767px){

    .stats-section{
        padding:30px 0;
    }

    .stat-card{
        margin-bottom:35px;
    }

    .stat-card:last-child{
        margin-bottom:0;
    }

    .stat-card h2{
        font-size:28px;
    }

    .stat-card p{
        font-size:16px;
        margin-bottom: 20px;
    }

}

/* ===================================
   TESTIMONIAL SECTION
=================================== */

.testimonial-section {

    position: relative;

    background: #fafafa;

    padding: 60px 0;

    overflow: hidden;
}

/* Decorative Pattern */

.testimonial-section::before {

    content: '';
    position: absolute;

    left: 0;
    top: 0;

    width: 50%;
    height: 100%;

    background: url('../images/health-bg-blue.png')
        no-repeat right top;

    background-size: contain;
    opacity: 1;
    transform: scaleX(-1);
}

.testimonial-heading {

    text-align: center;

    margin-bottom: 30px;
}

.top-line {

    width: 2px;
    height: 60px;

    background: #203864;

    margin: 0 auto 15px;
}

.testimonial-heading h2 {

    font-size: 32px;
    line-height: 1.2;
    font-weight: 300;

    color: var(--dark-green);

    margin-bottom: 15px;
}

.testimonial-heading h2 span {

    color: var(--accent-green);
    font-weight: 600;
}

.testimonial-slider {

    max-width: 700px;

    margin: auto;
}

.testimonial-content {

    text-align: center;
}

.testimonial-content p {

    font-size: 18px;

    line-height: 1.5;

    color: var(--dark-green);

    margin-bottom: 20px;
}

.testimonial-content h4 {

    font-size: 18px;

    font-weight: 700;

    color: var(--dark-green);

    margin-bottom: 30px;
}

.swiper-pagination {

    position: relative;
}

.swiper-pagination-bullet {

    width: 12px;
    height: 12px;

    opacity: 1;

    background: transparent;
    border: 1px solid var(--accent-green);
}

.swiper-pagination-bullet-active {

    background: var(--accent-green);
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:1199px){

    .testimonial-heading h2{
        font-size:48px;
    }

    .testimonial-content p{
        font-size:22px;
    }
}

@media(max-width:991px){

    .testimonial-section{
        padding:90px 0;
    }

    .testimonial-heading h2{
        font-size:34px;
    }

    .testimonial-content p,
    .testimonial-content h4 {
        font-size:24px;
    }

    .top-line{
        height:70px;
    }
}

@media(max-width:767px){

    .testimonial-section{
        padding:30px 0;
    }

    .testimonial-heading h2{
        font-size:24px;
    }

    .testimonial-content p{
        font-size:14px;
        line-height:1.8;
    }

    .testimonial-content h4{
        font-size:16px;
    }

    .top-line{
        height:50px;
    }

    .testimonial-pattern{
        width:150px;
    }
}


/* ===================================
   CONTACT SECTION
=================================== */

.contact-section {

    position: relative;

    /* min-height: 600px; */

    overflow: hidden;
}

.map-wrapper {
    position: absolute;
    inset: 0;
}

.map-wrapper::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.1);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.contact-card {

    position: relative;

    z-index: 2;

    background: rgba(174,199,54,0.7);

    padding: 30px;

    margin: 80px 0;

    max-width: 600px;

    color: #fff;

    backdrop-filter: blur(5px);
}

.contact-card h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;

    margin-bottom: 0px;
}

.contact-info p {

    font-size: 18px;
    line-height: 1.7;

    margin-top: 30px;
}

.contact-info a {

    color: #fff;
    text-decoration: none;
}

.contact-links {

    display: flex;
    flex-direction: column;
    gap: 60px;

    padding-top: 10px;
}

.contact-links a {

    color: var(--dark-green);

    font-size: 20px;
    font-weight: 600;
    text-align: right;

    text-decoration: underline;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:991px){

    .contact-card{

        margin:60px 0;
        padding:40px;
    }

    .contact-card h2{
        font-size:32px;
    }


    .map-wrapper img {
        height: 100%;
        object-fit: cover;
        object-position: right;
    }

}

@media(max-width:767px){

    .contact-section{
        min-height:auto;
    }

    .contact-card{

        margin:30px 15px;

        padding:30px 25px;
    }

    .contact-card h2{
        font-size:22px;
        margin-bottom:0px;
    }

    .contact-info p{
        font-size:16px;
        margin-top: 20px;
    }

    .contact-links{

        gap:15px;

        padding-top:0;
    }

    .contact-links a{
        font-size:16px;
        text-align: left;
    }

}

/* ===================================
   FOOTER
=================================== */

.footer-section {

    background: transparent;

    padding: 0;
}

.footer-wrapper {

    position: relative;

    background: var(--accent-green);

    padding: 15px 0;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.footer-wrapper p {

    color: #fff;

    font-size: 14px;
    font-weight: 400;

    margin: 0;

    text-align: center;
}

/* ===================================
   SCROLL TO TOP
=================================== */

.scroll-top {

    position: fixed;

    right: 30px;
    bottom: 30px;

    width: 55px;
    height: 55px;

    border: none;
    border-radius: 8px;

    background: var(--dark-green);
    color: var(--white);

    font-size: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transition: all .3s ease;
}

.scroll-top.show {

    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {

    background: var(--accent-green);

    transform: translateY(-5px);
}

/* Responsive */

@media(max-width:767px){

    .footer-wrapper{

        padding:20px 70px 20px 20px;
    }

    .footer-wrapper p{

        font-size:14px;
        line-height:1.6;
    }

    .scroll-top{

        width: 48px;
        height: 48px;

        right: 15px;
        bottom: 15px;
    }

}



/* ===================================
   GALLERY SECTION
=================================== */

.gallery-section {

    padding: 40px 0 60px;

    background: #ffffff;
}

.gallery-item {

    position: relative;

    display: block;

    overflow: hidden;

    border-radius: 16px;
    border: 1px solid var(--dark-green)
}

.gallery-item img {

    width: 100%;
    height: 300px;

    object-fit: cover;
    object-position: top;

    transition: .5s ease;
}

.gallery-overlay {

    position: absolute;
    inset: 0;

    background: rgba(21,82,57,.75);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;

    transition: .4s ease;
}

.gallery-overlay i {

    color: #fff;

    font-size: 32px;
}

.gallery-item:hover img {

    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {

    opacity: 1;
}

@media(max-width:767px){

    .gallery-item img{
        height:250px;
    }

}


/*==================================
SERVICES
==================================*/

.services-section{

    padding:50px 0 80px 0;
    background:#fff;

}

.services-divider{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    margin-top:18px;

}

.services-divider span{

    width:70px;
    height:3px;
    background:var(--accent-green);
    border-radius:50px;

}

.services-divider i{

    color:var(--accent-green);
    font-size:18px;

}

.service-card{

    text-align:center;
    transition:.35s ease;

}

.service-card:hover{

    transform:translateY(-8px);

}
.service-image-wrapper{
    filter: drop-shadow(-6px 6px 0px var(--accent-green));
}

.service-image{
    width:250px;
    aspect-ratio:1;
    overflow:hidden;
    margin: 0 auto;
    clip-path: shape(
        from 91.02% 40.45%,
        curve to 92.55% 60.35% with 95.66% 50.00%,
        smooth to 82.64% 79.06%,
        smooth to 65.75% 92.06%,
        smooth to 46.45% 90.18%,
        smooth to 25.95% 82.48%,
        smooth to 8.79% 71.45%,
        smooth to 4.74% 50.45%,
        smooth to 14.98% 32.87%,
        smooth to 29.49% 19.19%,
        smooth to 45.36% 9.71%,
        smooth to 62.92% 13.77%,
        smooth to 78.53% 25.48%,
        smooth to 91.02% 40.45%
    );
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.45s ease;
}

.service-card:hover img{

    transform:scale(1.08);

}

.service-content{

    padding-top:12px;

}

.service-content h3{

    font-size:1.4rem;
    color:var(--dark-green);
    font-weight:600;
    line-height:1.35;
    /* min-height:80px; */

}

.service-content::after{

    content:"";

    display:block;

    width:70px;
    height:3px;

    background:var(--accent-green);

    margin:16px auto 0;

    border-radius:20px;

}

@media(max-width:991px){

.service-content h3{

    font-size:22px;
    min-height:auto;

}

}

@media(max-width:767px){


.service-content{

    padding-top:18px;

}

.service-content h3{

    font-size:18px;

}

.services-divider span{

    width:45px;

}

}