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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #66697d4d;
}

#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(71, 85, 105, 0.95);
    transition: all 0.4s ease-in-out;
    z-index: 997;
    height: 90px;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
    font-size: 26px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1.5px;
}

.modern-logo {
    color: #fff !important;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 12px;
}

.modern-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

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

.navbar li {
    position: relative;
}

.navbar>ul>li {
    padding: 10px 5px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.hover-effect:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

.navbar .active {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

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

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

.navbar .dropdown ul a {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #2a2a2a;
}

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

.dropdown-item:hover {
    background: #f8f9fa !important;
}

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

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

    .navbar ul {
        display: none;
    }
    
    #header {
        height: 80px;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(71, 85, 105, 0.98);
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
    z-index: 999;
}

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

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

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px;
    border-radius: 8px;
    background: #f8f9fa;
    box-shadow: none;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}
/*** Modern Hero Section ***/
.hero-section {
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.hero-content {
    padding: 4rem 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn-primary-custom, .btn-secondary-custom {
    padding: 1rem 2rem;
    font-size: 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-custom {
    background: #ffffff;
    color: #FF6B6B;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

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

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

.floating-animation {
    animation: floating 3s ease-in-out infinite;
    border-radius: 20px;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 991.98px) {
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
}

[data-aos] {
    opacity: 0;
    transition-duration: 1s;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); opacity: 0.8; }
    70% { transform: scale(0.9); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
.bg-neutral {
    background-color: #f8f9fa;
}

.content-block {
    padding: 2rem;
}

.content-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    line-height: 1.8;
    color: #666;
}

.custom-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    padding: 1rem 2.5rem;
    background: #7952b3;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    background: #614092;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(121, 82, 179, 0.4);
    color: #fff;
}

.image-wrapper {
    position: relative;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.image-wrapper:hover {
    transform: scale(1.02);
}

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

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

@media (max-width: 991.98px) {
    .content-text {
        font-size: 1.25rem;
    }
    
    .custom-btn {
        font-size: 1.1rem;
        padding: 0.8rem 2rem;
    }
    
    .content-block {
        padding: 1rem;
    }
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 40px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 10px;
    border: 6px solid #fff;
    float: left;
    margin: 0 10px 0 0;
}

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

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #b9d4ec;
    font-size: 26px;
}

.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;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px 0 0 0;
    padding: 0;
}
/*======================================
//--//-->   SERVICES - CARD-C
======================================*/
.card-box-c {
    position: relative;
}

@media (max-width: 767px) {
    .card-box-c {
        margin-bottom: 2rem;
    }
}

.card-header-c {
    padding: 0 1rem 1rem 1rem;
}

.card-body-c {
    padding: 0.5rem 0.5rem 0 0.5rem;
}

@media (max-width: 767px) {
    .card-body-c {
        padding: 0;
    }
}

.card-footer-c {
    padding-left: 0.5rem;
}

.card-box-ico {
    padding: 1rem 3rem 1rem 2.5rem;
    border: 5px solid #2eca6a;
}

.card-box-ico span {
    font-size: 2rem;
    color: #000000;
}

.title-c {
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: -40px;
}

@media (min-width: 768px) {
    .title-c {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    .title-c {
        font-size: 1.5rem;
    }
}
/*--------------------------------------------------------------
# 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;
    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;
}

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

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.contact-card:hover .icon-wrapper {
    background: #2d4356;
}

.contact-icon {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
    color: #2d4356;
    transition: color 0.3s ease;
}

.contact-card:hover .contact-icon {
    color: white;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2d4356;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-card address,
.contact-card p {
    font-size: 18px;
    color: #566573;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-card a {
    color: #566573;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #2d4356;
}

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

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

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

    .contact-card {
        margin-bottom: 30px;
        padding: 30px 15px;
    }

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

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

    .contact-card h3 {
        font-size: 20px;
    }

    .contact-card address,
    .contact-card p {
        font-size: 16px;
    }
}
/*--------------------------------------------------------------
# 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;
    }
}
