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

#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;
}
.modern-header {
    background: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.brand-link {
    text-decoration: none;
    color: #555;
    transition: all 0.3s ease;
}

.brand-link:hover {
    color: #333;
    transform: translateY(-2px);
}

.brand-icon {
    font-size: 1.8rem;
    color: #666;
}

.brand-name {
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-item {
    margin: 0 5px;
}

.nav-link {
    color: #666;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.nav-link:hover {
    color: #333;
    background: rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

.dropdown-menu {
    border-radius: 12px;
    border: none;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    padding: 0.8rem 0;
    margin-top: 10px;
}

.dropdown-item {
    padding: 0.8rem 1.5rem;
    color: #666;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(0,0,0,0.05);
    color: #333;
}

.animated {
    animation: fadeIn 0.3s ease;
}

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

@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-item {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        width: 100%;
        text-align: center;
    }
}
#hero {
    width: 100%;
    height: 100vh;
    position: relative;
    background: url('/img/image-background.png') top center;
    background-size: cover;
    transition: all 0.5s ease;
}

#hero:before {
    content: '';
    background: linear-gradient(135deg, rgba(255, 82, 99, 0.9), rgba(255, 82, 99, 0.7));
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0 0 30px 30px;
}

#hero .container {
    padding-top: 120px;
    z-index: 1;
}

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
}

#hero h2 {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px 0;
    font-size: 24px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
}

#hero .btn-get-started {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    padding: 20px 45px;
    border-radius: 50px;
    transition: all 0.4s ease;
    margin-top: 40px;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.arrow-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-get-started:hover .arrow-icon {
    transform: translateX(5px);
}

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

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

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

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

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 992px) {
    #hero {
        height: auto;
        min-height: 100vh;
    }

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

    #hero h2 {
        font-size: 20px;
    }

    #hero .btn-get-started {
        font-size: 20px;
        padding: 15px 35px;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 30px;
    }

    #hero h2 {
        font-size: 18px;
    }
}
/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
    background: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.why-us .section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2d4b6e;
    margin-bottom: 2rem;
}

.why-us .feature-box {
    background: white;
    padding: 3.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why-us .number-icon {
    margin-bottom: 1.5rem;
}

.why-us .number-icon svg {
    fill: #2d4b6e;
    font-weight: 700;
    font-size: 24px;
}

.why-us .feature-box h4 {
    font-size: 26px;
    font-weight: 600;
    color: #2d4b6e;
    margin-bottom: 1.5rem;
}

.why-us .feature-box p {
    font-size: 24px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.why-us .feature-box:hover {
    transform: translateY(-10px);
    background: #2d4b6e;
}

.why-us .feature-box:hover .number-icon svg {
    fill: white;
}

.why-us .feature-box:hover h4,
.why-us .feature-box:hover p {
    color: white;
}

@media (max-width: 768px) {
    .why-us .feature-box {
        padding: 2rem 1.5rem;
    }
    
    .why-us .feature-box h4 {
        font-size: 24px;
    }
    
    .why-us .feature-box p {
        font-size: 20px;
    }
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
    background-color: #f8f9fa !important;
    font-family: 'Montserrat', sans-serif;
}

.services-title {
    font-size: 42px;
    font-weight: 700;
    color: #2d4356;
    margin-bottom: 2rem;
    position: relative;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem 2rem;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: #e6f3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-card:hover .icon-container {
    background: #2d4356;
}

.service-icon {
    width: 40px;
    height: 40px;
    stroke: #2d4356;
    stroke-width: 1.5;
    transition: all 0.4s ease;
}

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

.service-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-card h4 a {
    color: #2d4356;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-card h4 a:hover {
    color: #4a90e2;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

@media (max-width: 768px) {
    .services-title {
        font-size: 32px;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .icon-container {
        width: 60px;
        height: 60px;
    }
    
    .service-icon {
        width: 30px;
        height: 30px;
    }
    
    .service-card h4 {
        font-size: 20px;
    }
    
    .service-card p {
        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 {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

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

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

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

.contact .info-icon {
    color: #3498db;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.contact .info-card:hover .info-icon {
    transform: scale(1.1);
}

.contact .info-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact .info-card p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

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

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

    .contact .info-card p {
        font-size: 16px;
    }
}

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

.contact [data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.contact [data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
