@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Times+New+Roman:wght@400;700&display=swap');

:root {
    --primary-color: #390099;
    --primary-light: #ebe6f5;
    --primary-dark: #25006b;
    --secondary-color: #2b98f0;
    --secondary-light: #e3f2fd;
    --tertiary-color: #f79f24;
    --tertiary-light: #fff8e1;
    --accent-color: #e89c00;
    --accent-light: #fff3cd;
    --neutral-color: #797979;
    --neutral-light: #f8f9fa;
    --info-color: #037ef3;
    --warning-color: #dc3952;
    --success-color: #4a9e6b;
    --text-color: #25006b;
    --light-bg: #f8f9fd;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--neutral-color);
    background: #fff;
    font-size: 16px;
    font-weight: 400;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6 {
    width: 100%;
    padding: 0 15px;
}

.col-md-7, .col-md-8 {
    width: 100%;
    padding: 0 15px;
}

.col-lg-3 {
    width: 100%;
    padding: 0 15px;
}

.col-lg-4 {
    width: 100%;
    padding: 0 15px;
}

.col-lg-6 {
    width: 100%;
    padding: 0 15px;
}

.col-lg-8 {
    width: 100%;
    padding: 0 15px;
}

.col-lg-12, .col-md-12, .col-12 {
    width: 100%;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .col-md-6 {
        width: 50%;
    }
    .col-md-7 {
        width: 58.333333%;
    }
    .col-md-8 {
        width: 66.666667%;
    }
    .col-md-12 {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        width: 25%;
    }
    .col-lg-4 {
        width: 33.333333%;
    }
    .col-lg-6 {
        width: 50%;
    }
    .col-lg-8 {
        width: 66.666667%;
    }
    .col-lg-12 {
        width: 100%;
    }
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--text-color);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-item {
        margin: 15px 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

.ftco-blocks-cover-1 .site-section-cover {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: calc(95vh - 185px);
    min-height: 690px;
    display: flex;
    align-items: center;
}

.ftco-blocks-cover-1 .site-section-cover.overlay:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.37);
    z-index: 1;
}

.ftco-blocks-cover-1 .site-section-cover .container,
.ftco-blocks-cover-1 .site-section-cover .row {
    position: relative;
    z-index: 2;
}

.ftco-blocks-cover-1 h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.ftco-blocks-cover-1 p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.text-primary {
    color: var(--tertiary-color) !important;
}

.btn {
    display: inline-block;
    padding: 14px 24px;
    font-size: 0.87rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.19rem;
    border-radius: 34px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--tertiary-color);
    color: #fff;
    border: 2px solid var(--tertiary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--tertiary-color);
    border-color: var(--tertiary-color);
}

.btn-main {
    background-color: var(--accent-color);
    color: #fff;
    border: 2px solid var(--accent-color);
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    border-radius: 0.4rem;
}

.btn-main:hover {
    background-color: #d08b00;
    border-color: #d08b00;
}

.ftco-section {
    padding: 7em 0;
    position: relative;
}

@media (max-width: 767.98px) {
    .ftco-section {
        padding: 6em 0;
    }
    
    .ftco-blocks-cover-1 .site-section-cover {
        height: calc(74vh - 185px);
        min-height: 620px;
    }
    
    .ftco-blocks-cover-1 h1 {
        font-size: 2.5rem;
    }
}

.heading-section {
    margin-bottom: 2rem;
}

.heading-section .subheading {
    font-size: 12px;
    display: block;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.heading-section h2 {
    font-size: 44px;
    font-weight: 300;
    color: var(--text-color);
    font-family: 'Times New Roman', serif;
}

@media (max-width: 767.98px) {
    .heading-section h2 {
        font-size: 28px;
    }
}

.text-center {
    text-align: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

.align-items-center {
    align-items: center !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.pl-3 {
    padding-left: 1rem !important;
}

.mr-3 {
    margin-right: 1rem !important;
}

.pl-md-4 {
    padding-left: 0 !important;
}

@media (min-width: 768px) {
    .pl-md-4 {
        padding-left: 2.5rem !important;
    }
    
    .order-md-1 {
        order: 1;
    }
    
    .order-md-2 {
        order: 2;
    }
    
    .mb-md-0 {
        margin-bottom: 0 !important;
    }
    
    .pl-md-5 {
        padding-left: 3rem !important;
    }
}

.main-section {
    padding: 7.5rem 0;
}

@media (max-width: 991.98px) {
    .main-section {
        padding: 3.5rem 0;
    }
}

.text-block p {
    margin-bottom: 1.8rem;
    font-size: 19px;
    line-height: 1.9;
    color: #444;
}

.text-dark {
    color: #111 !important;
}

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

.rounded-lg {
    border-radius: 0.5rem !important;
}

.d-flex {
    display: flex !important;
}

.d-block {
    display: block !important;
}

.services {
    display: block;
    width: 100%;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.services .d-block {
    margin-bottom: 20px;
}

.services .d-block:hover .icon {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.services .d-block:hover .icon:after {
    bottom: -7px;
    height: 7px;
    left: 4px;
    right: 4px;
}

.services .d-block:hover .icon .service-icon {
    color: #fff;
}

.services .icon {
    line-height: 1.3;
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0;
    border-radius: 8px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    box-shadow: 0px 10px 30px -4px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.services .icon:after {
    position: absolute;
    bottom: -5px;
    left: 5px;
    right: 5px;
    content: '';
    height: 5px;
    background: var(--tertiary-color);
    border-radius: 0 0 3px 3px;
    transition: all 0.3s ease;
}

.services .icon .service-icon {
    font-size: 24px;
    color: var(--tertiary-color);
    font-weight: 700;
}

.services .media-body h3 {
    font-weight: 600;
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.services .media-body p {
    margin-bottom: 1rem;
    color: var(--neutral-color);
}

.services .btn-custom {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-color);
    border-bottom: 2px solid #e6e6e6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.services .btn-custom:hover {
    color: var(--tertiary-color);
    border-color: var(--tertiary-color);
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.feature-showcase-section {
    padding: 32px 0;
    background: var(--neutral-light);
}

.feature-showcase .main-title {
    font-size: 25px;
    font-weight: 620;
    color: var(--text-color);
    margin-bottom: 22px;
    font-family: 'Times New Roman', serif;
}

.feature-showcase ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.feature-showcase ul li {
    margin-bottom: 11px;
    color: var(--neutral-color);
    position: relative;
    padding-left: 16px;
}

.feature-showcase ul li:before {
    content: "";
    width: 6.5px;
    height: 6.5px;
    background: var(--info-color);
    position: absolute;
    left: 0;
    top: 8.5px;
    border-radius: 50%;
}

.ftco-no-pt {
    padding-top: 0 !important;
}

.ftco-no-pb {
    padding-bottom: 0 !important;
}

.bg-light {
    background: var(--light-bg) !important;
}

.img-video-player {
    background-position: center center !important;
    background-size: cover;
    min-height: 400px;
    position: relative;
}

@media (max-width: 767.98px) {
    .img-video-player {
        height: 400px;
    }
}

.icon-video-play {
    width: 80px;
    height: 80px;
    background: var(--tertiary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.icon-video-play span {
    font-size: 20px;
    color: #fff;
}

.sub-heading {
    font-size: 12px;
    display: block;
    font-weight: 700;
    color: var(--tertiary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.tab-navigation-2 .nav-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1rem;
}

.tab-navigation-2 .nav-pills .nav-item {
    flex: 1;
}

.tab-navigation-2 .nav-pills .nav-item .nav-link {
    background: #fff;
    border-radius: 4px;
    color: var(--text-color);
    font-weight: 600;
    box-shadow: 0px 9px 21px -16px rgba(0, 0, 0, 0.15);
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
}

.tab-navigation-2 .nav-pills .nav-item .nav-link.active {
    color: #fff;
    background: var(--primary-color);
}

.tab-navigation-2 .tab-content {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0px 9px 21px -16px rgba(0, 0, 0, 0.15);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.p-0 {
    padding: 0 !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(247, 159, 36, 0.4);
    }
    70% {
        box-shadow: 0 0 0 30px rgba(247, 159, 36, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(247, 159, 36, 0);
    }
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.img {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.align-self-stretch {
    align-self: stretch !important;
}

.site-section {
    padding: 3em 0;
}

@media (min-width: 768px) {
    .site-section {
        padding: 5.5em 0;
    }
}

.section-title-underline {
    color: var(--text-color);
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 400;
}

.section-title-underline span {
    display: inline-block;
    border-bottom: 5px solid var(--success-color);
    padding-bottom: 5px;
}

.ftco-testimonial-1 .ftco-testimonial-vcard img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.ftco-testimonial-1 .ftco-testimonial-vcard h3 {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0;
    color: var(--text-color);
}

.ftco-testimonial-1 .ftco-testimonial-vcard span {
    color: var(--neutral-color);
    font-size: 0.9rem;
}

.ftco-testimonial-1 p {
    color: var(--neutral-color);
    margin-top: 1rem;
}

.owl-slide {
    position: relative;
}

.owl-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 35px 0;
}

.ftco-testimonial-1 {
    min-width: 300px;
    flex-shrink: 0;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.text-black {
    color: var(--text-color) !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    display: block;
    width: 100%;
    height: 43px;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 5px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: var(--info-color);
    outline: 0;
    box-shadow: none;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

textarea.form-control {
    height: auto;
    resize: vertical;
}

.btn-block {
    display: block;
    width: 100%;
}

.text-white {
    color: #fff !important;
}

.px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
}

.mr-auto {
    margin-right: auto !important;
}

.ml-auto {
    margin-left: auto !important;
}

.site-footer {
    padding: 4.2em 0;
    background: #0a0a0a;
    color: #fff;
}

@media (min-width: 768px) {
    .site-footer {
        padding: 8.3em 0;
    }
}

.site-footer .border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.site-footer p {
    color: #fff;
}

.site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5 {
    color: #fff;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.52);
    text-decoration: none;
}

.site-footer a:hover {
    color: white;
}

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

.site-footer ul li {
    margin-bottom: 11px;
}

.site-footer .footer-heading {
    font-size: 17px;
    color: #fff;
    font-weight: 600;
}

.site-footer .form-control {
    height: 58px;
    background: #fff !important;
}

.site-footer .btn.btn-primary {
    background: var(--warning-color);
    border-color: var(--warning-color);
    color: #fff;
    border-radius: 32px;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .22rem;
    padding: 11px 22px;
}

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

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.subscribe {
    display: flex;
    gap: 1rem;
}

.subscribe .form-control {
    flex: 1;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

@media (max-width: 767.98px) {
    .mb-sm-0 {
        margin-bottom: 0!important;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .services .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .services .icon {
        margin: 0 auto 1rem auto;
    }
    
    .ftco-testimonial-1 {
        min-width: 250px;
    }
    
    .owl-carousel {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-navigation-2 .nav-pills {
        flex-direction: column;
    }
    
    .subscribe {
        flex-direction: column;
    }
}

.ftco-animate {
    opacity: 1;
    visibility: visible;
}