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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #9688a44d;
}

#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;
}
/*** Navbar ***/
.header-top {
    background: #5D6D7E;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 20px 0 !important;
    height: 90px;
    font-family: 'Montserrat', sans-serif;
}

.brand-wrapper {
    transition: transform 0.3s ease;
}

.brand-wrapper:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2rem;
    margin-right: 12px;
    animation: pulse 2s infinite;
}

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

.brand-title {
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    font-size: 1.8rem;
}

.navbar .navbar-nav .nav-link {
    margin-right: 40px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #ffffff;
}

.custom-toggler {
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 8px;
}

.dropdown-menu {
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

.dropdown-item {
    padding: 10px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(93, 109, 126, 0.1);
    transform: translateX(5px);
}

@media (max-width: 991.98px) {
    .navbar {
        height: auto;
    }

    .navbar .navbar-nav {
        padding: 15px;
        background: #5D6D7E;
        border-radius: 12px;
        margin-top: 15px;
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 12px 0;
    }

    .brand-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        opacity: 1;
    }
}

.head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/*--------------------------------------------------------------
# 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;
    }
}
/*--------------------------------------------------------------
# Features Showcase
--------------------------------------------------------------*/
.features-showcase {
    background-color: #f8f9fa;
    padding: 6rem 0;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d4b6c;
    margin-bottom: 3rem;
    position: relative;
    transition: all 0.3s ease;
}

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

.feature-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2d4b6c;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.feature-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #4a6585;
    margin-bottom: 0;
}

.image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(45, 75, 108, 0.1);
    transition: all 0.3s ease;
}

.image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 75, 108, 0.2);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
    }

    .feature-title {
        font-size: 1.75rem;
    }

    .feature-text {
        font-size: 1.25rem;
    }

    .feature-content {
        padding: 1.5rem 0;
    }
}

@media (max-width: 768px) {
    .features-showcase {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-title {
        font-size: 1.5rem;
    }

    .feature-text {
        font-size: 1.125rem;
    }
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-box {
padding: 1rem 0;
}

.testimonials-box .testimonial-avatar {
width: 80px !important;
display: inline-flex !important;
border-radius: 50%;
}

.testimonial-ico {
text-align: center;
}

.testimonial-ico i {
font-size: 48px;
color: #2eca6a;
}

.testimonial-text {
font-style: italic;
margin-top: 25px;
padding: 1.5rem 1.5rem;
background-color: #f3f3f3;
position: relative;
}

.testimonial-text:after {
content: "";
position: absolute;
top: 100%;
left: 25px;
width: 0px;
height: 0px;
border-top: 15px solid rgb(243, 243, 243);
border-left: 15px solid transparent;
border-right: 15px solid transparent;
}

.testimonial-author-box {
margin-top: 2rem;
}

.testimonial-author {
margin-left: 1rem;
display: inline-flex;
font-size: 1.2rem;
color: #000000;
}

.img-fluid {
    border-radius: 5px;
 }
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
background: #f8f9fa;
font-family: 'Montserrat', sans-serif;
}

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

.service-card {
background: #ffffff;
border-radius: 20px;
padding: 40px 25px;
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 15px 35px rgba(45, 75, 110, 0.15);
}

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

.service-card:hover .icon-wrapper {
background: #2d4b6e;
}

.service-icon {
width: 45px;
height: 45px;
stroke: #2d4b6e;
transition: all 0.3s ease;
}

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

.service-title {
font-size: 24px;
font-weight: 600;
margin-bottom: 20px;
position: relative;
padding-bottom: 20px;
}

.service-title::after {
content: "";
position: absolute;
display: block;
width: 50px;
height: 3px;
background: #2d4b6e;
bottom: 0;
left: calc(50% - 25px);
border-radius: 2px;
}

.service-title a {
color: #2d4b6e;
text-decoration: none;
transition: color 0.3s ease;
}

.service-title a:hover {
color: #4171a6;
}

.service-description {
font-size: 16px;
line-height: 1.6;
color: #666;
margin: 0;
}

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

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

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

.service-card {
    padding: 30px 20px;
}

.service-title {
    font-size: 20px;
}

.service-description {
    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-form-modern {
    width: 85%;
    max-width: 1200px;
    margin: 4rem auto;
    font-family: 'Montserrat', sans-serif;
}

.form-animate {
    background: #ffffff;
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.form-animate:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-icon {
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

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

.form-header h3 {
    font-size: 32px;
    color: #4A5568;
    font-weight: 600;
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.input-modern {
    font-size: 24px;
    padding: 1.2rem 1.5rem;
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.input-modern:focus {
    border-color: #4A5568;
    box-shadow: 0 0 0 3px rgba(74,85,104,0.2);
    outline: none;
}

.input-modern::placeholder {
    color: #A0AEC0;
}

textarea.input-modern {
    min-height: 200px;
    resize: none;
}

.btn-modern {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    background: #4A5568;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modern:hover {
    background: #2D3748;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74,85,104,0.3);
}

@media (max-width: 768px) {
    .contact-form-modern {
        width: 95%;
    }

    .form-animate {
        padding: 2rem;
    }

    .form-header h3 {
        font-size: 28px;
    }

    .input-modern, .btn-modern {
        font-size: 20px;
        padding: 1rem 1.2rem;
    }
}
/*--------------------------------------------------------------
# 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;
    }
}
#footer {
    background: #f8f9fa;
    padding: 0 0 40px 0;
    color: #4a4a4a;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
}

#footer .footer-top {
    padding: 80px 0 40px 0;
}

#footer .footer-info {
    margin-bottom: 30px;
    background: #ffffff;
    color: #4a4a4a;
    border-radius: 20px;
    text-align: center;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#footer .footer-info:hover {
    transform: translateY(-5px);
}

#footer .brand-title {
    font-size: 42px;
    margin: 0 0 30px 0;
    padding: 2px 0;
    line-height: 1.2;
    font-weight: 700;
    color: #2d2d2d;
}

#footer .contact-details {
    font-size: 24px;
    line-height: 1.8;
    margin-bottom: 0;
}

#footer .footer-links {
    margin-bottom: 40px;
}

#footer .footer-top h4 {
    font-size: 28px;
    font-weight: 600;
    color: #2d2d2d;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

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

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

#footer .footer-links ul li {
    padding: 15px 0;
    display: flex;
    align-items: center;
}

#footer .arrow-icon {
    margin-right: 10px;
    color: #4a4a4a;
    transition: transform 0.3s ease;
}

#footer .footer-links ul a {
    color: #4a4a4a;
    transition: color 0.3s ease;
    font-size: 24px;
    text-decoration: none;
}

#footer .footer-links ul a:hover {
    color: #757575;
}

#footer .footer-links ul li:hover .arrow-icon {
    transform: translateX(5px);
}

#footer .newsletter-form {
    margin-top: 30px;
    background: #ffffff;
    padding: 8px;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#footer .newsletter-form input[type="email"] {
    border: none;
    padding: 15px;
    width: calc(100% - 140px);
    font-size: 24px;
    background: transparent;
    outline: none;
}

#footer .newsletter-form .submit-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    bottom: 8px;
    border: none;
    font-size: 24px;
    padding: 0 30px;
    background: #4a4a4a;
    color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 10px;
    cursor: pointer;
}

#footer .newsletter-form .submit-btn:hover {
    background: #757575;
    transform: translateY(-2px);
}

#footer .copyright {
    border-top: 1px solid #dedede;
    text-align: center;
    padding-top: 40px;
    font-size: 20px;
    color: #4a4a4a;
}

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

.animate-slide-right {
    animation: slideRight 1s ease-in-out;
}

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

@keyframes slideRight {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    #footer {
        font-size: 20px;
    }

    #footer .brand-title {
        font-size: 36px;
    }

    #footer .contact-details,
    #footer .footer-links ul a,
    #footer .newsletter-form input[type="email"],
    #footer .newsletter-form .submit-btn {
        font-size: 20px;
    }

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

    #footer .footer-info {
        margin: 0 15px 30px;
    }
}
