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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #47c15f4d;
}

#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 Section
    --------------------------------------------------------------*/
    #hero {
        background: url('/img/image-background.png') no-repeat center center/cover;
        height: 100vh;
        width: 100%;
        position: relative;
        overflow: hidden;
        font-family: 'Montserrat', sans-serif;
    }

    #hero .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(71, 15, 255, 0.85), rgba(255, 49, 83, 0.85));
        z-index: 1;
    }

    #hero .hero-content {
        height: 100vh;
        text-align: left;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 2;
        padding: 2rem;
    }

    .hero-text-wrapper {
        max-width: 800px;
        padding: 3rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        backdrop-filter: blur(10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .hero-content h1 {
        font-size: 4rem;
        font-weight: 700;
        margin-bottom: 2rem;
        text-transform: uppercase;
        color: #fff;
        line-height: 1.2;
    }

    .gradient-text {
        background: linear-gradient(45deg, #fff, #f0f0f0);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero-content p {
        font-size: 1.5rem;
        letter-spacing: 2px;
        margin-bottom: 2rem;
        color: #fff;
        font-weight: 400;
        font-family: 'Open Sans', sans-serif;
    }

    .typing-text {
        position: relative;
        width: fit-content;
    }

    .typing-text::after {
        content: '';
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 70%;
        background-color: #fff;
        animation: cursor-blink 0.8s step-end infinite;
    }

    .typing-text {
        white-space: nowrap;
        overflow: hidden;
        animation: typing 3.5s steps(40, end),
                cursor-blink 0.8s step-end infinite;
        border-right: 4px solid transparent;
    }

    @keyframes typing {
        from { width: 0 }
        to { width: 100% }
    }

    @keyframes cursor-blink {
        from, to { background-color: transparent }
        50% { background-color: #fff }
    }

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

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

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

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

    @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 2.5rem;
        }

        .hero-content p {
            font-size: 1.2rem;
        }

        .hero-text-wrapper {
            padding: 2rem;
        }
    }
.feature-section {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    font-size: 42px;
    color: #445566;
    font-weight: 600;
    margin-bottom: 3rem;
}

.feature-row {
    margin-bottom: 2rem;
}

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

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

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

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

.feature-content {
    padding: 2rem;
}

.feature-title {
    font-size: 32px;
    color: #445566;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.feature-description {
    font-size: 24px;
    line-height: 1.6;
    color: #667788;
}

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

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

.slide-in {
    animation: slideIn 1s ease-out;
}

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

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

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

    .feature-content {
        padding: 1rem;
    }

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

    .feature-description {
        font-size: 20px;
    }
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 40px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 10px;
    border: 6px solid #fff;
    float: left;
    margin: 0 10px 0 0;
}

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #b9d4ec;
    font-size: 26px;
}

.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;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px 0 0 0;
    padding: 0;
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

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

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

.service-card .icon {
    margin-bottom: 25px;
    text-align: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    stroke: #6c757d;
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    stroke: #5a6268;
    transform: scale(1.1);
}

.service-card h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.service-card:hover h4 a {
    color: #6c757d;
}

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

@media (max-width: 768px) {
    .service-card {
        margin-bottom: 30px;
    }
    
    .service-card h4 {
        font-size: 22px;
    }
    
    .service-card p {
        font-size: 15px;
    }
}
/*--------------------------------------------------------------
# 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 {
    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;
    }
}
#{{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;
    }
}
.footer {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
    padding: 4rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.copyright-section {
    text-align: center;
}

.brand-text {
    font-size: 24px;
    color: #555;
    font-weight: 500;
}

.contact-section {
    text-align: center;
    padding: 2rem 0;
}

.contact-info {
    font-size: 24px;
    color: #666;
}

.contact-info a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #333;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.footer-heading {
    font-size: 28px;
    color: #444;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.link-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    font-size: 24px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #333;
    transform: translateX(10px);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 24px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: #333;
    transform: translateX(10px);
}

.social-icon {
    fill: currentColor;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .footer-heading {
        font-size: 24px;
    }

    .footer-link, .social-link {
        font-size: 20px;
    }

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