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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #9f97da4d;
}

#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 {
    transition: all 0.4s ease;
    background: #f8f9fa;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#header.header-scrolled {
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
    font-size: 24px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

#header .logo a {
    color: #445361;
    text-decoration: none;
    transition: color 0.3s ease;
}

#header .logo a:hover {
    color: #6c757d;
}

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

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

.navbar li {
    position: relative;
    margin: 0 5px;
}

.navbar a {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    color: #445361;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.navbar a:hover,
.navbar .active {
    color: #6c757d;
    background: rgba(108, 117, 125, 0.1);
}

.navbar .getstarted {
    background: #6c757d;
    color: #fff;
    padding: 12px 25px;
    margin-left: 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(108, 117, 125, 0.3);
}

.navbar .getstarted:hover {
    background: #545b62;
    transform: translateY(-2px);
}

/* Dropdown styles */
.navbar .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    padding: 15px 0;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.navbar .dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.navbar .dropdown-item {
    padding: 10px 25px;
    color: #445361;
    font-size: 14px;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    margin-left: 20px;
}

.mobile-nav-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #445361;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-nav-toggle span:nth-child(1) { top: 0; }
.mobile-nav-toggle span:nth-child(2) { top: 10px; }
.mobile-nav-toggle span:nth-child(3) { top: 20px; }

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

    .nav-list {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    }

    .navbar li {
        margin: 10px 0;
    }

    .navbar a {
        padding: 15px;
        justify-content: center;
    }

    .navbar .getstarted {
        margin: 15px 0;
    }

    .navbar .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        margin: 10px 0;
        display: none;
    }

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

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

.navbar a {
    animation: fadeIn 0.5s ease forwards;
}
/*--------------------------------------------------------------
# Modern Hero Section with Dynamic Styling
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    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, 39, 219, 0.8), rgba(187, 39, 219, 0.8));
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.5s ease;
}

#hero .hero-container {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

#hero .hero-content {
    max-width: 1200px;
    text-align: center;
}

#hero h3 {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 28px;
    padding: 1.5rem 3rem;
    margin-bottom: 3rem;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

#hero h1 {
    margin: 0 0 1.5rem 0;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#hero h2 {
    color: #fff;
    margin-bottom: 3rem;
    font-size: 32px;
    font-weight: 400;
    opacity: 0.9;
}

#hero .btn-get-started {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    border-radius: 100px;
    transition: all 0.4s ease;
    border: 3px solid #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

#hero .btn-get-started:hover {
    background: #fff;
    color: #4727db;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Animations */
.animate-slide-down {
    animation: slideDown 1s ease-out;
}

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

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

.animate-pulse {
    animation: pulse 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 slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 1024px) {
    #hero h1 {
        font-size: 48px;
    }
    
    #hero h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    #hero h3 {
        font-size: 24px;
        padding: 1rem 2rem;
    }

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

    #hero h2 {
        font-size: 24px;
        margin-bottom: 2rem;
    }

    #hero .btn-get-started {
        font-size: 20px;
        padding: 1rem 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;
    }
}
.team .member {
text-align: center;
margin-bottom: 20px;
box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
padding: 30px 20px;
background: #fff;
}

.team .member img {
max-width: 60%;
border-radius: 50%;
margin: 0 0 30px 0;
}

.team .member h4 {
font-weight: 700;
margin-bottom: 2px;
font-size: 18px;
}

.team .member span {
font-style: italic;
display: block;
font-size: 13px;
}

.team .member p {
padding-top: 10px;
font-size: 14px;
font-style: italic;
color: #aaaaaa;
}

.team .member .social {
margin-top: 15px;
}

.team .member .social a {
color: #919191;
transition: 0.3s;
}

.team .member .social a:hover {
color: #cc1616;
}

.team .member .social i {
font-size: 18px;
margin: 0 2px;
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.services .section-title h2 {
    color: #2d4356;
    font-size: 42px;
    margin-bottom: 30px;
}

.services .service-card {
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services .service-card:hover {
    transform: translateY(-10px);
    background: #2d4356;
}

.services .icon {
    width: 80px;
    height: 80px;
    background: #f0f4f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.services .icon svg {
    stroke: #2d4356;
    transition: all 0.4s ease;
}

.services .service-card:hover .icon {
    background: #ffffff;
}

.services .service-card:hover .icon svg {
    stroke: #2d4356;
}

.services .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.services .title a {
    color: #2d4356;
    text-decoration: none;
    transition: all 0.4s ease;
}

.services .description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    transition: all 0.4s ease;
}

.services .service-card:hover .title a,
.services .service-card:hover .description {
    color: #ffffff;
}

@media (max-width: 768px) {
    .services .section-title h2 {
        font-size: 32px;
    }
    
    .services .service-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .services .icon {
        width: 60px;
        height: 60px;
    }
    
    .services .title {
        font-size: 20px;
    }
    
    .services .description {
        font-size: 14px;
    }
}
/*--------------------------------------------------------------
# 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;
    padding: 4rem 0;
}

.contact-card {
    transition: transform 0.3s ease;
    background: #ffffff;
}

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

.gradient-text {
    background: linear-gradient(45deg, #4a4a4a, #757575);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.form-label {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.form-control {
    font-size: 1.1rem;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #757575;
    box-shadow: 0 0 0 0.2rem rgba(117, 117, 117, 0.25);
}

.input-animate {
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.input-animate:focus {
    transform: translateY(-2px);
}

.custom-btn {
    background: linear-gradient(45deg, #4a4a4a, #757575);
    border: none;
    color: white;
    font-size: 1.2rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    background: linear-gradient(45deg, #757575, #4a4a4a);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.success-message {
    color: #28a745;
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

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

@media (max-width: 768px) {
    .gradient-text {
        font-size: 2rem;
    }
    
    .form-control {
        font-size: 1rem;
    }
    
    .custom-btn {
        font-size: 1.1rem;
    }
    
    .card-body {
        padding: 1.5rem !important;
    }
}
/*--------------------------------------------------------------
# Contact Section Styles
--------------------------------------------------------------*/
.contact {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #3498db;
    border-radius: 2px;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3498db;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.icon {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.info-card:hover .icon-wrapper {
    transform: scale(1.1);
    background: #2980b9;
}

.title {
    font-size: 24px;
    color: #2c3e50;
    margin: 1rem 0;
    font-weight: 600;
}

.content {
    font-size: 18px;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .info-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .icon {
        width: 30px;
        height: 30px;
    }

    .title {
        font-size: 20px;
    }

    .content {
        font-size: 16px;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
/*--------------------------------------------------------------
# Modern Footer Styles
--------------------------------------------------------------*/
.footer {
    background-color: #2d3436;
    padding: 80px 0 30px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    line-height: 1.6;
}

.footer-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.footer svg {
    margin-right: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.footer h4 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #dfe6e9;
    border-radius: 2px;
}

.footer .info-content p {
    margin: 0;
    font-size: 24px;
}

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

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

.footer .footer-links ul a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 24px;
    position: relative;
    padding-left: 20px;
}

.footer .footer-links ul a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer .footer-links ul a:hover {
    color: #fff;
    padding-left: 25px;
}

.footer .footer-links ul a:hover::before {
    opacity: 1;
    transform: translateX(5px);
}

.footer .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: #fff;
}

.footer .copyright {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 20px;
}

.footer .copyright strong {
    color: #fff;
}

@media (max-width: 768px) {
    .footer {
        font-size: 20px;
        padding: 50px 0 20px;
    }

    .footer h4 {
        font-size: 24px;
    }

    .footer .info-content p,
    .footer .footer-links ul a {
        font-size: 20px;
    }

    .footer-item {
        padding: 20px;
    }

    .footer .social-links a {
        width: 40px;
        height: 40px;
    }
}
