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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #d578564d;
}

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

.hero-container {
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.9), rgba(255, 102, 0, 0.9));
    border-radius: 2rem;
    margin: 2rem;
    backdrop-filter: blur(10px);
}

.hero-text {
    font-size: 1.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.custom-btn {
    background: transparent;
    border: 3px solid white;
    border-radius: 2rem;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.custom-btn:hover {
    background: white;
    color: #FF0066;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.svg-overlay {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

.animate-up {
    animation: slideUp 1s ease forwards;
}

.animate-up-delay {
    animation: slideUp 1s ease 0.3s forwards;
    opacity: 0;
}

.animate-up-delay-2 {
    animation: slideUp 1s ease 0.6s forwards;
    opacity: 0;
}

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

.animate-gradient {
    background-size: 200% 200%;
    animation: gradientPosition 15s ease infinite;
}

@keyframes gradientPosition {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.feature-section {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

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

.feature-row {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 2rem 0;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

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

.feature-text {
    font-size: 24px;
    color: #636e72;
    line-height: 1.6;
}

.feature-image {
    flex: 1;
}

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

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

.animate-slide {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 0.8s ease forwards;
}

.animate-fade {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

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

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

@media (max-width: 768px) {
    .feature-row {
        flex-direction: column;
        gap: 2rem;
    }

    .feature-row.reverse {
        flex-direction: column;
    }

    .section-title {
        font-size: 36px;
    }

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

    .feature-text {
        font-size: 20px;
    }
}
.services-section {
    background: #f8f9fa;
    padding: 80px 0;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 60px;
    position: relative;
    font-weight: 700;
}

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

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 25px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.service-icon {
    margin-bottom: 25px;
    color: #3498db;
    transition: all 0.3s ease;
}

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

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

.service-text {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 30px;
}

.service-btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #3498db;
    color: white;
    transform: scale(1.05);
}

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

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

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

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

    .service-text {
        font-size: 14px;
    }

    .service-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}
/* 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;
    }
}
section#contact {
    background-color: #fff;
    padding: 5% 0;
}
section#contact .section-heading {
    color: #000;
    font-weight: 600;
    padding: 5% 0;
}
section#contact form#contactForm .form-group {
    margin-bottom: 1.5rem;
}
section#contact form#contactForm .form-group input,
section#contact form#contactForm .form-group textarea {
    padding: 1.25rem;
}
section#contact form#contactForm .form-group input.form-control {
    height: auto;
}
section#contact form#contactForm .form-group-textarea {
    height: 100%;
}
section#contact form#contactForm .form-group-textarea textarea {
    height: 100%;
    min-height: 10rem;
}
section#contact form#contactForm p.help-block {
    margin: 0;
}
section#contact form#contactForm .form-control:focus {
    border-color: #ffc800;
    box-shadow: none;
}
section#contact form#contactForm ::-webkit-input-placeholder {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
    font-weight: 700;
    color: #ced4da;
}
section#contact form#contactForm :-moz-placeholder {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
    font-weight: 700;
    color: #ced4da;
}
section#contact form#contactForm ::-moz-placeholder {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
    font-weight: 700;
    color: #ced4da;
}
section#contact form#contactForm :-ms-input-placeholder {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
    font-weight: 700;
    color: #ced4da;
}
.bg-light {
    background-color: #f8f9fa !important;
    font-family: 'Montserrat', sans-serif;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.contact-card {
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.contact-icon {
    width: 32px;
    height: 32px;
}

.info-text {
    font-size: 24px;
    color: #4B5563;
    margin: 0;
}

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

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

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

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

@media (max-width: 991.98px) {
    .contact-card {
        padding: 2rem;
    }

    .info-text {
        font-size: 20px;
    }

    .contact-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 575.98px) {
    .contact-card {
        padding: 1.5rem;
    }

    .info-text {
        font-size: 18px;
    }

    .contact-icon {
        width: 24px;
        height: 24px;
    }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    background: #f8f9fa;
    color: #555;
}

#footer .footer-newsletter {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

#footer .newsletter-title {
    font-size: 42px;
    margin: 0 0 30px 0;
    font-weight: 700;
    color: #2d4b6e;
}

#footer .newsletter-desc {
    font-size: 24px;
    color: #555;
    margin-bottom: 40px;
}

#footer .newsletter-form {
    margin-top: 30px;
    background: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 15px;
}

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

#footer .subscribe-btn {
    border: none;
    padding: 15px 40px;
    background: #2d4b6e;
    color: #fff;
    font-size: 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#footer .subscribe-btn:hover {
    background: #1a2d43;
    transform: translateY(-2px);
}

#footer .footer-top {
    padding: 80px 0 40px 0;
    background: #fff;
    border-radius: 50px 50px 0 0;
}

#footer .brand-title {
    font-size: 36px;
    margin: 0 0 30px 0;
    font-weight: 700;
    color: #2d4b6e;
}

#footer .contact-info {
    font-size: 24px;
    line-height: 1.6;
    color: #555;
}

#footer .footer-top h4 {
    font-size: 28px;
    font-weight: 700;
    color: #2d4b6e;
    margin-bottom: 30px;
}

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

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

#footer .arrow-icon {
    color: #2d4b6e;
    transition: transform 0.3s ease;
}

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

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

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

#footer .social-desc {
    font-size: 24px;
    margin-bottom: 30px;
}

#footer .social-links {
    display: flex;
    gap: 15px;
}

#footer .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #2d4b6e;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#footer .social-icon:hover {
    background: #1a2d43;
    transform: translateY(-5px);
}

#footer .footer-bottom {
    padding: 30px 0;
    text-align: center;
    background: #2d4b6e;
    color: #fff;
}

#footer .copyright {
    font-size: 20px;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

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

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

    #footer .newsletter-title {
        font-size: 32px;
    }

    #footer .newsletter-desc {
        font-size: 20px;
    }

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

    #footer .subscribe-btn {
        width: 100%;
    }

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

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

    #footer .contact-info,
    #footer .footer-links ul a {
        font-size: 20px;
    }

    #footer .social-icon {
        width: 40px;
        height: 40px;
    }
}
