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

#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;
}
.site-header {
    background: #f8f9fa;
    padding: 1.5rem 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    font-family: 'Montserrat', sans-serif;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
}

.navigation-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #555;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    color: #333;
}

.brand-text {
    font-weight: 600;
}

.menu-link:hover {
    background-color: #007bff;
    color: white;
    transform: translateY(-2px);
}

.custom-dropdown {
    background: white;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 0.8rem 0;
    margin-top: 0.5rem;
}

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

.dropdown-item:hover {
    background-color: #f0f4ff;
    color: #007bff;
}

@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-link {
        padding: 0.6rem 1rem;
    }

    .brand-item {
        margin-bottom: 1rem;
    }

    .custom-dropdown {
        position: static;
        margin-top: 0.5rem;
    }
}

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

.nav-item {
    animation: fadeIn 0.5s ease forwards;
    animation-delay: calc(var(--item-index) * 0.1s);
}
/*--------------------------------------------------------------
# Modern Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    background-color: rgba(25, 28, 36, 0.9);
    overflow: hidden;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    border-radius: 0 0 50px 50px;
}

#hero .carousel-item::before {
    content: '';
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.9), rgba(25, 28, 36, 0.8));
    border-radius: 0 0 50px 50px;
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 100px;
    left: 80px;
    right: 80px;
}

#hero .container {
    text-align: center;
    padding: 2rem;
    position: relative;
}

#hero h2 {
    color: #fff;
    margin-bottom: 40px;
    font-size: 56px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

#hero p {
    animation-delay: 0.4s;
    margin: 0 auto 50px auto;
    color: #fff;
    font-size: 24px;
    max-width: 800px;
    line-height: 1.6;
}

#hero .decoration-element {
    position: absolute;
    top: -50px;
    right: 50px;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#hero .carousel-inner .carousel-item {
    transition: opacity 0.8s ease-in-out;
    background-position: center center;
}

#hero .btn-get-started {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 20px 48px;
    border-radius: 50px;
    transition: all 0.5s ease-in-out;
    color: #fff;
    background: #FF6B6B;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

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

#hero .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
    margin: 0 8px;
}

#hero .carousel-indicators li.active {
    opacity: 1;
    background: #FF6B6B;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 32px;
    }
    #hero p {
        font-size: 20px;
    }
    #hero .btn-get-started {
        font-size: 20px;
        padding: 16px 36px;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}
.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;
    }
}
.reviews {
  display: flex;
  flex-direction: row;
  justify-content: center;
  max-width: 100% !important;
}

.review-wrap {
    display: flex;
    flex-direction: column;
    color: #fff;
    width: calc(30% - 20px) !important;
    background-color: #222222d9;
    border-radius: 20px;
    margin: 0 10px;
    padding: 50px 0;
}

@media only screen and (max-width: 900px) {
      .reviews {
          flex-direction: column;
          margin: 0 auto;
      }
      .review-wrap {
          width: calc(100% - 20px) !important;
          margin: 10px 0;

      }
  }
.section {
    padding: 120px 0;
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

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

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

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

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

.feature-card:hover .icon-wrapper {
    background: #2c3e50;
    transform: rotate(360deg);
}

.service-icon {
    width: 40px;
    height: 40px;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-content h3 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

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

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

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

    .feature-card {
        padding: 30px 20px;
    }

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

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

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

    .feature-content p {
        font-size: 14px;
    }
}
/*--------------------------------------------------------------
# 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;
    }
}
.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;
    }
}
/*--------------------------------------------------------------
# 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;
    }
}
