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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #0581af4d;
}

#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
--------------------------------------------------------------*/
:root {
    --primary-color: #4a5568;
    --hover-color: #2d3748;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Raleway', sans-serif;
}

.topbar {
    height: 50px;
    font-size: 15px;
    transition: all 0.4s ease;
    color: var(--primary-color);
    padding: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.topbar .contact-info i {
    font-style: normal;
    color: var(--primary-color);
    line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
    padding-left: 8px;
    color: var(--primary-color);
}

.topbar .social-links a {
    color: var(--primary-color);
    line-height: 0;
    transition: transform 0.3s ease;
    margin-left: 25px;
    font-size: 16px;
}

.hover-effect:hover {
    transform: translateY(-3px);
    color: var(--hover-color);
}

.header {
    transition: all 0.5s;
    z-index: 997;
    height: 100px;
    color: var(--primary-color);
    background-color: #f8f9fa;
}

.header.sticked {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 80px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header .logo h1 {
    font-size: 32px;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-family: var(--font-primary);
}

.header .logo i {
    margin-right: 10px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
    .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,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3px;
        font-family: var(--font-secondary);
        font-size: 16px;
        font-weight: 600;
        color: var(--primary-color);
        transition: 0.3s ease;
        position: relative;
    }

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

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

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

    .navbar .dropdown ul li {
        min-width: 220px;
    }

    .navbar .dropdown ul a {
        padding: 12px 20px;
        font-size: 15px;
        font-weight: 500;
        color: var(--primary-color);
    }

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

/* Mobile Navigation */
@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

    .navbar ul {
        position: absolute;
        inset: 0;
        padding: 60px 0 10px 0;
        margin: 0;
        background: rgba(74, 85, 104, 0.95);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navbar a {
        padding: 12px 20px;
        font-size: 16px;
        color: #fff;
        display: flex;
        align-items: center;
    }

    .navbar .dropdown ul {
        position: static;
        display: none;
        padding: 10px 0;
        margin: 10px 20px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }

    .mobile-nav-active .navbar {
        right: 0;
    }
}

/* Animations */
.animate__animated {
    animation-duration: 1s;
}

.animate__fadeIn {
    animation-name: fadeIn;
}

.animate__fadeInLeft {
    animation-name: fadeInLeft;
}

.animate__fadeInRight {
    animation-name: fadeInRight;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
/*--------------------------------------------------------------
# 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: 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 Section
--------------------------------------------------------------*/
.testimonials .section-header {
margin-bottom: 40px;
}

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

.testimonials .testimonial-item .testimonial-content {
border-left: 3px solid var(--color-primary);
padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
border-radius: 50%;
border: 4px solid #fff;
margin: 0 auto;
}

.testimonials .testimonial-item h3 {
font-size: 20px;
font-weight: bold;
margin: 10px 0 5px 0;
color: var(--color-default);
font-family: var(--font-secondary);
}

.testimonials .testimonial-item h4 {
font-size: 14px;
color: #6c757d;
margin: 0 0 10px 0;
font-family: var(--font-secondary);
}

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
color: #f05656;
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;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: #d1d1d7;
opacity: 1;
}

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

.contact {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact_right {
    background: #6c757d;
    padding: 60px 40px;
    border-radius: 20px;
    color: white;
    transition: all 0.3s ease;
}

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

.contact-info {
    text-align: center;
}

.contact-icon {
    margin-bottom: 30px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info h4 {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 400;
}

.contact_left {
    padding: 40px;
}

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

.form-control {
    height: 60px;
    font-size: 18px;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #6c757d;
    box-shadow: none;
}

textarea.form-control {
    height: 160px;
    resize: none;
}

.submit-btn {
    background: #6c757d;
    border: none;
    padding: 15px 40px;
    font-size: 24px;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #495057;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.animate-text-delay {
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: backwards;
}

.input-animate {
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

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

@media (max-width: 768px) {
    .contact {
        padding: 20px;
    }
    
    .contact_right, .contact_left {
        padding: 30px;
    }
    
    .contact-info h2 {
        font-size: 28px;
    }
    
    .contact-info h4 {
        font-size: 20px;
    }
    
    .contact-form label {
        font-size: 20px;
    }
    
    .form-control {
        height: 50px;
        font-size: 16px;
        padding: 15px;
    }
    
    .submit-btn {
        font-size: 20px;
        padding: 12px 30px;
    }
}
.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;
    }
}
.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;
    }
}
