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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #de8af14d;
}

#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 Styles
--------------------------------------------------------------*/
:root {
    --header-bg: #f8f9fa;
    --primary-color: #4B5563;
    --primary-color-rgb: 75, 85, 99;
    --text-color: #374151;
    --nav-font: 'Montserrat', sans-serif;
    --transition: all 0.3s ease-in-out;
}

.header {
    background-color: var(--header-bg);
    padding: 20px 0;
    transition: var(--transition);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    font-size: 28px;
    color: var(--primary-color);
    transition: var(--transition);
}

.brand-title {
    font-family: var(--nav-font);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.nav-list {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    font-family: var(--nav-font);
    font-size: 16px;
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-getstarted {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: var(--nav-font);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.animate-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.animate-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Dropdown styles */
.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    display: none;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    border: none;
    margin-top: 15px;
    min-width: 200px;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    font-family: var(--nav-font);
    padding: 10px 25px;
    color: var(--text-color);
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
}

.bi-chevron-down {
    font-size: 12px;
    margin-left: 5px;
}

@media (max-width: 1200px) {
    .header {
        padding: 15px 0;
    }

    .nav-list {
        background: #ffffff;
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        flex-direction: column;
        padding: 20px;
        transition: var(--transition);
    }

    .mobile-nav-active .nav-list {
        left: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 15px 0;
        display: block;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        margin: 0;
        padding-left: 15px;
    }

    .btn-getstarted {
        margin-right: 50px;
    }

    .dropdown-menu {
        background: rgba(var(--primary-color-rgb), 0.05);
        border-radius: 8px;
        margin-top: 5px;
    }
}
/*--------------------------------------------------------------
# Modern Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    background: url("/img/image-background.png") center/cover no-repeat;
    position: relative;
    padding-top: 120px;
}

#hero:before {
    content: "";
    background: linear-gradient(135deg, rgba(83, 37, 198, 0.9), rgba(147, 37, 198, 0.7));
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
}

#hero h1 {
    margin: 0;
    font-size: 64px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

#hero h2 {
    color: rgba(255, 255, 255, 0.9);
    margin: 24px 0 0;
    font-size: 28px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 0.2s forwards;
}

#hero .btn-get-started {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 16px;
    transition: all 0.4s ease;
    margin-top: 40px;
    color: #fff;
    background: #7C3AED;
    border: none;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

#hero .btn-get-started:hover {
    background: #6D28D9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

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

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    #hero h1 {
        font-size: 40px;
    }

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

    .hero-content {
        padding: 2rem;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 130vh;
    }
}
.feature-section {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    font-size: 42px;
    color: #445566;
    font-weight: 600;
    margin-bottom: 3rem;
}

.feature-row {
    margin-bottom: 2rem;
}

.feature-image-wrapper {
    transition: transform 0.3s ease;
}

.feature-image-wrapper:hover {
    transform: translateY(-10px);
}

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

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

.feature-content {
    padding: 2rem;
}

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

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

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

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

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

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

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

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

    .feature-content {
        padding: 1rem;
    }

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

    .feature-description {
        font-size: 20px;
    }
}
/* Testimonials Section - Home Page
------------------------------*/
.testimonials {
    --background-color: #f4f4f4;
}

.testimonials .info h3 {
    font-weight: 700;
    font-size: 32px;
}

.testimonials .swiper {
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

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

.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 200px;
    position: relative;
    margin: 30px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50px;
    border: 6px solid var(--background-color);
    margin-right: 10px;
}

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

.testimonials .testimonial-item h4 {
    color: rgba(var(--default-color-rgb), 0.5);
    font-size: 14px;
    margin: 0;
}

.testimonials .testimonial-item .stars {
    margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: rgba(var(--primary-color-rgb), 0.4);
    font-size: 26px;
    line-height: 0;
}

.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;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
    height: auto;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(var(--default-color-rgb), 0.15);
    opacity: 1;
    border: none;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

@media (max-width: 767px) {
    .testimonials .testimonials-carousel,
    .testimonials .testimonials-slider {
        overflow: hidden;
    }

    .testimonials .testimonial-item {
        margin: 15px;
    }
}
.service-section {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
    padding: 80px 0;
}

.section-title {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 60px;
    position: relative;
    font-weight: 700;
}

.service-item {
    margin-bottom: 80px;
    padding: 40px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-content {
    padding: 30px;
    background-color: white;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.service-header h5 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
}

.service-text p {
    font-size: 24px;
    line-height: 1.6;
    color: #34495e;
    padding: 30px;
}

.custom-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 24px;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.custom-btn:hover {
    background-color: #2c3e50;
    color: white;
    transform: scale(1.05);
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-in forwards;
}

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

@media (max-width: 768px) {
    .service-item {
        margin-bottom: 40px;
        padding: 20px 10px;
    }
    
    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .service-header h5 {
        font-size: 24px;
    }
    
    .service-text p {
        font-size: 20px;
        padding: 15px;
    }
    
    .custom-btn {
        padding: 12px 30px;
        font-size: 20px;
    }
    
    .service-content {
        min-height: 200px;
        padding: 20px;
    }
}
/*--------------------------------------------------------------
# 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;
    }
}
#contact {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.contact-heading {
    font-size: 42px;
    font-weight: 600;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.contact-heading:hover {
    transform: scale(1.02);
}

.contact-form {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.custom-input {
    height: 60px;
    font-size: 24px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    padding-left: 50px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

textarea.custom-input {
    height: auto;
    padding-top: 15px;
}

.custom-input:focus {
    border-color: #6c757d;
    box-shadow: none;
    background-color: white;
}

.form-group {
    position: relative;
}

.input-icon, .textarea-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.textarea-icon {
    top: 25px;
}

.custom-button {
    font-size: 24px;
    padding: 15px 40px;
    border-radius: 12px;
    background-color: #6c757d;
    border: none;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-button:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

.button-arrow {
    transition: transform 0.3s ease;
}

.custom-button:hover .button-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .contact-heading {
        font-size: 32px;
    }

    .custom-input {
        font-size: 20px;
        height: 50px;
    }

    .custom-button {
        width: 100%;
        font-size: 20px;
        padding: 12px 30px;
    }
}
/*--------------------------------------------------------------
# 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;
    }
}
