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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #c26b074d;
}

#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;
}
/*** Navbar ***/
.header-top {
    background: #5D6D7E;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 20px 0 !important;
    height: 90px;
    font-family: 'Montserrat', sans-serif;
}

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

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

.logo-icon {
    font-size: 2rem;
    margin-right: 12px;
    animation: pulse 2s infinite;
}

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

.brand-title {
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    font-size: 1.8rem;
}

.navbar .navbar-nav .nav-link {
    margin-right: 40px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #ffffff;
}

.custom-toggler {
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 8px;
}

.dropdown-menu {
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

.dropdown-item {
    padding: 10px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(93, 109, 126, 0.1);
    transform: translateX(5px);
}

@media (max-width: 991.98px) {
    .navbar {
        height: auto;
    }

    .navbar .navbar-nav {
        padding: 15px;
        background: #5D6D7E;
        border-radius: 12px;
        margin-top: 15px;
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 12px 0;
    }

    .brand-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

.head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#hero {
    width: 100%;
    height: calc(100vh - 110px);
    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, 19, 184, 0.8), rgba(37, 117, 252, 0.7));
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0 0 30px 30px;
}

#hero .hero-content {
    padding: 60px 0;
    text-align: left;
}

#hero h1 {
    margin: 0 0 20px 0;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

#hero h2 {
    color: #fff;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

#hero .btn-get-started {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 50px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
}

#hero .btn-get-started:hover {
    background: #4713b8;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(71, 19, 184, 0.3);
}

#hero .arrow-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

#hero .btn-get-started:hover .arrow-icon {
    transform: translateX(5px);
}

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

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

.animate-bounce {
    animation: bounce 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 bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero {
        text-align: center;
    }

    #hero .container {
        padding-top: 60px;
    }

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

    #hero h2 {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 30px;
    }

    #hero .btn-get-started {
        font-size: 20px;
        padding: 14px 28px;
    }
}
.feature-section {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

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

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

.feature-content {
    font-size: 24px;
    color: #4a5568;
    line-height: 1.6;
}

.feature-row {
    margin: 4rem 0;
}

.image-wrapper {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.features-img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

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

.animate-slide-right {
    animation: slideRight 1s ease-out;
}

.animate-slide-left {
    animation: slideLeft 1s ease-out;
}

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

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

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

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

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

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

    .section-title {
        font-size: 36px;
    }
}
.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;

      }
  }
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
    background-color: #f8f9fa !important;
    font-family: 'Montserrat', sans-serif;
}

.services-title {
    font-size: 42px;
    font-weight: 700;
    color: #2d4356;
    margin-bottom: 2rem;
    position: relative;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem 2rem;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: #e6f3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-card:hover .icon-container {
    background: #2d4356;
}

.service-icon {
    width: 40px;
    height: 40px;
    stroke: #2d4356;
    stroke-width: 1.5;
    transition: all 0.4s ease;
}

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

.service-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-card h4 a {
    color: #2d4356;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-card h4 a:hover {
    color: #4a90e2;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

@media (max-width: 768px) {
    .services-title {
        font-size: 32px;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .icon-container {
        width: 60px;
        height: 60px;
    }
    
    .service-icon {
        width: 30px;
        height: 30px;
    }
    
    .service-card h4 {
        font-size: 20px;
    }
    
    .service-card 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;
    }
}
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;
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.section-title h2 {
    color: #2d4b6e;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.underline {
    height: 4px;
    width: 70px;
    background-color: #2d4b6e;
    margin: 0 auto;
    border-radius: 2px;
}

.info-wrapper {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    transition: transform 0.3s ease;
}

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

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

.icon-box {
    width: 60px;
    height: 60px;
    background: #2d4b6e;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
}

.icon {
    width: 30px;
    height: 30px;
    color: white;
}

.info-item:hover .icon-box {
    background: #3e6691;
    transform: rotate(8deg);
}

.content {
    flex: 1;
}

.content h4 {
    color: #2d4b6e;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

@media (max-width: 991px) {
    .info-wrapper {
        margin-bottom: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .content h4 {
        font-size: 20px;
    }
    
    .content p {
        font-size: 16px;
    }
}
/*--------------------------------------------------------------
# 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;
    }
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .icon-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    background-color: #1e3a5f; /* Customize as needed */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
  }
  
  .icon {
    width: 24px;
    height: 24px;
    color: #fff;
  }