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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #2ebf214d;
}

#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 Section - Modern Design with Animations
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 90vh;
    background: url('/img/image-background.png') top center;
    background-size: cover;
    background-position: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(71, 39, 219, 0.8), rgba(187, 39, 219, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

#hero h1 {
    margin: 0 0 2rem 0;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
    border-radius: 15px;
    padding: 1rem;
}

#hero h2 {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: 400;
    font-family: 'Raleway', sans-serif;
    line-height: 1.4;
}

.scroll-indicator {
    position: relative;
    z-index: 2;
}

#hero .btn-get-started {
    display: inline-block;
    transition: all 0.4s ease;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 1rem;
    backdrop-filter: blur(5px);
}

#hero .btn-get-started:hover {
    transform: translateY(10px);
    background: rgba(255, 255, 255, 0.2);
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.animate-fade-down {
    animation: fadeInDown 1s ease-out;
}

.animate-fade-up {
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

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

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

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

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

@media (max-width: 768px) {
    #hero {
        height: 100vh;
        padding: 1rem;
    }

    #hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    #hero h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 2rem;
    }
}
.feature-section {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    font-size: 48px;
    color: #2d3436;
    font-weight: 700;
    margin-bottom: 3rem;
}

.feature-row {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 2rem 0;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-heading {
    font-size: 36px;
    color: #2d3436;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.feature-image {
    flex: 1;
}

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

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

.animate-slide {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 0.8s ease forwards;
}

.animate-fade {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@media (max-width: 768px) {
    .feature-row {
        flex-direction: column;
        gap: 2rem;
    }

    .feature-row.reverse {
        flex-direction: column;
    }

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

    .feature-heading {
        font-size: 30px;
    }

    .feature-text {
        font-size: 20px;
    }
}
/*--------------------------------------------------------------
# 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%;
}
}
/*--------------------------------------------------------------
# Modern Services Section
--------------------------------------------------------------*/
.services-modern {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    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 20px 40px rgba(0,0,0,0.1);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: #7B68EE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
    transform: rotate(360deg);
    background: #6A5ACD;
}

.service-icon {
    width: 40px;
    height: 40px;
    stroke: #fff;
    stroke-width: 2;
}

.service-card h3 {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.service-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #7B68EE;
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 100px;
}

.service-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-link {
    color: #7B68EE;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #6A5ACD;
}

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

.service-link:hover .arrow {
    transform: translateX(10px);
}

@media (max-width: 768px) {
    .service-card {
        padding: 2rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .service-icon {
        width: 30px;
        height: 30px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .service-card p {
        font-size: 14px;
    }
}
/*--------------------------------------------------------------
# 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-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;
    }
}
.bg-light {
    background-color: #f8f9fa !important;
    font-family: 'Montserrat', sans-serif;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
}

.contact-card {
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 32px;
    height: 32px;
}

.info-text {
    font-size: 24px;
    color: #4B5563;
    margin: 0;
}

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

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

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

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

@media (max-width: 991.98px) {
    .contact-card {
        padding: 2rem;
    }

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

    .contact-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 575.98px) {
    .contact-card {
        padding: 1.5rem;
    }

    .info-text {
        font-size: 18px;
    }

    .contact-icon {
        width: 24px;
        height: 24px;
    }
}
/*--------------------------------------------------------------
# Modern Footer Styles
--------------------------------------------------------------*/
.footer {
    --footer-bg: #f8f9fa;
    --text-color: #4a4a4a;
    --accent-color: #3498db;
    --hover-color: #2980b9;
    --heading-color: #2c3e50;
    
    background-color: var(--footer-bg);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    padding: 80px 0;
    border-radius: 30px 30px 0 0;
    transition: all 0.3s ease;
}

.animate-footer {
    animation: slideUp 0.8s ease-out;
}

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

.footer .footer-top {
    padding: 40px 0;
}

.footer .brand-text {
    color: var(--heading-color);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-family: 'Oswald', sans-serif;
    transition: color 0.3s ease;
}

.footer .social-links {
    gap: 20px;
}

.footer .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.footer .social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.footer .social-icon svg {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.footer h4 {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    font-family: 'Raleway', sans-serif;
}

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

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

.footer .hover-effect {
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.footer .hover-effect::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.footer .hover-effect:hover {
    color: var(--accent-color);
}

.footer .hover-effect:hover::after {
    width: 100%;
}

.footer .contact-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.footer .contact-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer .contact-info strong {
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .footer {
        font-size: 20px;
        padding: 40px 0;
    }
    
    .footer h4 {
        font-size: 24px;
    }
    
    .footer .brand-text {
        font-size: 30px;
    }
    
    .footer .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer .contact-info {
        padding: 20px;
    }
}
