@import url(//fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600);

body {
    font-family: "Source Sans Pro", sans-serif;
}

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #407e854d;
}

#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 {
    color: #FF6B6B;
    position: relative;
    background-image: url('/img/image-background.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100% !important;
    min-height: 100vh;
    overflow: hidden;
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0.3) 100%);
    backdrop-filter: blur(10px);
}

.hero-modern {
    font-family: 'Poppins', sans-serif;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero__back {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.1);
    transition: all 0.3s ease;
}

.hero__back h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero__back p {
    font-size: 1.5rem;
    line-height: 1.6;
}

.btn-hero {
    background: #FF6B6B;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
    background: #ff8787;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

.fade-in-delay {
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

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

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

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

.decoration-circle {
    position: absolute;
    top: -30px;
    left: -30px;
    animation: rotate 10s linear infinite;
    opacity: 0.5;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.feature-section {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    font-size: 48px;
    color: #4a5568;
    font-weight: 700;
    margin-bottom: 2rem;
}

.feature-heading {
    font-size: 32px;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.feature-content {
    font-size: 24px;
    color: #4a5568;
    line-height: 1.6;
}

.feature-row {
    margin: 4rem 0;
}

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

.image-wrapper:hover {
    transform: translateY(-10px);
}

.features-img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.rounded-xl {
    border-radius: 20px;
}

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

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

.animate-slide-left {
    animation: slideLeft 1s ease-out;
}

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

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

@keyframes slideLeft {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 992px) {
    .feature-row {
        text-align: center;
    }

    .feature-heading {
        font-size: 28px;
    }

    .feature-content {
        font-size: 20px;
    }

    .section-title {
        font-size: 36px;
    }
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
padding: 80px 0;
color: #000;
}

.testimonials .section-header {
margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
overflow: hidden;
}

.testimonials .testimonial-item {
text-align: center;
color: #000;
}

.testimonials .testimonial-item .testimonial-img {
width: 100px;
border-radius: 50%;
border: 6px solid rgba(255, 255, 255, 0.15);
margin: 0 auto;
}

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
color: rgba(0, 0, 0, 0.6);
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: 0 auto 15px auto;
color: #000;
}

.testimonials .swiper-pagination {
margin-top: 20px;
position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: rgba(255, 255, 255, 0.4);
opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
background-color: #ffc451;
opacity: 1;
}

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

@media (min-width: 992px) {
.testimonials .testimonial-item p {
    width: 80%;
}
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
    background-color: #f8f9fa;
    padding: 80px 0;
    font-family: 'Montserrat', sans-serif;
}

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

.section-title h3 {
    font-size: 32px;
    color: #435b71;
}

.section-title span {
    color: #667eea;
}

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.service-card .icon {
    margin-bottom: 25px;
}

.service-card .icon svg {
    color: #667eea;
    transition: all 0.3s ease;
}

.service-card:hover .icon svg {
    color: #435b71;
    transform: scale(1.1);
}

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

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

.service-card:hover h4 a {
    color: #667eea;
}

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

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }

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

    .section-title h3 {
        font-size: 24px;
    }

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

    .service-card h4 {
        font-size: 20px;
    }
}
/*--------------------------------------------------------------
# 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;
}

.heading-responsive {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    animation: slideUp 0.8s ease-out;
}

.form-label {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.custom-input,
.custom-textarea {
    font-size: 24px;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.custom-input:focus,
.custom-textarea:focus {
    border-color: #2c3e50;
    box-shadow: 0 0 0 0.2rem rgba(44,62,80,0.1);
    outline: none;
}

.custom-textarea {
    min-height: 150px;
    resize: vertical;
}

.custom-button {
    background: #2c3e50;
    color: white;
    font-size: 24px;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.custom-button:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

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

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .heading-responsive {
        font-size: 36px;
    }
    
    .form-label {
        font-size: 20px;
    }
    
    .custom-input,
    .custom-textarea {
        font-size: 20px;
        padding: 0.8rem;
    }
    
    .custom-button {
        font-size: 20px;
        padding: 0.8rem 2rem;
    }
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.section-title h2 {
    color: #2d4b6e;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.underline {
    height: 4px;
    width: 70px;
    background-color: #2d4b6e;
    margin: 0 auto;
    border-radius: 2px;
}

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

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    transition: transform 0.3s ease;
}

.info-item:last-child {
    margin-bottom: 0;
}

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

.icon-box {
    width: 60px;
    height: 60px;
    background: #2d4b6e;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
}

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

.info-item:hover .icon-box {
    background: #3e6691;
    transform: rotate(8deg);
}

.content {
    flex: 1;
}

.content h4 {
    color: #2d4b6e;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.content p {
    color: #576d85;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .info-wrapper {
        margin-bottom: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .content h4 {
        font-size: 20px;
    }
    
    .content p {
        font-size: 16px;
    }
}
