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

#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 {
    transition: all 0.5s ease-in-out;
    z-index: 997;
    padding: 35px 0;
    background-color: #4a5568;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header .logo {
    transition: 0.3s;
    text-decoration: none;
}

.header .logo h1 {
    font-size: 34px;
    margin: 0;
    font-weight: 600;
    color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.header .logo i {
    font-size: 34px;
    margin-right: 12px;
    line-height: 0;
    color: #f8f9fa;
    transition: transform 0.3s ease;
}

.header .logo:hover i {
    transform: rotate(360deg);
}

@media (max-width: 575px) {
    .header .logo h1 {
        font-size: 28px;
    }

    .header .logo i {
        font-size: 26px;
    }
}

.header .header-social-links {
    padding-right: 20px;
}

.header .header-social-links a {
    color: rgba(248, 249, 250, 0.7);
    padding-left: 20px;
    display: inline-block;
    line-height: 0;
    transition: 0.3s;
    font-size: 18px;
}

.header .header-social-links a:hover {
    color: #f8f9fa;
    transform: translateY(-3px);
}

@media (max-width: 575px) {
    .header .header-social-links a {
        padding-left: 8px;
    }
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
    .navbar {
        padding: 0;
    }

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

    .navbar li {
        position: relative;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 25px;
        font-family: 'Roboto', sans-serif;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-size: 14px;
        font-weight: 500;
        color: rgba(248, 249, 250, 0.7);
        white-space: nowrap;
        transition: 0.3s ease;
        border-radius: 25px;
    }

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

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #f8f9fa;
        background-color: rgba(248, 249, 250, 0.1);
    }

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

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

    .navbar .dropdown ul a {
        padding: 12px 25px;
        font-size: 14px;
        text-transform: none;
        font-weight: 500;
        color: #4a5568;
    }

    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover>a {
        color: #f8f9fa;
        background-color: #4a5568;
    }

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

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

    .navbar ul {
        position: absolute;
        inset: 0;
        padding: 60px 0 10px 0;
        margin: 0;
        background: rgba(74, 85, 104, 0.95);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        border-radius: 0 0 0 25px;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 25px;
        font-family: 'Roboto', sans-serif;
        font-size: 14px;
        text-transform: uppercase;
        font-weight: 500;
        color: rgba(248, 249, 250, 0.7);
        letter-spacing: 1.5px;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #f8f9fa;
        background-color: rgba(248, 249, 250, 0.1);
    }

    .navbar .dropdown ul {
        position: static;
        display: none;
        padding: 10px 0;
        margin: 10px 25px;
        transition: all 0.5s ease-in-out;
        background-color: rgba(248, 249, 250, 0.1);
        border-radius: 15px;
    }

    .navbar .dropdown>.dropdown-active {
        display: block;
    }

    .mobile-nav-show {
        color: #f8f9fa;
        font-size: 28px;
        cursor: pointer;
        transition: 0.5s;
        z-index: 9999;
        margin: 0 15px;
    }

    .mobile-nav-hide {
        color: #f8f9fa;
        font-size: 32px;
        cursor: pointer;
        transition: 0.5s;
        position: fixed;
        right: 25px;
        top: 25px;
        z-index: 9999;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .navbar {
        right: 0;
    }

    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(74, 85, 104, 0.8);
        z-index: 9996;
    }
}
/*--------------------------------------------------------------
# Modern Hero Section with Enhanced Visual Effects
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 90vh;
    background: #FF6B6B;
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    padding: 80px 0;
    overflow: hidden;
}

#hero .container {
    padding-top: 82px;
    position: relative;
}

#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.1);
}

#hero h2 {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    font-size: 28px;
    line-height: 1.4;
}

#hero .btn-get-started {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 30px;
    transition: all 0.5s ease;
    margin: 10px 0 0 0;
    color: #fff;
    background: #FF8F8F;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

#hero .btn-get-started:hover {
    background: #FF6B6B;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

#hero .btn-watch-video {
    font-size: 24px;
    display: flex;
    align-items: center;
    transition: 0.5s;
    margin: 10px 0 0 35px;
    color: #fff;
    line-height: 1;
}

#hero .play-icon {
    margin-right: 12px;
    transition: 0.3s;
}

#hero .play-circle {
    fill: none;
    stroke: #fff;
    stroke-width: 2;
}

#hero .play-triangle {
    fill: #fff;
}

#hero .btn-watch-video:hover .play-icon {
    transform: scale(1.2);
}

#hero .float-animation {
    animation: float 6s ease-in-out infinite;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

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

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

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

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

@media (max-width: 991px) {
    #hero {
        height: auto;
        padding: 120px 0;
        text-align: center;
    }

    #hero .hero-img {
        text-align: center;
        margin-top: 40px;
    }

    #hero .hero-img img {
        width: 60%;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 36px;
        line-height: 1.2;
    }

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

    #hero .hero-img img {
        width: 80%;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 90%;
    }

    #hero .btn-get-started {
        font-size: 20px;
        padding: 12px 30px;
    }
}
.features {
    background-color: #f8f9fa;
    padding: 80px 0;
    font-family: 'Montserrat', sans-serif;
}

.features h2 {
    color: #2d4356;
    font-size: 42px;
    margin-bottom: 60px;
}

.features-item {
    margin-bottom: 120px;
    color: #2d4356;
}

.content-wrapper {
    padding: 30px;
}

.features-item h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2d4356;
    margin-bottom: 25px;
}

.feature-text {
    font-size: 24px;
    line-height: 1.6;
    color: #526D82;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    font-size: 24px;
    background-color: #27374D;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #526D82;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.image-container {
    position: relative;
    padding: 20px;
}

.primary-image, .secondary-image {
    width: 100%;
    border-radius: 20px;
    transition: all 0.5s ease;
}

.primary-image {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.secondary-image {
    position: absolute;
    top: 60px;
    left: 60px;
    z-index: 1;
    opacity: 0.6;
}

.feature-image-wrapper {
    padding: 20px;
}

.feature-image {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

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

@media (max-width: 992px) {
    .features-item {
        margin-bottom: 60px;
    }

    .features h2 {
        font-size: 36px;
    }

    .features-item h3 {
        font-size: 28px;
    }

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

    .cta-button {
        font-size: 20px;
        padding: 12px 30px;
    }

    .secondary-image {
        top: 30px;
        left: 30px;
    }
}

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

    .content-wrapper {
        padding: 20px;
    }

    .secondary-image {
        display: none;
    }
}
/*--------------------------------------------------------------
# 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 - CARD-C
======================================*/
.card-box-c {
    position: relative;
}

@media (max-width: 767px) {
    .card-box-c {
        margin-bottom: 2rem;
    }
}

.card-header-c {
    padding: 0 1rem 1rem 1rem;
}

.card-body-c {
    padding: 0.5rem 0.5rem 0 0.5rem;
}

@media (max-width: 767px) {
    .card-body-c {
        padding: 0;
    }
}

.card-footer-c {
    padding-left: 0.5rem;
}

.card-box-ico {
    padding: 1rem 3rem 1rem 2.5rem;
    border: 5px solid #2eca6a;
}

.card-box-ico span {
    font-size: 2rem;
    color: #000000;
}

.title-c {
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: -40px;
}

@media (min-width: 768px) {
    .title-c {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    .title-c {
        font-size: 1.5rem;
    }
}
/*--------------------------------------------------------------
# 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;
    }
}
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;
    }
}
