@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: #6cd0cd4d;
}

#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;
  }
/*--------------------------------------------------------------
# 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;
    }
}
.bg-neutral {
    background-color: #f8f9fa;
}

.content-block {
    padding: 2rem;
}

.content-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    line-height: 1.8;
    color: #666;
}

.custom-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    padding: 1rem 2.5rem;
    background: #7952b3;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    background: #614092;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(121, 82, 179, 0.4);
    color: #fff;
}

.image-wrapper {
    position: relative;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.image-wrapper:hover {
    transform: scale(1.02);
}

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

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

@media (max-width: 991.98px) {
    .content-text {
        font-size: 1.25rem;
    }
    
    .custom-btn {
        font-size: 1.1rem;
        padding: 0.8rem 2rem;
    }
    
    .content-block {
        padding: 1rem;
    }
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
padding-left: 10px;
}

.testimonials .testimonial-item {
box-sizing: content-box;
padding: 30px;
margin: 30px 10px;
box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
position: relative;
background: #fff;
border-radius: 10px;
}

.testimonials .testimonial-item .testimonial-img {
width: 90px;
border-radius: 50px;
margin-right: 15px;
}

.testimonials .testimonial-item h3 {
font-size: 18px;
font-weight: bold;
margin: 10px 0 5px 0;
color: #000;
}

.testimonials .testimonial-item h4 {
font-size: 14px;
color: #999;
margin: 0;
}

.testimonials .testimonial-item .stars {
margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
color: #ffc107;
margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
color: #009d8b;
font-size: 26px;
line-height: 0;
}

.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;
transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
font-style: italic;
margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
margin-top: 20px;
position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: rgba(0, 0, 0, 0.2);
opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
background-color: var(--color-primary);
}

@media (max-width: 767px) {
.testimonials .testimonial-wrap {
    padding-left: 0;
}

.testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
}

.testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
}
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
    background: #f8f9fa;
    padding: 80px 0;
}

.services .icon-box {
    padding: 70px 40px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.5s ease;
    border-radius: 20px;
    text-align: center;
}

.services .icon-box:hover {
    transform: translateY(-10px);
}

.services .icon {
    margin-bottom: 25px;
    transition: all 0.5s ease;
}

.services .icon svg {
    fill: #7B68EE;
    transition: all 0.5s ease;
}

.services .title {
    margin-bottom: 25px;
}

.services .title a {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
}

.services .description {
    font-size: 24px;
    line-height: 1.6;
    color: #666;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 0;
}

.services .icon-box:hover .icon svg {
    fill: #fff;
    transform: scale(1.1);
}

.services .icon-box:hover {
    background: #7B68EE;
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description {
    color: #fff;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
}

.section-title h3 {
    font-size: 32px;
    color: #666;
    font-family: 'Open Sans', sans-serif;
}

.section-title h3 span {
    color: #7B68EE;
}

@media (max-width: 768px) {
    .services .icon-box {
        padding: 50px 20px;
    }
    
    .services .title a {
        font-size: 20px;
    }
    
    .services .description {
        font-size: 18px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .section-title h3 {
        font-size: 24px;
    }
}
/*--------------------------------------------------------------
# Modern FAQ Section Styles
--------------------------------------------------------------*/
.faq-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    font-family: 'Montserrat', sans-serif;
}

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

.title-decoration {
    width: 80px;
    height: 4px;
    background: #7f8c8d;
    margin: 0 auto;
    border-radius: 2px;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.faq-question button {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 25px 60px 25px 30px;
    font-size: 24px;
    color: #34495e;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question button:hover {
    color: #7f8c8d;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    stroke: #7f8c8d;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 20px 30px;
    font-size: 24px;
    line-height: 1.6;
    color: #5c6b7a;
    margin: 0;
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }

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

    .faq-question button {
        font-size: 20px;
        padding: 20px 50px 20px 20px;
    }

    .faq-answer p {
        font-size: 18px;
        padding: 15px 20px;
    }

    .faq-item {
        margin-bottom: 15px;
    }
}
.contact-form-modern {
    width: 85%;
    max-width: 1200px;
    margin: 4rem auto;
    font-family: 'Montserrat', sans-serif;
}

.form-animate {
    background: #ffffff;
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.form-animate:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-icon {
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.form-header h3 {
    font-size: 32px;
    color: #4A5568;
    font-weight: 600;
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.input-modern {
    font-size: 24px;
    padding: 1.2rem 1.5rem;
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.input-modern:focus {
    border-color: #4A5568;
    box-shadow: 0 0 0 3px rgba(74,85,104,0.2);
    outline: none;
}

.input-modern::placeholder {
    color: #A0AEC0;
}

textarea.input-modern {
    min-height: 200px;
    resize: none;
}

.btn-modern {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    background: #4A5568;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modern:hover {
    background: #2D3748;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74,85,104,0.3);
}

@media (max-width: 768px) {
    .contact-form-modern {
        width: 95%;
    }

    .form-animate {
        padding: 2rem;
    }

    .form-header h3 {
        font-size: 28px;
    }

    .input-modern, .btn-modern {
        font-size: 20px;
        padding: 1rem 1.2rem;
    }
}
#{{randomString}} {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.contact-decor {
    position: absolute;
    top: -75px;
    right: -75px;
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

.contact-wrapper {
    min-height: 600px;
}

.contact-info {
    padding: 40px;
}

.info-block {
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 15px;
    background: rgba(139, 133, 137, 0.05);
    transition: transform 0.3s ease;
}

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

.icon-wrapper {
    margin-bottom: 20px;
}

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

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

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 20px;
}

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

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

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

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

@media (max-width: 991px) {
    .contact-wrapper {
        min-height: auto;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .map-container {
        margin-top: 30px;
    }
    
    .contact-text {
        font-size: 20px;
    }
    
    .info-block {
        margin-bottom: 20px;
    }
}
/*--------------------------------------------------------------
# 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;
    }
}
