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

#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;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: rgba(78, 93, 108, 0.95);
    transition: all 0.4s ease-in-out;
    z-index: 997;
    height: 80px;
    font-family: 'Montserrat', sans-serif;
}

#header {
    background: #4e5d6c;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

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

#header .logo a {
    color: #ffffff;
    transition: color 0.3s ease;
}

#header .logo a:hover {
    color: #a8b9cc;
}

#header .logo img {
    max-height: 45px;
    border-radius: 8px;
}

.scrolled-offset {
    margin-top: 80px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
    padding: 0;
}

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

.navbar li {
    position: relative;
    transition: all 0.3s ease;
}

.navbar > ul > li {
    margin-left: 8px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 18px;
    font-size: 15px;
    color: #ffffff;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.navbar a i {
    font-size: 12px;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    background: #7291b6;
    color: #ffffff;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    margin: 0;
    padding: 12px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar .dropdown ul li {
    min-width: 220px;
}

.navbar .dropdown ul a {
    padding: 12px 20px;
    color: #4e5d6c;
    font-size: 14px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #ffffff;
    background: #7291b6;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    color: #ffffff;
    font-size: 26px;
    cursor: pointer;
    display: none;
    transition: 0.3s ease;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }

    .navbar-mobile {
        position: fixed;
        overflow: hidden;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background: rgba(78, 93, 108, 0.9);
        transition: 0.3s ease;
        z-index: 999;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 15px;
        background-color: #ffffff;
        overflow-y: auto;
        border-radius: 10px;
        transition: 0.3s ease;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 15px;
        font-size: 15px;
        color: #4e5d6c;
    }

    .navbar-mobile a:hover,
    .navbar-mobile .active,
    .navbar-mobile li:hover > a {
        color: #ffffff;
        background: #7291b6;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        opacity: 1;
        visibility: visible;
        background: #f8f9fa;
        box-shadow: none;
    }
}
/*--------------------------------------------------------------
    # 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: 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;
    }
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
background: #f8f9fa;
font-family: 'Montserrat', sans-serif;
}

.section-title h2 {
font-size: 36px;
font-weight: 700;
color: #2d4b6e;
margin-bottom: 30px;
}

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

.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 35px rgba(45, 75, 110, 0.15);
}

.icon-wrapper {
width: 90px;
height: 90px;
margin: 0 auto 25px;
display: flex;
align-items: center;
justify-content: center;
background: #f0f4f9;
border-radius: 50%;
transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
background: #2d4b6e;
}

.service-icon {
width: 45px;
height: 45px;
stroke: #2d4b6e;
transition: all 0.3s ease;
}

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

.service-title {
font-size: 24px;
font-weight: 600;
margin-bottom: 20px;
position: relative;
padding-bottom: 20px;
}

.service-title::after {
content: "";
position: absolute;
display: block;
width: 50px;
height: 3px;
background: #2d4b6e;
bottom: 0;
left: calc(50% - 25px);
border-radius: 2px;
}

.service-title a {
color: #2d4b6e;
text-decoration: none;
transition: color 0.3s ease;
}

.service-title a:hover {
color: #4171a6;
}

.service-description {
font-size: 16px;
line-height: 1.6;
color: #666;
margin: 0;
}

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

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

@media (max-width: 768px) {
.section-title h2 {
    font-size: 28px;
}

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

.service-title {
    font-size: 20px;
}

.service-description {
    font-size: 14px;
}
}
/* FAQ Section Styles */
.faq-section {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
    padding: 80px 0;
}

.faq-title-wrapper {
    text-align: left;
    position: sticky;
    top: 20px;
}

.faq-icon {
    fill: #6c757d;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.faq-title-wrapper h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.faq-item summary {
    padding: 24px;
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    position: relative;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    font-size: 28px;
    color: #6c757d;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.number {
    color: #6c757d;
    font-size: 28px;
    font-weight: 700;
    min-width: 40px;
}

.faq-content {
    padding: 0 24px 24px 80px;
    animation: slideDown 0.3s ease-out;
}

.faq-content p {
    font-size: 24px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

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

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

@media (max-width: 991.98px) {
    .faq-title-wrapper {
        text-align: center;
        margin-bottom: 40px;
        position: static;
    }

    .faq-title-wrapper h2 {
        font-size: 36px;
    }

    .faq-item summary {
        font-size: 20px;
        padding: 20px;
    }

    .faq-content {
        padding: 0 20px 20px 60px;
    }

    .faq-content p {
        font-size: 20px;
    }

    .number {
        font-size: 24px;
        min-width: 32px;
    }
}
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 Styles
--------------------------------------------------------------*/
.contact {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

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

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

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

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

.icon {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.info-card:hover .icon-wrapper {
    transform: scale(1.1);
    background: #2980b9;
}

.title {
    font-size: 24px;
    color: #2c3e50;
    margin: 1rem 0;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .info-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

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

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

    .title {
        font-size: 20px;
    }

    .content {
        font-size: 16px;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
.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;
    }
}
