@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css";
@import "bootstrap.min.css";

/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --body-fonts: "PT Serif", serif;
    --title-fonts: "Marcellus", serif;

    --color-white: #FFFFFF;
    --color-primary: #233E85;
    --text-color: #000000;
    --base-fonts: 16px;
}

body {
    background-color: var(--color-white);
    font-size: var(--base-fonts);
    line-height: 1.45;
    color: var(--text-color);
    font-weight: 400;
    font-family: var(--body-fonts), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-family: var(--title-fonts);
    font-weight: 400;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 3.25rem);
}

h3 {
    font-size: clamp(2rem, 3vw, 2.25rem);
}

h4 {
    font-size: clamp(1.75rem, 2.5vw, 2rem);
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.15rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: underline;
}

.btn {
    padding: 13px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.35s all ease-in-out;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    outline: none;
    box-shadow: none;
}

.btn-primary:hover {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    filter: brightness(80%);
}

.btn-outline-primary {
    color: var(--color-primary);
    border-color: var(--color-primary);
    outline: none;
    box-shadow: none;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}


.btn-outline-secondary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.btn-outline-secondary:hover img {
    filter: brightness(0) invert(1);
}

.btn-dark {
    background-color: var(--text-color);
    color: var(--color-white);
}

.btn strong {
    padding-left: 4px;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.site-main {
    padding-top: 58px;
}

.section__title {
    max-width: 767px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 77px;
}

.section__title > * {
    margin: 0;
}

.section__title p {
    margin-bottom: 0;
}

.section__title p + p {
    margin-top: 12px;
}

@media (max-width: 991.91px) {
    .section__title {
        margin-bottom: 40px;
    }
}


.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-main {
    flex: 1 0 auto;
}

/*--- BODY STYLE END ---*/


/*--- HEADER STYLE START ---*/
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
}

header.visible-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

header.hidden-header {
    transform: translateY(-100%);
}

header .navbar-brand {
    max-width: 250px;
}

header .navbar-brand img {
    width: 100%;
}


header .navbar-collapse {
    justify-content: flex-end;
}

header .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

header .navbar-nav a:not(.btn) {
    color: var(--text-color);
    position: relative;
    padding: 2px 3px;
    text-decoration: none;
}

header .navbar-nav a:not(.btn):after {
    content: "";
    width: 0;
    height: 2px;
    border-radius: 3px;
    background-color: var(--text-color);
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.35s all ease-in-out;
}

header .navbar-nav a:not(.btn).active:after,
header .navbar-nav a:not(.btn):hover:after {
    width: 100%;
}

body.navbar-open {
    overflow: hidden;
}

@media (max-width: 991.98px) {
    header {
        padding: 15px 0;
    }

    /* Hamburger Menu Styling */
    .navbar-toggler {
        border: none;
        background: transparent;
        outline: none;
        padding: 0;
        box-shadow: none !important;
        outline: none !important;
    }

    .navbar-toggler span {
        display: block;
        width: 30px;
        height: 3px;
        margin: 5px auto;
        background-color: var(--text-color);
        transition: all 0.4s ease-in-out;
    }

    .navbar-nav {
        padding: 0;
        background-color: var(--color-white);
    }

    header .navbar li + li {
        margin-left: 0;
        margin-top: 10px;
    }

    /* Hamburger Menu Animation */
    .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Navbar Collapse Animation */
    header .navbar-collapse {
        transition: 0.4s all ease-in-out;
        padding: 20px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
        position: absolute;
        left: 0;
        top: calc(100% + 13px);
        width: 100%;
        opacity: 0;
        z-index: -1;
        visibility: hidden;
    }

    header .navbar-collapse.show {
        opacity: 1;
        z-index: 2;
        visibility: visible;
    }
}


/*--- HEADER STYLE END ---*/

/*--- HERO STYLE START ---*/
.hero__section {
    position: relative;
    padding-top: 60px;
}

.hero__section .hero__bg {
    min-height: 480px;
    padding: 50px 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.hero__bg:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .2);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.hero__section h1 {
    color: var(--color-white);
    margin: 0;
}

@media (max-width: 991.98px) {
    .hero__section .hero__bg {
        min-height: 400px;
        padding: 30px 15px;
    }
}

@media (max-width: 767.98px) {
    .hero__section {
        padding-top: 40px;
    }

    .hero__section .hero__bg {
        min-height: 350px;
    }

    .hero__section .container {
        padding-left: 0;
        padding-right: 0;
    }
}

/*--- HERO STYLE END ---*/

/*--- SERVICES STYLE START ---*/
.services__section {
    padding: 100px 0;
}

.services__section .services__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 50px;
    row-gap: 35px;
}

.services__section .services__col h2,
.services__section .services__col h3,
.services__section .services__col h4 {
    margin-bottom: 40px;
}

.services__section .services__col p {
    margin: 0;
}

.services__section .services__col p + p {
    margin-top: 12px;
}

@media (max-width: 1199.98px) {
    .services__section .services__row {
        column-gap: 20px;
    }
}

@media (max-width: 991.98px) {
    .services__section {
        padding: 70px 0;
    }

    .services__section .services__row {
        grid-template-columns: repeat(2, 1fr);
    }

    .services__section .services__col h2,
    .services__section .services__col h3,
    .services__section .services__col h4 {
        margin-bottom: 20px;
    }
}

@media (max-width: 640.98px) {
    .services__section .services__row {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*--- SERVICES STYLE END ---*/

/*--- FEATURES STYLE START ---*/
.features__section {
    position: relative;
    padding: 100px 0 0 0;
    margin-bottom: -140px;
    z-index: 2;
}

.features__section .features__row {
    display: grid;
    grid-template-columns: calc(60% - 25px) calc(40% - 25px);
    gap: 50px;
    justify-content: space-between;
    align-items: center;
}

.features__section .features__row + .features__row {
    margin-top: 70px;
}

.features__section .feature__img {
    max-width: 77%;
}

.features__section .features__row:nth-child(2n + 2) .feature__img {
    margin-left: auto;
}

.features__section .features__row:nth-child(2n + 2) {
    align-items: flex-start;
}

.features__section .features__row:nth-child(2n + 2) .features__info {
    margin-top: -50px;
}

.features__section .feature__img img {
    width: 100%;
    object-fit: cover;
}

.features__section .features__info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
}

.features__section .features__info > * {
    margin: 0;
}

.features__section li + li {
    margin-top: 7px;
}

.features__section p + p {
    margin-top: 12px;
}

.shape__features {
    width: 100%;
}


@media (max-width: 1199.98px) {
    .features__section .features__row {
        gap: 30px;
        grid-template-columns: calc(55% - 15px) calc(45% - 15px);
    }

    .features__section .feature__img {
        max-width: 85%;
    }
}

@media (max-width: 991.98px) {
    .features__section {
        padding: 70px 0;
    }

    .features__section h2 {
        margin: 0;
    }

    .features__section .features__row {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .features__section .feature__img {
        max-width: 100%;
        width: 100%;
    }

    .features__section .features__row + .features__row {
        margin-top: 40px;
    }

    .features__section .features__row:nth-child(2n + 2) .features__info {
        margin-top: 0;
    }
}

@media (max-width: 767.98px) {
    .features__section {
        margin-bottom: -90px;
    }
}

/*--- FEATURES STYLE END ---*/

/*--- ABOUT STYLE START ---*/
.about__section {
    padding: 170px 0;
    background-color: #DCDCDC;
    position: relative;
}

.features__section + .about__section {
    padding-top: 300px;
}

.about__section:before {
    /*content: "";*/
    width: 100%;
    height: 100px;
    clip-path: polygon(0% 50%, 25% 80%, 55% 40%, 80% 20%, 100% 40%, 100% 100%, 0% 100%);
    clip-path: path('M0,60 Q150,110 350,40 T700,20 T1000,60 V120 H0 Z');
    background-color: red;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.about__section .about__row {
    display: grid;
    grid-template-columns: calc(40% - 15px) calc(60% - 15px);
    gap: 30px;
    justify-content: space-between;
}

.about__section .about__content p {
    margin: 0;
}

.about__section .about__content li + li {
    margin-top: 7px;
}

.about__section .about__content p + p {
    margin-top: 12px;
}

@media (max-width: 991.98px) {
    .about__section {
        padding: 100px 0;
    }

    .features__section + .about__section {
        padding-top: 150px;
    }

    .about__section .about__row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 991.98px) {
    .features__section + .about__section {
        padding-top: 100px;
    }
}

/*--- ABOUT STYLE END ---*/

/*--- GRID STYLE START ---*/
.grid__section {
    padding: 100px 0;
}

.grid__section .grid__row {
    display: grid;
    gap: 30px;
    justify-content: space-between;
    grid-template-columns: calc(40% - 15px) calc(50% - 15px);
}

.grid__section .grid__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.grid__section .grid__content a {
    color: var(--text-color);
    text-decoration: none;
}

.grid__section .grid__img img {
    width: 100%;
    object-fit: contain;
}


body .ff-default .ff-el-input--label label {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    font-family: var(--body-fonts);
}

body .ff-default .ff-el-form-control {
    border: 1px solid #000000;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    font-family: var(--body-fonts);
    background-color: transparent;
}

body .ff-default .ff-el-form-control:focus {
    border-color: var(--color-primary);
}

body .ff-default textarea {
    resize: none;
}

body .fluentform .ff-el-input--label.ff-el-is-required.asterisk-right label:after {
    color: var(--text-color);
    font-family: var(--body-fonts);
}

body .ff-default .ff_btn_style {
    background-color: var(--text-color) !important;
    color: var(--color-white) !important;
    border-color: var(--text-color) !important;
    border-radius: 25px !important;
    padding: 13px 30px;
    font-size: 16px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.35s all ease-in-out;
}

@media (max-width: 991.98px) {
    .grid__section .grid__row {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .grid__section {
        padding: 70px 0;
    }
}

/*--- GRID STYLE END ---*/


/*--- ABOUT STYLE START ---*/
.contact__section {
    padding: 140px 0;
    background-color: #DCDCDC;
    position: relative;
}

.contact__section:before {
    /*content: "";*/
    width: 100%;
    height: 100px;
    clip-path: polygon(0% 50%, 25% 80%, 55% 40%, 80% 20%, 100% 40%, 100% 100%, 0% 100%);
    clip-path: path('M0,60 Q150,110 350,40 T700,20 T1000,60 V120 H0 Z');
    background-color: red;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.contact__section .contact__row {
    display: grid;
    grid-template-columns: calc(40% - 15px) calc(60% - 15px);
    gap: 30px;
    justify-content: space-between;
}

.contact__section .contact__form {
    max-width: 700px;
    margin: 0 0 0 auto;
}

.contact__section .contact__content p {
    margin: 0;
}

.contact__section .contact__content li + li {
    margin-top: 7px;
}

.contact__section p + .contact__form,
.contact__section ul + .contact__form {
    margin-top: 20px;
}

.contact__section .contact__content p + p {
    margin-top: 12px;
}

@media (max-width: 991.98px) {
    .contact__section {
        padding: 70px 0;
    }

    .contact__section .contact__row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/*--- ABOUT STYLE END ---*/

/*--- TEXT SECTION STYLE START ---*/
.web-text-section {
    padding: 140px 0;
}

.web-text-section .container {
    max-width: 1160px;
}

.web-text-section h1 {
    font-size: clamp(2.5rem, 5vw, 3.25rem);
}

.web-text-section h2 {
    font-size: clamp(2.5rem, 5vw, 2.5rem);
}

.web-text-section h3 {
    font-size: clamp(2rem, 3vw, 2rem);
}

.web-text-section h4 {
    font-size: clamp(1.75rem, 2.5vw, 1.6rem);
}

body .sidebar-menu {
    list-style-type: none;
    padding: 0;
}

body .sidebar-menu li + li {
    margin-top: 12px;
}

body .sidebar-menu a {
    font-size: 18px;
    text-decoration: underline;
    color: var(--color-primary);
}

.web-text-section .text-main-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .web-text-section {
        padding: 80px 0 50px;
    }

    body .sidebar-menu {
        margin-bottom: 30px;
    }
}

/*--- TEXT SECTION STYLE END ---*/

/*--- FOOTER STYLE START ---*/
footer {
    padding: 80px 0 0 0;
}

footer .footer_row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

footer .footer_contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

footer .footer_contact a {
    color: var(--text-color);
    display: inline-block;
    transition: 0.35s all ease-in-out;
}

.footer_bottom {
    text-align: center;
    padding: 15px 0;
}

footer .footer-menu {
    list-style-type: none;
    padding: 0;
    width: 25%;
    margin-left: auto;
}

footer .footer-menu li + li {
    margin-top: 15px;
}

footer .footer-menu a {
    font-size: 28px;
    font-weight: 400;
    color: var(--text-color);
}

footer .footer-menu a:hover {
    color: var(--color-primary);
}

@media (max-width: 991.98px) {
    footer .footer-menu a {
        font-size: 24px;
    }
}

@media (max-width: 767.98px) {
    footer {
        padding: 60px 0;
    }

    footer .footer_row {
        flex-direction: column;
        gap: 25px;
    }

    footer .footer-menu {
        margin-left: 0;
        width: 100%;
    }

    footer .footer-menu a {
        margin-left: 0;
    }

    footer .footer-menu a {
        font-size: 20px;
    }

}

/*--- FOOTER STYLE END ---*/