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

#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
--------------------------------------------------------------*/
#header {
    background: rgba(78, 93, 108, 0.95);
    transition: all 0.4s ease-in-out;
    z-index: 997;
    height: 80px;
    font-family: 'Montserrat', sans-serif;
}

#header {
    background: #4e5d6c;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

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

#header .logo a {
    color: #ffffff;
    transition: color 0.3s ease;
}

#header .logo a:hover {
    color: #a8b9cc;
}

#header .logo img {
    max-height: 45px;
    border-radius: 8px;
}

.scrolled-offset {
    margin-top: 80px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
    padding: 0;
}

.nav-list {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
    transition: all 0.3s ease;
}

.navbar > ul > li {
    margin-left: 8px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 18px;
    font-size: 15px;
    color: #ffffff;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.navbar a i {
    font-size: 12px;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    background: #7291b6;
    color: #ffffff;
}

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

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

.navbar .dropdown ul a {
    padding: 12px 20px;
    color: #4e5d6c;
    font-size: 14px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #ffffff;
    background: #7291b6;
}

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

/* Mobile Navigation */
.mobile-nav-toggle {
    color: #ffffff;
    font-size: 26px;
    cursor: pointer;
    display: none;
    transition: 0.3s ease;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }

    .navbar-mobile {
        position: fixed;
        overflow: hidden;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background: rgba(78, 93, 108, 0.9);
        transition: 0.3s ease;
        z-index: 999;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 15px;
        background-color: #ffffff;
        overflow-y: auto;
        border-radius: 10px;
        transition: 0.3s ease;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 15px;
        font-size: 15px;
        color: #4e5d6c;
    }

    .navbar-mobile a:hover,
    .navbar-mobile .active,
    .navbar-mobile li:hover > a {
        color: #ffffff;
        background: #7291b6;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        opacity: 1;
        visibility: visible;
        background: #f8f9fa;
        box-shadow: none;
    }
}
/*--------------------------------------------------------------
# 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;
    }
}
/*--------------------------------------------------------------
# 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;
    }
}
.reviews {
  display: flex;
  flex-direction: row;
  justify-content: center;
  max-width: 100% !important;
}

.review-wrap {
    display: flex;
    flex-direction: column;
    color: #fff;
    width: calc(30% - 20px) !important;
    background-color: #222222d9;
    border-radius: 20px;
    margin: 0 10px;
    padding: 50px 0;
}

@media only screen and (max-width: 900px) {
      .reviews {
          flex-direction: column;
          margin: 0 auto;
      }
      .review-wrap {
          width: calc(100% - 20px) !important;
          margin: 10px 0;

      }
  }
.service-container {
-webkit-transition: all 0.5s ease;
transition: all 0.5s ease;
}

.service-container .icon {
margin-top: 5%;
font-size: 38px;
-webkit-transition: all 0.5s ease;
transition: all 0.5s ease;
}

.service-container .number-icon .icon-2 {
height: 70px;
width: 70px;
line-height: 80px;
border-radius: 64% 36% 55% 45% / 76% 72% 28% 24% !important;
border-color: #f89d36 !important;
-webkit-transition: all 0.5s ease;
transition: all 0.5s ease;
}

.service-container .number-icon .icon-2 i {
font-size: 30px;
}

.service-container .number-icon .number {
position: absolute;
top: 0;
right: 70px;
left: 0;
height: 35px;
width: 35px;
margin: 0 auto;
-webkit-transition: all 0.5s ease;
transition: all 0.5s ease;
}

.service-container .number-icon .number span {
line-height: 30px;
}

.service-container .content .number {
font-size: 40px;
color: #dee2e6;
}

.service-container .content .title {
-webkit-transition: all 0.5s ease;
transition: all 0.5s ease;
}

.service-container.hover-bg {
-webkit-transition: all 0.5s ease;
transition: all 0.5s ease;
}

.service-container.hover-bg .smooth-icon {
position: absolute;
bottom: -40px;
right: -20px;
font-size: 60px;
color: #f8f9fa;
-webkit-transition: all 0.8s ease;
transition: all 0.8s ease;
}

.service-container.hover-bg:hover {
background-color: #f89d36;
}

.service-container.hover-bg:hover .content .title {
color: #ffffff !important;
}

.service-container.hover-bg:hover .content .serv-pera {
color: #fafafb !important;
}

.service-container.hover-bg:hover .smooth-icon {
font-size: 100px;
opacity: 0.2;
bottom: -20px;
right: 10px;
}

.service-container:hover {
background-color: #ffffff;
-webkit-box-shadow: 0 10px 25px rgba(47, 60, 78, 0.15) !important;
        box-shadow: 0 10px 25px rgba(47, 60, 78, 0.15) !important;
}

.service-container:hover .icon {
color: #f89d36;
-webkit-animation: mover 1s infinite alternate;
        animation: mover 1s infinite alternate;
}

.service-container:hover .number-icon .icon-2 {
background-color: #f89d36;
border-radius: 50% !important;
}

.service-container:hover .number-icon .icon-2 i {
color: #ffffff !important;
}

.service-container:hover .number-icon .number {
color: #ffffff;
background: #f89d36 !important;
border-color: #ffffff !important;
}

.service-container:hover .content .title {
color: #f89d36;
}

.service-container a:hover,
.service-container a .title:hover {
color: #f89d36 !important;
}

@-webkit-keyframes mover {
0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
}
100% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
}
}

@keyframes mover {
0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
}
100% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
}
}

.service-wrapper {
-webkit-transition: all 0.5s ease;
transition: all 0.5s ease;
}

.service-wrapper .icon {
width: 60px;
height: 60px;
line-height: 45px;
-webkit-transition: all 0.5s ease;
transition: all 0.5s ease;
}

.service-wrapper .content .title {
-webkit-transition: all 0.5s ease;
transition: all 0.5s ease;
font-weight: 500;
}

.service-wrapper .big-icon {
position: absolute;
right: 0;
bottom: 0;
opacity: 0.05;
-webkit-transition: all 0.5s ease;
transition: all 0.5s ease;
}

.service-wrapper:hover {
-webkit-box-shadow: 0 10px 25px rgba(47, 60, 78, 0.15) !important;
        box-shadow: 0 10px 25px rgba(47, 60, 78, 0.15) !important;
background: #ffffff;
-webkit-transform: translateY(-8px);
        transform: translateY(-8px);
border-color: transparent !important;
}

.service-wrapper:hover .icon {
background: #0062ff !important;
color: #ffffff !important;
}

.service-wrapper:hover .big-icon {
z-index: -1;
opacity: 0.1;
font-size: 160px;
}

.text-custom {
    color: #0062ff !important;
}

.uim-svg {
    display: inline-block;
    height: 1em;
    vertical-align: -0.125em;
    font-size: inherit;
    fill: var(--uim-color, currentColor);
}
/*--------------------------------------------------------------
# Modern FAQ Section Styles
--------------------------------------------------------------*/
.faq-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    font-family: 'Montserrat', sans-serif;
}

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

.title-decoration {
    width: 80px;
    height: 4px;
    background: #7f8c8d;
    margin: 0 auto;
    border-radius: 2px;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.faq-question button {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 25px 60px 25px 30px;
    font-size: 24px;
    color: #34495e;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question button:hover {
    color: #7f8c8d;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    stroke: #7f8c8d;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 20px 30px;
    font-size: 24px;
    line-height: 1.6;
    color: #5c6b7a;
    margin: 0;
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }

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

    .faq-question button {
        font-size: 20px;
        padding: 20px 50px 20px 20px;
    }

    .faq-answer p {
        font-size: 18px;
        padding: 15px 20px;
    }

    .faq-item {
        margin-bottom: 15px;
    }
}
#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;
    }
}
/*** 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;
    }
}
