@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: #0187504d;
}

#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 with Dynamic Styling
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    background: url("/img/image-background.png") top center;
    background-size: cover;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

#hero:before {
    content: '';
    background: linear-gradient(135deg, rgba(71, 39, 219, 0.8), rgba(187, 39, 219, 0.8));
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.5s ease;
}

#hero .hero-container {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

#hero .hero-content {
    max-width: 1200px;
    text-align: center;
}

#hero h3 {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 28px;
    padding: 1.5rem 3rem;
    margin-bottom: 3rem;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

#hero h1 {
    margin: 0 0 1.5rem 0;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#hero h2 {
    color: #fff;
    margin-bottom: 3rem;
    font-size: 32px;
    font-weight: 400;
    opacity: 0.9;
}

#hero .btn-get-started {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    border-radius: 100px;
    transition: all 0.4s ease;
    border: 3px solid #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

#hero .btn-get-started:hover {
    background: #fff;
    color: #4727db;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Animations */
.animate-slide-down {
    animation: slideDown 1s ease-out;
}

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

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

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

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

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

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

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

@media (max-width: 1024px) {
    #hero h1 {
        font-size: 48px;
    }
    
    #hero h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    #hero h3 {
        font-size: 24px;
        padding: 1rem 2rem;
    }

    #hero h1 {
        font-size: 36px;
    }

    #hero h2 {
        font-size: 24px;
        margin-bottom: 2rem;
    }

    #hero .btn-get-started {
        font-size: 20px;
        padding: 1rem 2rem;
    }
}
.feature-section {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
    padding: 4rem 0;
}

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

.feature-card {
    background-color: #4a5568;
    border-radius: 25px;
    margin-bottom: 3rem;
    padding: 3rem;
    transition: transform 0.3s ease;
}

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

.feature-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.feature-image-wrapper {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
}

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

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

.feature-text {
    flex: 1;
    color: #ffffff;
}

.feature-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.feature-description {
    font-size: 1.5rem;
    line-height: 1.6;
}

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

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

@media (max-width: 992px) {
    .feature-content {
        flex-direction: column;
        text-align: center;
    }

    .feature-image-wrapper {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .feature-heading {
        font-size: 1.8rem;
    }

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

.contact-heading {
    font-size: 42px;
    font-weight: 600;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.contact-heading:hover {
    transform: scale(1.02);
}

.contact-form {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.custom-input {
    height: 60px;
    font-size: 24px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    padding-left: 50px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

textarea.custom-input {
    height: auto;
    padding-top: 15px;
}

.custom-input:focus {
    border-color: #6c757d;
    box-shadow: none;
    background-color: white;
}

.form-group {
    position: relative;
}

.input-icon, .textarea-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.textarea-icon {
    top: 25px;
}

.custom-button {
    font-size: 24px;
    padding: 15px 40px;
    border-radius: 12px;
    background-color: #6c757d;
    border: none;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-button:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

.button-arrow {
    transition: transform 0.3s ease;
}

.custom-button:hover .button-arrow {
    transform: translateX(5px);
}

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

    .custom-input {
        font-size: 20px;
        height: 50px;
    }

    .custom-button {
        width: 100%;
        font-size: 20px;
        padding: 12px 30px;
    }
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    background: #f8f9fa;
    padding: 100px 0;
    font-family: 'Montserrat', sans-serif;
}

.section-header {
    margin-bottom: 80px;
}

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

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #3498db;
}

.section-header p {
    font-size: 24px;
    color: #7f8c8d;
}

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

.info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.info-card:hover {
    transform: translateY(-10px);
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    color: white;
}

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

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

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

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

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

    .section-header p {
        font-size: 20px;
    }

    .info-card {
        padding: 30px;
        flex-direction: column;
        text-align: center;
    }

    .icon-wrapper {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
/*--------------------------------------------------------------
# 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;
    }
}
