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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #7b6b774d;
}

#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;
    }
}
/*** 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);
    }
}
/*--------------------------------------------------------------
# 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;
    }
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
overflow: hidden;
}

.testimonials .testimonial-item {
box-sizing: content-box;
text-align: center;
min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
width: 90px;
border-radius: 50%;
margin: 0 auto;
}

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
color: #c9e3f5;
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 15px 15px 15px;
padding: 20px;
background: #f3f9fd;
position: relative;
margin-bottom: 35px;
border-radius: 6px;
}

.testimonials .testimonial-item p::after {
content: "";
width: 0;
height: 0;
border-top: 20px solid #f3f9fd;
border-right: 20px solid transparent;
border-left: 20px solid transparent;
position: absolute;
bottom: -20px;
left: calc(50% - 20px);
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: #fff;
opacity: 1;
border: 1px solid #2487ce;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
background-color: #2487ce;
}
.section-modern {
    background-color: #f8f9fa;
    padding: 80px 0;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.title-underline {
    display: inline-block;
    position: relative;
}

.title-underline .line {
    display: block;
    width: 80px;
    height: 4px;
    background: #3498db;
    border-radius: 2px;
    margin: 0 auto;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.service-icon {
    background: #3498db;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-icon svg {
    fill: white;
}

.service-item:hover .service-icon {
    background: #2980b9;
    transform: rotate(360deg);
}

.service-content .title {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-content .description {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

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

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

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

    .service-content .title {
        font-size: 20px;
    }
}
/* FAQ Section Styles */
.faq-section {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
    padding: 80px 0;
}

.faq-title-wrapper {
    text-align: left;
    position: sticky;
    top: 20px;
}

.faq-icon {
    fill: #6c757d;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.faq-title-wrapper h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.faq-item summary {
    padding: 24px;
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    position: relative;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    font-size: 28px;
    color: #6c757d;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.number {
    color: #6c757d;
    font-size: 28px;
    font-weight: 700;
    min-width: 40px;
}

.faq-content {
    padding: 0 24px 24px 80px;
    animation: slideDown 0.3s ease-out;
}

.faq-content p {
    font-size: 24px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

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

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

@media (max-width: 991.98px) {
    .faq-title-wrapper {
        text-align: center;
        margin-bottom: 40px;
        position: static;
    }

    .faq-title-wrapper h2 {
        font-size: 36px;
    }

    .faq-item summary {
        font-size: 20px;
        padding: 20px;
    }

    .faq-content {
        padding: 0 20px 20px 60px;
    }

    .faq-content p {
        font-size: 20px;
    }

    .number {
        font-size: 24px;
        min-width: 32px;
    }
}
#contact {
    background-color: #f8f9fa;
    padding: 80px 0;
    font-family: 'Montserrat', sans-serif;
}

.contact {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact_right {
    background: #6c757d;
    padding: 60px 40px;
    border-radius: 20px;
    color: white;
    transition: all 0.3s ease;
}

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

.contact-info {
    text-align: center;
}

.contact-icon {
    margin-bottom: 30px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info h4 {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 400;
}

.contact_left {
    padding: 40px;
}

.contact-form label {
    font-size: 24px;
    color: #495057;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-control {
    height: 60px;
    font-size: 18px;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #6c757d;
    box-shadow: none;
}

textarea.form-control {
    height: 160px;
    resize: none;
}

.submit-btn {
    background: #6c757d;
    border: none;
    padding: 15px 40px;
    font-size: 24px;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #495057;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.animate-text-delay {
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: backwards;
}

.input-animate {
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

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

@media (max-width: 768px) {
    .contact {
        padding: 20px;
    }
    
    .contact_right, .contact_left {
        padding: 30px;
    }
    
    .contact-info h2 {
        font-size: 28px;
    }
    
    .contact-info h4 {
        font-size: 20px;
    }
    
    .contact-form label {
        font-size: 20px;
    }
    
    .form-control {
        height: 50px;
        font-size: 16px;
        padding: 15px;
    }
    
    .submit-btn {
        font-size: 20px;
        padding: 12px 30px;
    }
}
/*--------------------------------------------------------------
# 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: #f8f9fa;
    color: #555555;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.05);
}

#footer .footer-top {
    padding: 80px 0 50px 0;
    background: #ffffff;
    border-radius: 20px;
    margin: 0 20px;
}

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

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

#footer .brand-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

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

#footer .address-text {
    font-size: 24px;
    line-height: 1.6;
    color: #555555;
}

#footer .contact-label {
    color: #2c3e50;
    font-weight: 600;
}

#footer .section-title {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

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

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

#footer .links-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

#footer .links-list li:hover {
    transform: translateX(10px);
}

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

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

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

#footer .links-list a:hover {
    color: #3498db;
}

#footer .newsletter-desc {
    font-size: 24px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 30px;
}

#footer .newsletter-form {
    display: flex;
    gap: 15px;
    background: #ffffff;
    padding: 8px;
    border-radius: 50px;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

#footer .newsletter-form:focus-within {
    border-color: #3498db;
}

#footer .newsletter-form input[type='email'] {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-size: 24px;
    border-radius: 25px;
    outline: none;
}

#footer .newsletter-form input[type='submit'] {
    padding: 15px 35px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#footer .newsletter-form input[type='submit']:hover {
    background: #2980b9;
    transform: scale(1.05);
}

#footer .copyright {
    text-align: center;
    padding: 30px 0;
    font-size: 24px;
    color: #555555;
}

@media (max-width: 768px) {
    #footer .footer-top {
        padding: 50px 0 30px 0;
        margin: 0 10px;
    }

    #footer .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    #footer .address-text,
    #footer .links-list a,
    #footer .newsletter-desc {
        font-size: 20px;
    }

    #footer .newsletter-form {
        flex-direction: column;
    }

    #footer .newsletter-form input[type='email'],
    #footer .newsletter-form input[type='submit'] {
        width: 100%;
        font-size: 20px;
    }
}
