@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: #69998d4d;
}

#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;
}
.modern-header {
    background: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.brand-link {
    text-decoration: none;
    color: #555;
    transition: all 0.3s ease;
}

.brand-link:hover {
    color: #333;
    transform: translateY(-2px);
}

.brand-icon {
    font-size: 1.8rem;
    color: #666;
}

.brand-name {
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

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

.nav-link {
    color: #666;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.nav-link:hover {
    color: #333;
    background: rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

.dropdown-menu {
    border-radius: 12px;
    border: none;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    padding: 0.8rem 0;
    margin-top: 10px;
}

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

.dropdown-item:hover {
    background: rgba(0,0,0,0.05);
    color: #333;
}

.animated {
    animation: fadeIn 0.3s ease;
}

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

@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-item {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        width: 100%;
        text-align: center;
    }
}
#hero {
    width: 100%;
    height: calc(100vh - 110px);
    background: url("/img/image-background.png") top center;
    background-size: cover;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

#hero:before {
    content: "";
    background: linear-gradient(135deg, rgba(71, 19, 184, 0.8), rgba(37, 117, 252, 0.7));
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0 0 30px 30px;
}

#hero .hero-content {
    padding: 60px 0;
    text-align: left;
}

#hero h1 {
    margin: 0 0 20px 0;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

#hero h2 {
    color: #fff;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

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

#hero .btn-get-started:hover {
    background: #4713b8;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(71, 19, 184, 0.3);
}

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

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

.animate-slide-down {
    animation: slideDown 1s ease-out;
}

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

.animate-bounce {
    animation: bounce 2s infinite;
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

@media (max-width: 768px) {
    #hero {
        text-align: center;
    }

    #hero .container {
        padding-top: 60px;
    }

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

    #hero h2 {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 30px;
    }

    #hero .btn-get-started {
        font-size: 20px;
        padding: 14px 28px;
    }
}
/*--------------------------------------------------------------
# About Section Styles
--------------------------------------------------------------*/
.about-section {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.section-title h2 {
    color: #445069;
    font-size: 48px;
    margin-bottom: 2rem;
}

.feature-block {
    margin: 4rem 0;
}

.feature-title {
    font-size: 32px;
    font-weight: 700;
    color: #445069;
    margin-bottom: 1.5rem;
}

.feature-text {
    font-size: 24px;
    line-height: 1.6;
    color: #667085;
}

.image-wrapper {
    overflow: hidden;
    border-radius: 1rem;
}

.hover-scale {
    transition: transform 0.5s ease;
}

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

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

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

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

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

/* Responsive */
@media (max-width: 992px) {
    .section-title h2 {
        font-size: 36px;
    }

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

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

    .feature-block {
        margin: 2rem 0;
    }
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
padding: 80px 0;
color: #000;
}

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

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
overflow: hidden;
}

.testimonials .testimonial-item {
text-align: center;
color: #000;
}

.testimonials .testimonial-item .testimonial-img {
width: 100px;
border-radius: 50%;
border: 6px solid rgba(255, 255, 255, 0.15);
margin: 0 auto;
}

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
color: rgba(0, 0, 0, 0.6);
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 auto 15px auto;
color: #000;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: rgba(255, 255, 255, 0.4);
opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
background-color: #ffc451;
opacity: 1;
}

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

@media (min-width: 992px) {
.testimonials .testimonial-item p {
    width: 80%;
}
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
    background-color: #f8f9fa;
    padding: 80px 0;
    font-family: 'Montserrat', sans-serif;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2d4356;
    margin-bottom: 20px;
}

.section-title h3 {
    font-size: 32px;
    color: #435b71;
}

.section-title span {
    color: #667eea;
}

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

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

.service-card .icon {
    margin-bottom: 25px;
}

.service-card .icon svg {
    color: #667eea;
    transition: all 0.3s ease;
}

.service-card:hover .icon svg {
    color: #435b71;
    transform: scale(1.1);
}

.service-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-card h4 a {
    color: #2d4356;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card:hover h4 a {
    color: #667eea;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

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

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

    .section-title h3 {
        font-size: 24px;
    }

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

    .service-card h4 {
        font-size: 20px;
    }
}
/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq-section {
    background: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.section-title h2 {
    color: #4a5568;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

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

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

.faq-question {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.question-icon {
    color: #6b7280;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.question-btn {
    background: none;
    border: none;
    color: #4a5568;
    font-size: 1.25rem;
    font-weight: 500;
    text-align: left;
    flex-grow: 1;
    padding: 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.question-btn:hover {
    color: #3b82f6;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.arrow-icon::before,
.arrow-icon::after {
    content: '';
    position: absolute;
    background-color: #6b7280;
    width: 2px;
    height: 12px;
    transition: transform 0.3s ease;
}

.arrow-icon::before {
    transform: rotate(45deg);
    right: 10px;
}

.arrow-icon::after {
    transform: rotate(-45deg);
    right: 4px;
}

.question-btn.active + .arrow-icon::before {
    transform: rotate(-45deg);
}

.question-btn.active + .arrow-icon::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-answer.show {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-container {
        padding: 0 15px;
    }

    .question-btn {
        font-size: 1.125rem;
    }

    .faq-answer p {
        font-size: 1rem;
    }
}
#contact {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.contact-form {
    transition: all 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
}

.form-label {
    font-size: 24px;
    color: #495057;
    font-weight: 500;
}

.form-control {
    font-size: 18px;
    padding: 12px;
    border-radius: 12px;
    border-color: #dee2e6;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.25);
    border-color: #6c757d;
}

.input-group-text {
    border-radius: 12px 0 0 12px;
    border-color: #dee2e6;
}

.submit-btn {
    background-color: #6c757d;
    border: none;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #495057;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .form-label {
        font-size: 20px;
    }
    
    .form-control {
        font-size: 16px;
    }
    
    .contact-form {
        padding: 1.5rem !important;
    }
}
.contact {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

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

.contact .info-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.contact .info-icon {
    color: #3498db;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.contact .info-card:hover .info-icon {
    transform: scale(1.1);
}

.contact .info-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact .info-card p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

    .contact .info-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

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

    .contact .info-card p {
        font-size: 16px;
    }
}

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

.contact [data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.contact [data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
