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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #569faa4d;
}

#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
--------------------------------------------------------------*/
#header {
    transition: all 0.4s ease;
    z-index: 997;
    padding: 25px 0;
    background-color: #f8f9fa !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

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

#header .logo a {
    color: #566a7f;
    text-decoration: none;
    transition: color 0.3s ease;
}

#header .logo a:hover {
    color: #7f8fa6;
}

.animated-logo {
    animation: fadeInDown 1s;
}

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

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

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    font-family: 'Open Sans', sans-serif;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #566a7f;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover > a {
    color: #7f8fa6;
    background: rgba(127, 143, 166, 0.1);
}

.navbar .getstarted {
    padding: 12px 25px;
    margin-left: 15px;
    border-radius: 25px;
    color: #fff;
    background: #7f8fa6;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.navbar .getstarted:hover {
    background: #566a7f;
    transform: translateY(-2px);
}

.navbar .dropdown-menu {
    display: block;
    position: absolute;
    left: 0;
    top: 130%;
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-radius: 12px;
    min-width: 200px;
}

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

.navbar .dropdown-menu a {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #566a7f;
    border-radius: 0;
}

.dropdown-arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #566a7f;
    transition: all 0.3s ease;
}

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

    .navbar ul {
        display: none;
    }

    .navbar-mobile {
        position: fixed;
        inset: 0;
        background: rgba(86, 106, 127, 0.9);
        padding: 20px;
        overflow-y: auto;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .navbar-mobile ul {
        display: block;
        background: #fff;
        padding: 20px;
        border-radius: 12px;
    }

    .navbar-mobile a {
        padding: 15px 20px;
        font-size: 16px;
    }

    .navbar-mobile .getstarted {
        margin: 15px 0;
        display: inline-block;
    }

    .navbar-mobile .dropdown-menu {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
    }

    .navbar-mobile .dropdown.show .dropdown-menu {
        display: block;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
  .dropdown > a::after {
      display: none !important;
  }
#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: 42px;
    color: #445566;
    font-weight: 600;
    margin-bottom: 3rem;
}

.feature-row {
    margin-bottom: 2rem;
}

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

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

.image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.feature-content {
    padding: 2rem;
}

.feature-title {
    font-size: 32px;
    color: #445566;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.feature-description {
    font-size: 24px;
    line-height: 1.6;
    color: #667788;
}

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

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

.slide-in {
    animation: slideIn 1s ease-out;
}

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

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

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

    .feature-content {
        padding: 1rem;
    }

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

    .feature-description {
        font-size: 20px;
    }
}
/*--------------------------------------------------------------
# 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;
    font-family: 'Montserrat', sans-serif;
}

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

.services .service-card {
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services .service-card:hover {
    transform: translateY(-10px);
    background: #2d4356;
}

.services .icon {
    width: 80px;
    height: 80px;
    background: #f0f4f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.services .icon svg {
    stroke: #2d4356;
    transition: all 0.4s ease;
}

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

.services .service-card:hover .icon svg {
    stroke: #2d4356;
}

.services .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.services .title a {
    color: #2d4356;
    text-decoration: none;
    transition: all 0.4s ease;
}

.services .description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    transition: all 0.4s ease;
}

.services .service-card:hover .title a,
.services .service-card:hover .description {
    color: #ffffff;
}

@media (max-width: 768px) {
    .services .section-title h2 {
        font-size: 32px;
    }
    
    .services .service-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .services .icon {
        width: 60px;
        height: 60px;
    }
    
    .services .title {
        font-size: 20px;
    }
    
    .services .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 {
    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;
}

.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;
    }
}
/*** Global Styles ***/
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa;
}

/*** Newsletter ***/
.newsletter-section {
    background-color: #6c757d;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(108, 117, 125, 0.95), rgba(108, 117, 125, 0.8));
    z-index: 1;
}

.newsletter-section .container {
    position: relative;
    z-index: 2;
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.badge {
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    font-weight: 500;
}

.btn-subscribe {
    width: 60px;
    height: 60px;
    background-color: #fff;
    color: #6c757d;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background-color: #6c757d;
    color: #fff;
    transform: rotate(45deg);
}

/*** Footer ***/
.footer-section {
    background-color: #212529;
}

.footer-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background-color: #fff;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #fff;
    padding-left: 1.5rem;
}

.footer-link:hover::before {
    width: 0.75rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.copyright {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-menu {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: #fff;
}

/*** Animations ***/
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: var(--delay, 0s);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1s ease forwards;
}

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

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*** Responsive ***/
@media (max-width: 768px) {
    .footer-menu {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .py-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .fs-5 {
        font-size: 1rem !important;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}
