@import url(//fonts.googleapis.com/css?family=PT+Sans:300,400,700);

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #39b13c4d;
}

#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;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s ease;
    z-index: 997;
    padding: 25px 0;
    background: #f8f9fa;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

#header .logo a {
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

#header .logo a:hover {
    color: #6c757d;
}

#header .logo i {
    margin-right: 8px;
    color: #6c757d;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar > ul > li {
    padding: 10px 0 10px 30px;
}

.navbar a {
    font-family: 'Open Sans', sans-serif;
    color: #4a4a4a;
    font-size: 16px;
    font-weight: 500;
    padding: 0;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.navbar a:hover,
.navbar .active {
    color: #6c757d;
}

.navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #6c757d;
    transition: width 0.3s ease;
}

.navbar a:hover::after,
.navbar .active::after {
    width: 100%;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100% + 15px);
    margin: 0;
    padding: 15px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: 0.3s;
    min-width: 200px;
}

.navbar .dropdown ul li {
    padding: 8px 20px;
}

.navbar .dropdown ul a {
    font-size: 15px;
    font-weight: 400;
    color: #4a4a4a;
}

.navbar .dropdown ul a:hover {
    color: #6c757d;
    padding-left: 5px;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #4a4a4a;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }

    .navbar-mobile {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.9);
        padding: 10px 0;
        transition: 0.3s;
        z-index: 999;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 80px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 20px;
        background: #fff;
        border-radius: 10px;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile > ul > li {
        padding: 10px 0;
        border-bottom: 1px solid #f1f1f1;
    }

    .navbar-mobile a {
        padding: 10px 0;
        font-size: 16px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 0;
        padding: 10px 0;
        box-shadow: none;
        background: #f8f9fa;
        border-radius: 5px;
    }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

    .mobile-nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

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

.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeIn {
    animation-name: fadeIn;
}
#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;
    }
}
.features {
    background-color: #f8f9fa;
    padding: 80px 0;
    font-family: 'Montserrat', sans-serif;
}

.features h2 {
    color: #2d4356;
    font-size: 42px;
    margin-bottom: 60px;
}

.features-item {
    margin-bottom: 120px;
    color: #2d4356;
}

.content-wrapper {
    padding: 30px;
}

.features-item h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2d4356;
    margin-bottom: 25px;
}

.feature-text {
    font-size: 24px;
    line-height: 1.6;
    color: #526D82;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    font-size: 24px;
    background-color: #27374D;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #526D82;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.image-container {
    position: relative;
    padding: 20px;
}

.primary-image, .secondary-image {
    width: 100%;
    border-radius: 20px;
    transition: all 0.5s ease;
}

.primary-image {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.secondary-image {
    position: absolute;
    top: 60px;
    left: 60px;
    z-index: 1;
    opacity: 0.6;
}

.feature-image-wrapper {
    padding: 20px;
}

.feature-image {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 992px) {
    .features-item {
        margin-bottom: 60px;
    }

    .features h2 {
        font-size: 36px;
    }

    .features-item h3 {
        font-size: 28px;
    }

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

    .cta-button {
        font-size: 20px;
        padding: 12px 30px;
    }

    .secondary-image {
        top: 30px;
        left: 30px;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 40px 0;
    }

    .content-wrapper {
        padding: 20px;
    }

    .secondary-image {
        display: none;
    }
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
overflow: hidden;
}

.testimonials .testimonial-item {
box-sizing: content-box;
text-align: center;
min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
width: 90px;
border-radius: 50%;
margin: 0 auto;
}

.testimonials .testimonial-item h3 {
font-size: 18px;
font-weight: bold;
margin: 10px 0 5px 0;
color: #111;
}

.testimonials .testimonial-item h4 {
font-size: 14px;
color: #999;
margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
color: #c9e3f5;
font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
display: inline-block;
left: -5px;
position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
display: inline-block;
right: -5px;
position: relative;
top: 10px;
}

.testimonials .testimonial-item p {
font-style: italic;
margin: 0 15px 15px 15px;
padding: 20px;
background: #f3f9fd;
position: relative;
margin-bottom: 35px;
border-radius: 6px;
}

.testimonials .testimonial-item p::after {
content: "";
width: 0;
height: 0;
border-top: 20px solid #f3f9fd;
border-right: 20px solid transparent;
border-left: 20px solid transparent;
position: absolute;
bottom: -20px;
left: calc(50% - 20px);
}

.testimonials .swiper-pagination {
margin-top: 20px;
position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: #fff;
opacity: 1;
border: 1px solid #2487ce;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
background-color: #2487ce;
}
/*--------------------------------------------------------------
# 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-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    font-family: 'Montserrat', sans-serif;
}

.section-title h2 {
    color: #2c3e50;
    font-size: 42px;
    margin-bottom: 30px;
    position: relative;
}

.title-decoration {
    width: 80px;
    height: 4px;
    background: #7f8c8d;
    margin: 0 auto;
    border-radius: 2px;
}

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

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

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.faq-question button {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 25px 60px 25px 30px;
    font-size: 24px;
    color: #34495e;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question button:hover {
    color: #7f8c8d;
}

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

.faq-answer {
    padding: 20px 30px;
    font-size: 24px;
    line-height: 1.6;
    color: #5c6b7a;
    margin: 0;
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .faq-question button {
        font-size: 20px;
        padding: 20px 50px 20px 20px;
    }

    .faq-answer p {
        font-size: 18px;
        padding: 15px 20px;
    }

    .faq-item {
        margin-bottom: 15px;
    }
}
.contact-form-modern {
    width: 85%;
    max-width: 1200px;
    margin: 4rem auto;
    font-family: 'Montserrat', sans-serif;
}

.form-animate {
    background: #ffffff;
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.form-animate:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-icon {
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.form-header h3 {
    font-size: 32px;
    color: #4A5568;
    font-weight: 600;
    margin: 0;
}

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

.input-modern {
    font-size: 24px;
    padding: 1.2rem 1.5rem;
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.input-modern:focus {
    border-color: #4A5568;
    box-shadow: 0 0 0 3px rgba(74,85,104,0.2);
    outline: none;
}

.input-modern::placeholder {
    color: #A0AEC0;
}

textarea.input-modern {
    min-height: 200px;
    resize: none;
}

.btn-modern {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    background: #4A5568;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modern:hover {
    background: #2D3748;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74,85,104,0.3);
}

@media (max-width: 768px) {
    .contact-form-modern {
        width: 95%;
    }

    .form-animate {
        padding: 2rem;
    }

    .form-header h3 {
        font-size: 28px;
    }

    .input-modern, .btn-modern {
        font-size: 20px;
        padding: 1rem 1.2rem;
    }
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    background: #f8f9fa;
    padding: 100px 0;
    font-family: 'Montserrat', sans-serif;
}

.section-header {
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #3498db;
}

.section-header p {
    font-size: 24px;
    color: #7f8c8d;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.info-card:hover {
    transform: translateY(-10px);
}

.icon-wrapper {
    background: #3498db;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    color: white;
}

.content h3 {
    font-size: 24px;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
}

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

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 20px;
    }

    .info-card {
        padding: 30px;
        flex-direction: column;
        text-align: center;
    }

    .icon-wrapper {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
.footer {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
    padding: 4rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.copyright-section {
    text-align: center;
}

.brand-text {
    font-size: 24px;
    color: #555;
    font-weight: 500;
}

.contact-section {
    text-align: center;
    padding: 2rem 0;
}

.contact-info {
    font-size: 24px;
    color: #666;
}

.contact-info a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #333;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.footer-heading {
    font-size: 28px;
    color: #444;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.link-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    font-size: 24px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #333;
    transform: translateX(10px);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 24px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: #333;
    transform: translateX(10px);
}

.social-icon {
    fill: currentColor;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info {
        font-size: 20px;
    }

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

    .footer-link, .social-link {
        font-size: 20px;
    }

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