@import url('navbar-responsive.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}



.hero {
    position: relative;
    width: 100%;
    height: 100vh;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}



.hero-video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;
}



.hero-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.55);

    z-index: 2;
}



.hero-content {
    position: relative;

    z-index: 3;

    text-align: center;

    color: white;
}

.hero-content h1 {
    font-size: 65px;
    font-weight: 700;

    margin-bottom: 15px;
}

.hero-content p {
    font-size: 25px;
}

.hero-content p span {
    font-weight: 700;
    text-decoration: underline;
}



.hero-logo {
    position: absolute;

    right: 40px;
    bottom: 25px;

    width: 130px;
    height: auto;

    z-index: 4;
}



@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-logo {
        width: 90px;

        right: 20px;
        bottom: 20px;
    }
}
/* ===============================
   HEADER BELOW VIDEO
================================ */

.site-header {
    width: 100%;
    background: #e7ebed;
    position: relative;
    z-index: 100;
}

.navbar-container {
    width: 88%;
    max-width: 1500px;
    min-height: 330px;
    margin: auto;

    display: flex;
    align-items: flex-start;
}



.header-logo {
    width: 195px;
    margin-top: 35px;
    flex-shrink: 0;
}

.header-logo img {
    width: 100%;
    display: block;
}


/* NAVIGATION */

.main-nav {
    display: flex;
    align-items: center;

    gap: 21px;

    margin-left: 70px;
    margin-top: 125px;

    white-space: nowrap;
}

.main-nav > a {
    color: #111;
    text-decoration: none;

    font-size: 21px;
    font-weight: 700;
}

.main-nav > a:hover,
.main-nav > a.active {
    color: #b32020;
}


/* SERVICES */

.services-dropdown {
    position: relative;
}

.services-dropdown button {
    border: none;
    background: transparent;

    font-size: 21px;
    font-weight: 700;

    cursor: pointer;
}

.services-menu {
    position: absolute;
    z-index: 9999;

    top: 35px;
    left: 0;

    width: 240px;

    background: white;

    box-shadow: 0 10px 30px rgba(0,0,0,.18);

    border-radius: 8px;

    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    transition: .2s;
}

.services-menu.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.services-menu a {
    display: block;

    padding: 15px 18px;

    color: #111;
    text-decoration: none;

    font-size: 16px;
}

.services-menu a:hover {
    background: #b32020;
    color: white;
}
#servicesButton {
    display: flex;
    align-items: center;
    gap: 8px;
}

#servicesButton i {
    font-size: 12px;
}




/* ================================
   ABOUT PAGE BANNER
================================ */

.about-banner {
    width: 100%;
    min-height: 350px;

    position: relative;

    display: flex;
    align-items: center;

    padding: 60px 80px;
    box-sizing: border-box;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* DARK OVERLAY */
.about-banner::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 20, 0.35);

    z-index: 1;
}

/* BANNER CONTENT */
.about-banner-content {
    position: relative;
    z-index: 2;

    max-width: 900px;

    color: #ffffff;

    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* HEADING */
.about-banner-content h1 {
    margin: 0 0 30px;

    font-size: 52px;
    line-height: 1.15;

    font-weight: 800;

    color: #ffffff;
    text-align: center;
}

/* PARAGRAPH */
.about-banner-content p {
    margin: 0 0 25px;

    font-size: 18px;
    line-height: 1.7;

    color: #ffffff;
}

/* BREADCRUMB */
.about-banner-content .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    gap: 8px;

    font-size: 18px;

    color: #ffffff;
}

/* BREADCRUMB LINKS */
.about-banner-content .breadcrumb a {
    color: #ffffff;
    text-decoration: underline;
}

/* BREADCRUMB HOVER */
.about-banner-content .breadcrumb a:hover {
    color: #e06b1f;
}


/* ================================
   ABOUT BANNER MOBILE
================================ */

@media (max-width: 900px) {

    .about-banner {
        min-height: 400px;

        padding: 45px 25px;

        background-position: center;
    }

    .about-banner-content {
        max-width: 100%;
    }

    .about-banner-content h1 {
        font-size: 34px;
    }

    .about-banner-content p {
        font-size: 16px;
    }

    .about-banner-content .breadcrumb {
        font-size: 16px;
    }
}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 500px) {

    .about-banner {
        min-height: 350px;

        padding: 35px 20px;
    }

    .about-banner-content h1 {
        font-size: 30px;
    }

    .about-banner-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .about-banner-content .breadcrumb {
        font-size: 14px;
    }
}

/* =========================================
   ABOUT US SECTION - RESPONSIVE
   ========================================= */

.about-section {
    width: 100%;
    padding: 80px 8%;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1500px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 50px;
}

/* LEFT SIDE */

.about-left {
    position: relative;
    z-index: 2;
}

.about-label {
    color: #d00000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-left h2 {
    font-size: 42px;
    line-height: 1.15;
    color: #111;
    margin-bottom: 28px;
    font-weight: 700;
}

.about-left p {
    color: #777;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* CHECK LIST */

.about-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.about-list li {
    font-size: 18px;
    color: #333;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-list li::before {
    content: "✓";
    width: 27px;
    height: 27px;
    border: 3px solid #ff5a1f;
    border-radius: 50%;
    color: #ff5a1f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* BUTTON */

.about-buttons {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.about-button {
    display: inline-block;
    padding: 14px 30px;
    border: 2px solid #222;
    border-radius: 30px;
    color: #111;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: 0.3s;
}

.about-button:hover {
    background: #111;
    color: #fff;
}

/* PHONE */

.about-phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-phone-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #d00000;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
}

.about-phone strong {
    display: block;
    color: #d00000;
    font-size: 18px;
}

.about-phone span {
    color: #222;
    font-size: 16px;
}

/* =========================================
   CENTER IMAGE
   ========================================= */

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* =========================================
   RIGHT SIDE
   ========================================= */

.about-right {
    position: relative;
}

.about-step {
    margin-bottom: 25px;
}

.about-step-number {
    color: #d00000;
    font-size: 38px;
    font-weight: 700;
}

.about-step-number::after {
    content: "";
    display: inline-block;
    width: 38px;
    height: 3px;
    background: #d00000;
    margin-left: 10px;
    vertical-align: middle;
}

.about-step h3 {
    font-size: 32px;
    color: #111;
    margin: 5px 0 15px;
}

.about-step p {
    color: #777;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1000px) {

    .about-section {
        padding: 60px 5%;
    }

    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .about-image {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .about-left {
        grid-column: 1;
        grid-row: 2;
    }

    .about-right {
        grid-column: 2;
        grid-row: 2;
    }

    .about-image img {
        max-width: 400px;
    }

    .about-left h2 {
        font-size: 34px;
    }
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {

    .about-section {
        padding: 50px 20px;
    }

    .about-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    /* IMAGE FIRST */

    .about-image {
        order: 1;
        width: 100%;
    }

    .about-image img {
        width: 85%;
        max-width: 330px;
    }

    /* TEXT SECOND */

    .about-left {
        order: 2;
        width: 100%;
    }

    .about-left h2 {
        font-size: 32px;
    }

    .about-left p {
        font-size: 17px;
    }

    .about-list li {
        font-size: 16px;
    }

    /* RIGHT CONTENT THIRD */

    .about-right {
        order: 3;
        width: 100%;
    }

    .about-step-number {
        font-size: 30px;
    }

    .about-step h3 {
        font-size: 25px;
    }

    .about-step p {
        font-size: 16px;
    }

    /* BUTTON + PHONE */

    .about-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .about-button {
        font-size: 16px;
    }
}

/* ================================
   OUR SERVICES SECTION
================================ */

.services-section {
    width: 100%;
    padding: 80px 8%;
    background: #ffffff;
    box-sizing: border-box;
}


/* Heading */

.services-heading {
    text-align: center;
    max-width: 1600px;
    margin: 0 auto 60px;
}

.services-heading span {
    display: block;
    color: #d90000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
}

.services-heading h2 {
    margin: 0 0 20px;
    font-size: 40px;
    font-weight: 700;
    color: #111111;
}

.services-heading p {
    max-width: 1500px;
    margin: 0 auto;
    color: #777777;
    font-size: 19px;
    line-height: 1.6;
}


/* Cards container */

.services-cards {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;

    display: grid;

    /* 4 cards same line */
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    align-items: stretch;
}


/* Individual card */

.service-card {
    background: #e7eaec;
    border-radius: 18px;

    padding: 25px 20px 30px;

    box-sizing: border-box;

    /* IMPORTANT: same size */
    height: 455px;
    min-height: 455px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}


/* Hover */

.service-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}


/* Top row */

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    margin-bottom: 30px;
}


/* Icons */

.service-top i {
    color: #ff6b18;
    font-size: 42px;
}


/* Number */

.service-top span {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
}


/* Red Services text */

.service-label {
    color: #e00000;
    font-size: 20px;
    margin-bottom: 25px;
}


/* Card heading */

.service-card h3 {
    color: #111111;

    font-size: 30px;
    line-height: 1.25;

    font-weight: 500;

    margin: 0 0 25px;
}


/* Card paragraph */

.service-card p {
    color: #444444;

    font-size: 18px;
    line-height: 1.55;

    margin: 0;

    flex-grow: 1;
}


/* Read More */

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    width: fit-content;

    padding: 12px 25px;

    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 30px;

    color: #111111;

    text-decoration: none;

    font-size: 18px;
    font-weight: 600;

    transition: all 0.3s ease;
}


.service-card a span {
    font-size: 25px;
    line-height: 1;
}


.service-card a:hover {
    background: #ffffff;
    border-color: #111111;
}


/* ================================
   TABLET
================================ */

@media (max-width: 1100px) {

    .services-section {
        padding: 60px 5%;
    }

    .services-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        height: 430px;
        min-height: 430px;
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

    .services-section {
        padding: 50px 20px;
    }

    .services-heading h2 {
        font-size: 30px;
    }

    .services-heading p {
        font-size: 16px;
    }

    .services-cards {
        grid-template-columns: 1fr;
    }

    .service-card {
        height: 420px;
        min-height: 420px;
    }

    .service-card h3 {
        font-size: 26px;
    }

    .service-card p {
        font-size: 17px;
    }

}

/* =========================
   TEAM MEMBERS SECTION
========================= */

.team-section {
    width: 100%;
    padding: 20px 9% 80px;
    background: #ffffff;
    box-sizing: border-box;
}

.team-heading {
    margin-bottom: 70px;
}

.team-small-title {
    color: #e00000;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.team-small-title span {
    font-size: 20px;
    margin-right: 8px;
}

.team-heading h2 {
    margin: 0;
    color: #10245b;
    font-size: 60px;
    line-height: 1.1;
    font-weight: 800;
}


/* Cards */

.team-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
    width: 100%;
}

.team-card {
    position: relative;
    height: 560px;
    border-radius: 25px;
    overflow: visible;
}


/* Image */

.team-image {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Blue information box */

.team-info {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 50px;

    min-height: 210px;

    background: #101d50;
    border-radius: 20px;

    text-align: center;
    padding: 55px 25px 25px;

    box-sizing: border-box;
}


/* Plus circle */

.plus-button {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);

    width: 70px;
    height: 70px;

    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #e00000;
    font-size: 38px;
    font-weight: 300;

    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}


.team-info h3 {
    margin: 0 0 18px;

    color: #E00000;
    font-size: 28px;
    font-weight: 800;
}


.team-info p {
    margin: 0;

    color: #ffffff;
    font-size: 17px;
    line-height: 1.6;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .team-section {
        padding: 20px 5% 60px;
    }

    .team-heading h2 {
        font-size: 45px;
    }

    .team-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .team-card {
        height: 500px;
    }

    .team-info {
        left: 18px;
        right: 18px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 650px) {

    .team-section {
        padding: 20px 20px 50px;
    }

    .team-heading {
        margin-bottom: 40px;
    }

    .team-small-title {
        font-size: 16px;
    }

    .team-heading h2 {
        font-size: 36px;
    }

    .team-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .team-card {
        height: 500px;
    }

    .team-info {
        left: 15px;
        right: 15px;
        bottom: 30px;
        min-height: 190px;
        padding: 50px 18px 20px;
    }

    .team-info h3 {
        font-size: 24px;
    }

    .team-info p {
        font-size: 15px;
    }

    .plus-button {
        width: 65px;
        height: 65px;
        font-size: 34px;
    }
}
/* ==============================
   PLUS + SOCIAL HOVER
============================== */

.social-hover {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}


/* NORMAL PLUS BUTTON */

.plus-button {
    width: 70px;
    height: 70px;

    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #e00000;
    font-size: 38px;
    font-weight: 300;

    box-shadow: 0 3px 12px rgba(0,0,0,0.15);

    transition: all 0.3s ease;
}


/* SOCIAL BAR - HIDDEN */

.social-icons {
    position: absolute;

    top: 0;
    left: 50%;

    transform: translateX(-50%) scale(0.7);

    width: 225px;
    height: 70px;

    background: white;
    border-radius: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    opacity: 0;
    visibility: hidden;

    transition: all 0.3s ease;

    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}


/* HOVER PAR PLUS HIDE */

.social-hover:hover .plus-button {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
}


/* HOVER PAR SOCIAL SHOW */

.social-hover:hover .social-icons {
    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) scale(1);
}


/* SOCIAL ICON */

.social-icon {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #f4f6f9;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    color: #e00000;

    font-size: 18px;
    font-weight: 700;

    transition: all 0.25s ease;
}


/* ICON HOVER */

.social-icon:hover {
    background: #e00000;
    color: white;

    transform: translateY(-3px);
}


/* ==============================
   IMAGE ZOOM
============================== */

.team-image {
    overflow: hidden;
    border-radius: 25px;
}

.team-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.10);
}


/* ==============================
   MOBILE
============================== */

@media (max-width: 650px) {

    .team-card:hover .team-image img {
        transform: scale(1.05);
    }

    .social-icons {
        width: 205px;
        height: 62px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

}

/* =========================
   TEAM SOCIAL HOVER
========================= */

.team-card {
    overflow: hidden;
}

.team-image {
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Picture zoom when mouse is over card */
.team-card:hover .team-image img {
    transform: scale(1.08);
}


/* Social area */
.social-hover {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    z-index: 10;
}


/* Plus button always visible */
.plus-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    border: 1px solid #ddd;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 38px;
    color: #e00000;

    cursor: pointer;

    box-shadow: 0 3px 12px rgba(0,0,0,0.15);

    transition: 0.3s ease;
}


/* Social icons hidden initially */
.social-icons {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%) scale(0.7);

    width: 220px;
    height: 70px;

    background: white;
    border-radius: 40px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;

    box-shadow: 0 4px 15px rgba(0,0,0,0.15);

    z-index: 20;
}


/* IMPORTANT:
   Hover ONLY on plus/social area */
.social-hover:hover .social-icons {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}


/* Plus stays visible */
.social-hover:hover .plus-button {
    opacity: 0;
}


.social-icon {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #f5f7fa;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    color: #e00000;

    font-size: 20px;
    font-weight: bold;

    transition: 0.2s ease;
}


.social-icon:hover {
    background: #e00000;
    color: white;
    transform: scale(1.1);
}


/* =========================================
   WHY CHOOSE US SECTION
========================================= */

.why-choose-section {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 40px;

    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
    gap: 50px;

    background: #fff;
    box-sizing: border-box;
}


/* LEFT IMAGE */

.why-image {
    width: 100%;
    height: 650px;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* RIGHT SIDE */

.why-content {
    position: relative;
    padding: 20px 0;
}


/* SMALL TITLE */

.why-small-title {
    color: #d60000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 28px;
}

.why-small-title span {
    color: #222;
    margin-right: 10px;
}


/* MAIN HEADING */

.why-content h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #080808;
    margin: 0 0 25px;
    font-weight: 700;
}


/* DESCRIPTION */

.why-description {
    font-size: 18px;
    line-height: 1.65;
    color: #777;
    margin: 0 0 35px;
}


/* CARDS GRID */

.why-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}


/* CARD */

.why-card {
    min-height: 120px;
    background: #fff;

    display: flex;
    align-items: center;

    padding: 25px 30px;
    box-sizing: border-box;

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.10);

    transition: all 0.3s ease;
}


/* CARD HOVER */

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}


/* ICON */

.why-icon {
    width: 55px;
    min-width: 55px;

    margin-right: 25px;

    font-size: 42px;
    color: #ff651f;

    display: flex;
    justify-content: center;
    align-items: center;
}


/* CARD TEXT */

.why-card h3 {
    margin: 0;
    color: #111;
    font-size: 23px;
    line-height: 1.3;
    font-weight: 700;
}


/* APPOINTMENT BUTTON */

.appointment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 28px;

    min-width: 265px;
    padding: 17px 30px;

    border: 2px solid #222;
    border-radius: 35px;

    background: #fff;
    color: #111;

    text-decoration: none;

    font-size: 18px;
    font-weight: 600;

    transition: all 0.3s ease;
}


.appointment-btn span {
    margin-left: 12px;
    font-size: 25px;
}


.appointment-btn:hover {
    background: #111;
    color: #fff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .why-choose-section {
        grid-template-columns: 1fr;
        padding: 50px 25px;
    }

    .why-image {
        height: 550px;
    }

    .why-content h2 {
        font-size: 34px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .why-choose-section {
        padding: 40px 20px;
        display: block;
    }

    .why-image {
        width: 100%;
        height: 400px;
        margin-bottom: 40px;
    }

    .why-small-title {
        font-size: 18px;
    }

    .why-content h2 {
        font-size: 30px;
    }

    .why-description {
        font-size: 16px;
    }

    .why-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .why-card {
        min-height: 105px;
        padding: 20px;
    }

    .why-card h3 {
        font-size: 19px;
    }

    .why-icon {
        font-size: 34px;
        margin-right: 18px;
    }

    .appointment-btn {
        width: 100%;
        box-sizing: border-box;
    }
}


/* ================================
   FOOTER
================================ */

.site-footer {
    background: #293258;
    color: #ffffff;
    width: 100%;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 55px 30px 40px;

    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 55px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 180px;
    max-width: 100%;
    height: auto;
    margin-bottom: 25px;
}

.footer-column h3 {
    font-size: 21px;
    margin: 5px 0 25px;
    font-weight: 700;
}

.footer-column h3 i {
    color: #b85b3e;
    margin-right: 10px;
}

.footer-column > a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 16px;
    transition: 0.2s;
}

.footer-column > a:hover {
    color: #ff4b3e;
    padding-left: 5px;
}

.newsletter p {
    font-size: 17px;
    margin-bottom: 25px;
}

.newsletter form {
    width: 100%;
}

.newsletter input {
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 30px;
    padding: 0 20px;
    font-size: 16px;
    box-sizing: border-box;
    margin-bottom: 12px;
}

.newsletter button {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 30px;
    background: #e00000;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter button:hover {
    background: #b50000;
}

/* Social Icons */

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #111111;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    font-size: 18px;

    transition: 0.3s;
}

.social-icons a:hover {
    background: #e00000;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Bottom */

.footer-bottom {
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 18px 15px;
    font-size: 17px;
    font-weight: 500;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 40px 25px;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        width: 230px;
    }

    .footer-column {
        text-align: left;
    }

    .footer-column h3 {
        font-size: 20px;
    }

    .footer-column > a {
        font-size: 16px;
    }

    .newsletter input,
    .newsletter button {
        width: 100%;
    }

    .footer-bottom {
        font-size: 14px;
    }
}

.main-nav a.active {
    color: #e00000 !important;
}
/* =========================
   ABOUT PAGE FOOTER SOCIAL ICONS
========================= */

.footer-social-icons {
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
    justify-content: flex-start !important;

    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;

    width: auto !important;
    height: auto !important;
}

.footer-social-icons a {
    width: 40px !important;
    height: 40px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #ffffff !important;
    color: #111111 !important;

    border-radius: 50% !important;
    text-decoration: none !important;

    font-size: 18px !important;
}

.footer-social-icons a:hover {
    background: #e00000 !important;
    color: #ffffff !important;
}