@import url(//fonts.googleapis.com/css?family=Montserrat:300,400,500);

body {
    font-family: "Montserrat", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
}

i.fa {
    margin-right: 5px;
}

header {
    background-color: #fb9e284d;
}

#about {
    font-size: 1.2rem;
}

@media only screen and (max-width: 600px) {
    .features-img {
        width: 300px;
    }
}

@media only screen and (max-width: 450px) {
    .features-img {
        width: 200px;
    }
}
@media screen and (max-width: 768px) {
[data-aos-delay] {
    transition-delay: 0 !important;
}
}
#hero img {
    max-width: 100% !important;
    max-height: 100% !important;
}
.site-header {
    background: #f8f9fa;
    padding: 1.5rem 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    font-family: 'Montserrat', sans-serif;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
}

.navigation-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #555;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    color: #333;
}

.brand-text {
    font-weight: 600;
}

.menu-link:hover {
    background-color: #007bff;
    color: white;
    transform: translateY(-2px);
}

.custom-dropdown {
    background: white;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 0.8rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.8rem 1.5rem;
    color: #555;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f0f4ff;
    color: #007bff;
}

@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-link {
        padding: 0.6rem 1rem;
    }

    .brand-item {
        margin-bottom: 1rem;
    }

    .custom-dropdown {
        position: static;
        margin-top: 0.5rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-item {
    animation: fadeIn 0.5s ease forwards;
    animation-delay: calc(var(--item-index) * 0.1s);
}
#hero {
    width: 100%;
    height: 100vh;
    position: relative;
    background: url('/img/image-background.png') top center;
    background-size: cover;
    transition: all 0.5s ease;
}

#hero:before {
    content: '';
    background: linear-gradient(135deg, rgba(255, 82, 99, 0.9), rgba(255, 82, 99, 0.7));
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0 0 30px 30px;
}

#hero .container {
    padding-top: 120px;
    z-index: 1;
}

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
}

#hero h2 {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px 0;
    font-size: 24px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
}

#hero .btn-get-started {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    padding: 20px 45px;
    border-radius: 50px;
    transition: all 0.4s ease;
    margin-top: 40px;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

#hero .btn-get-started:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.arrow-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-get-started:hover .arrow-icon {
    transform: translateX(5px);
}

.animate-text {
    animation: slideUp 1s ease-out;
}

.animate-fade {
    animation: fadeIn 1.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 992px) {
    #hero {
        height: auto;
        min-height: 100vh;
    }

    #hero h1 {
        font-size: 36px;
        line-height: 1.3;
    }

    #hero h2 {
        font-size: 20px;
    }

    #hero .btn-get-started {
        font-size: 20px;
        padding: 15px 35px;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 30px;
    }

    #hero h2 {
        font-size: 18px;
    }
}
.showcase-section {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    font-size: 48px;
    color: #2c3e50;
    font-weight: 700;
}

.feature-image {
    max-width: 500px;
    width: 100%;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.feature-title {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.feature-description {
    font-size: 24px;
    color: #34495e;
    line-height: 1.6;
}

.rounded-xl {
    border-radius: 20px;
}

.shadow-lg {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

.slide-right {
    animation: slideRight 1s ease-in-out;
}

.slide-left {
    animation: slideLeft 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideRight {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideLeft {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 992px) {
    .feature-row {
        text-align: center;
    }

    .feature-image {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 36px;
    }

    .feature-title {
        font-size: 28px;
    }

    .feature-description {
        font-size: 20px;
    }
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
background: #f8f9fa;
font-family: 'Montserrat', sans-serif;
}

.section-title h2 {
font-size: 36px;
font-weight: 700;
color: #2d4b6e;
margin-bottom: 30px;
}

.service-card {
background: #ffffff;
border-radius: 20px;
padding: 40px 25px;
height: 100%;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 35px rgba(45, 75, 110, 0.15);
}

.icon-wrapper {
width: 90px;
height: 90px;
margin: 0 auto 25px;
display: flex;
align-items: center;
justify-content: center;
background: #f0f4f9;
border-radius: 50%;
transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
background: #2d4b6e;
}

.service-icon {
width: 45px;
height: 45px;
stroke: #2d4b6e;
transition: all 0.3s ease;
}

.service-card:hover .service-icon {
stroke: #ffffff;
}

.service-title {
font-size: 24px;
font-weight: 600;
margin-bottom: 20px;
position: relative;
padding-bottom: 20px;
}

.service-title::after {
content: "";
position: absolute;
display: block;
width: 50px;
height: 3px;
background: #2d4b6e;
bottom: 0;
left: calc(50% - 25px);
border-radius: 2px;
}

.service-title a {
color: #2d4b6e;
text-decoration: none;
transition: color 0.3s ease;
}

.service-title a:hover {
color: #4171a6;
}

.service-description {
font-size: 16px;
line-height: 1.6;
color: #666;
margin: 0;
}

@keyframes fadeIn {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

.fade-in {
animation: fadeIn 1s ease-out;
}

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

.service-card {
    padding: 30px 20px;
}

.service-title {
    font-size: 20px;
}

.service-description {
    font-size: 14px;
}
}
/*--------------------------------------------------------------
# Modern FAQ Section Styles
--------------------------------------------------------------*/
.faq-modern {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
    padding: 80px 0;
}

.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section-title h2 {
    color: #2d4b6c;
    font-size: 42px;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #2d4b6c;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.question-text {
    font-size: 24px;
    color: #2d4b6c;
    font-weight: 500;
    flex: 1;
    padding-right: 20px;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    stroke: #2d4b6c;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}

.faq-question:not(.collapsed) .arrow-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.faq-answer.show p {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 32px;
    }

    .question-text {
        font-size: 20px;
    }

    .faq-answer p {
        font-size: 16px;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1.2rem;
    }
}
section#contact {
    background-color: #fff;
    padding: 5% 0;
}
section#contact .section-heading {
    color: #000;
    font-weight: 600;
    padding: 5% 0;
}
section#contact form#contactForm .form-group {
    margin-bottom: 1.5rem;
}
section#contact form#contactForm .form-group input,
section#contact form#contactForm .form-group textarea {
    padding: 1.25rem;
}
section#contact form#contactForm .form-group input.form-control {
    height: auto;
}
section#contact form#contactForm .form-group-textarea {
    height: 100%;
}
section#contact form#contactForm .form-group-textarea textarea {
    height: 100%;
    min-height: 10rem;
}
section#contact form#contactForm p.help-block {
    margin: 0;
}
section#contact form#contactForm .form-control:focus {
    border-color: #ffc800;
    box-shadow: none;
}
section#contact form#contactForm ::-webkit-input-placeholder {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
    font-weight: 700;
    color: #ced4da;
}
section#contact form#contactForm :-moz-placeholder {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
    font-weight: 700;
    color: #ced4da;
}
section#contact form#contactForm ::-moz-placeholder {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
    font-weight: 700;
    color: #ced4da;
}
section#contact form#contactForm :-ms-input-placeholder {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
    font-weight: 700;
    color: #ced4da;
}
/*--------------------------------------------------------------
# Contact Section Styles
--------------------------------------------------------------*/
.contact {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #3498db;
    border-radius: 2px;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3498db;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.icon {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.info-card:hover .icon-wrapper {
    transform: scale(1.1);
    background: #2980b9;
}

.title {
    font-size: 24px;
    color: #2c3e50;
    margin: 1rem 0;
    font-weight: 600;
}

.content {
    font-size: 18px;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .info-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .icon {
        width: 30px;
        height: 30px;
    }

    .title {
        font-size: 20px;
    }

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
/*--------------------------------------------------------------
# Modern Footer Styles
--------------------------------------------------------------*/
.footer {
    background-color: #2d3436;
    padding: 80px 0 30px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    line-height: 1.6;
}

.footer-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.footer svg {
    margin-right: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.footer h4 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #dfe6e9;
    border-radius: 2px;
}

.footer .info-content p {
    margin: 0;
    font-size: 24px;
}

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

.footer .footer-links ul li {
    padding: 12px 0;
}

.footer .footer-links ul a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 24px;
    position: relative;
    padding-left: 20px;
}

.footer .footer-links ul a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer .footer-links ul a:hover {
    color: #fff;
    padding-left: 25px;
}

.footer .footer-links ul a:hover::before {
    opacity: 1;
    transform: translateX(5px);
}

.footer .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: #fff;
}

.footer .copyright {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 20px;
}

.footer .copyright strong {
    color: #fff;
}

@media (max-width: 768px) {
    .footer {
        font-size: 20px;
        padding: 50px 0 20px;
    }

    .footer h4 {
        font-size: 24px;
    }

    .footer .info-content p,
    .footer .footer-links ul a {
        font-size: 20px;
    }

    .footer-item {
        padding: 20px;
    }

    .footer .social-links a {
        width: 40px;
        height: 40px;
    }
}
