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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #3a9d6a4d;
}

#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);
    }
}
#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;
    }
}
.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;
    }
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
text-align: center;
padding: 70px 20px 80px 20px;
transition: all ease-in-out 0.3s;
background: #fff;
box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}

.services .icon-box .icon {
margin: 0 auto;
width: 100px;
height: 100px;
display: flex;
align-items: center;
justify-content: center;
transition: ease-in-out 0.3s;
position: relative;
}

.services .icon-box .icon i {
font-size: 36px;
transition: 0.5s;
position: relative;
}

.services .icon-box .icon svg {
position: absolute;
top: 0;
left: 0;
}

.services .icon-box .icon svg path {
transition: 0.5s;
fill: #f5f5f5;
}

.services .icon-box h4 {
font-weight: 600;
margin: 10px 0 15px 0;
font-size: 22px;
}

.services .icon-box h4 a {
color: #124265;
transition: ease-in-out 0.3s;
}

.services .icon-box p {
line-height: 24px;
font-size: 14px;
margin-bottom: 0;
}

.services .icon-box:hover {
border-color: #fff;
box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
color: #fff;
}

.services .iconbox-blue:hover .icon path {
fill: #47aeff;
}

.services .iconbox-orange i {
color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
color: #fff;
}

.services .iconbox-orange:hover .icon path {
fill: #ffa76e;
}

.services .iconbox-pink i {
color: #e80368;
}

.services .iconbox-pink:hover .icon i {
color: #fff;
}

.services .iconbox-pink:hover .icon path {
fill: #e80368;
}

.services .iconbox-yellow i {
color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
color: #fff;
}

.services .iconbox-yellow:hover .icon path {
fill: #ffbb2c;
}

.services .iconbox-red i {
color: #ff5828;
}

.services .iconbox-red:hover .icon i {
color: #fff;
}

.services .iconbox-red:hover .icon path {
fill: #ff5828;
}

.services .iconbox-teal i {
color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
color: #fff;
}

.services .iconbox-teal:hover .icon path {
fill: #11dbcf;
}
/* FAQ Section Styles */
.faq-section {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
    padding: 80px 0;
}

.faq-title-wrapper {
    text-align: left;
    position: sticky;
    top: 20px;
}

.faq-icon {
    fill: #6c757d;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.faq-title-wrapper h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.faq-item summary {
    padding: 24px;
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    position: relative;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    font-size: 28px;
    color: #6c757d;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.number {
    color: #6c757d;
    font-size: 28px;
    font-weight: 700;
    min-width: 40px;
}

.faq-content {
    padding: 0 24px 24px 80px;
    animation: slideDown 0.3s ease-out;
}

.faq-content p {
    font-size: 24px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

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

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

@media (max-width: 991.98px) {
    .faq-title-wrapper {
        text-align: center;
        margin-bottom: 40px;
        position: static;
    }

    .faq-title-wrapper h2 {
        font-size: 36px;
    }

    .faq-item summary {
        font-size: 20px;
        padding: 20px;
    }

    .faq-content {
        padding: 0 20px 20px 60px;
    }

    .faq-content p {
        font-size: 20px;
    }

    .number {
        font-size: 24px;
        min-width: 32px;
    }
}
section#contact {
    background-color: #fff;
    padding: 5% 0;
}
section#contact .section-heading {
    color: #000;
    font-weight: 600;
    padding: 5% 0;
}
section#contact form#contactForm .form-group {
    margin-bottom: 1.5rem;
}
section#contact form#contactForm .form-group input,
section#contact form#contactForm .form-group textarea {
    padding: 1.25rem;
}
section#contact form#contactForm .form-group input.form-control {
    height: auto;
}
section#contact form#contactForm .form-group-textarea {
    height: 100%;
}
section#contact form#contactForm .form-group-textarea textarea {
    height: 100%;
    min-height: 10rem;
}
section#contact form#contactForm p.help-block {
    margin: 0;
}
section#contact form#contactForm .form-control:focus {
    border-color: #ffc800;
    box-shadow: none;
}
section#contact form#contactForm ::-webkit-input-placeholder {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
    font-weight: 700;
    color: #ced4da;
}
section#contact form#contactForm :-moz-placeholder {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
    font-weight: 700;
    color: #ced4da;
}
section#contact form#contactForm ::-moz-placeholder {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
    font-weight: 700;
    color: #ced4da;
}
section#contact form#contactForm :-ms-input-placeholder {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
    font-weight: 700;
    color: #ced4da;
}
/*** Global Styles ***/
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa;
}

/*** Newsletter ***/
.newsletter-section {
    background-color: #6c757d;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(108, 117, 125, 0.95), rgba(108, 117, 125, 0.8));
    z-index: 1;
}

.newsletter-section .container {
    position: relative;
    z-index: 2;
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.badge {
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    font-weight: 500;
}

.btn-subscribe {
    width: 60px;
    height: 60px;
    background-color: #fff;
    color: #6c757d;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background-color: #6c757d;
    color: #fff;
    transform: rotate(45deg);
}

/*** Footer ***/
.footer-section {
    background-color: #212529;
}

.footer-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background-color: #fff;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #fff;
    padding-left: 1.5rem;
}

.footer-link:hover::before {
    width: 0.75rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.copyright {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-menu {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: #fff;
}

/*** Animations ***/
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: var(--delay, 0s);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1s ease forwards;
}

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

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

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

/*** Responsive ***/
@media (max-width: 768px) {
    .footer-menu {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .py-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .fs-5 {
        font-size: 1rem !important;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}
