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

#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.4s ease-in-out;
    z-index: 1000;
    padding: 20px 0;
    background: #f8f9fa;
    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;
    font-family: 'Montserrat', sans-serif;
}

.animate-logo {
    animation: fadeInDown 0.5s ease-in-out;
}

#header .logo a {
    color: #2d4f6c;
    text-decoration: none;
    transition: color 0.3s ease;
}

#header .logo a:hover {
    color: #4a90e2;
}

#header .logo i {
    margin-right: 8px;
    color: #4a90e2;
}

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

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

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2d4f6c;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #4a90e2;
    background: rgba(74, 144, 226, 0.1);
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2d4f6c;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    min-width: 200px;
    padding: 10px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #2d4f6c;
    font-size: 14px;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(74, 144, 226, 0.1);
    color: #4a90e2;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 2px;
    background: #2d4f6c;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger-line::before,
.hamburger-line::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: #2d4f6c;
    transition: all 0.3s ease;
}

.hamburger-line::before {
    top: -8px;
}

.hamburger-line::after {
    bottom: -8px;
}

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

    .nav-list {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }

    .navbar-mobile .nav-list {
        display: flex;
    }

    .navbar-mobile .hamburger-line {
        background: transparent;
    }

    .navbar-mobile .hamburger-line::before {
        transform: rotate(45deg);
        top: 0;
    }

    .navbar-mobile .hamburger-line::after {
        transform: rotate(-45deg);
        bottom: 0;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        margin: 10px 0;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*** Modern Hero Section ***/
.hero-section {
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.hero-content {
    padding: 4rem 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn-primary-custom, .btn-secondary-custom {
    padding: 1rem 2rem;
    font-size: 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-custom {
    background: #ffffff;
    color: #FF6B6B;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-arrow {
    fill: currentColor;
    transition: transform 0.3s ease;
}

.btn-primary-custom:hover .btn-arrow {
    transform: translateX(5px);
}

.floating-animation {
    animation: floating 3s ease-in-out infinite;
    border-radius: 20px;
}

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

@media (max-width: 991.98px) {
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
}

[data-aos] {
    opacity: 0;
    transition-duration: 1s;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); opacity: 0.8; }
    70% { transform: scale(0.9); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
.showcase-section {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    font-size: 48px;
    color: #2c3e50;
    font-weight: 700;
}

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

.feature-title {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

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

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

.shadow-lg {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.slide-left {
    animation: slideLeft 1s ease-in-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-image {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 36px;
    }

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

    .feature-description {
        font-size: 20px;
    }
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-box {
padding: 1rem 0;
}

.testimonials-box .testimonial-avatar {
width: 80px !important;
display: inline-flex !important;
border-radius: 50%;
}

.testimonial-ico {
text-align: center;
}

.testimonial-ico i {
font-size: 48px;
color: #2eca6a;
}

.testimonial-text {
font-style: italic;
margin-top: 25px;
padding: 1.5rem 1.5rem;
background-color: #f3f3f3;
position: relative;
}

.testimonial-text:after {
content: "";
position: absolute;
top: 100%;
left: 25px;
width: 0px;
height: 0px;
border-top: 15px solid rgb(243, 243, 243);
border-left: 15px solid transparent;
border-right: 15px solid transparent;
}

.testimonial-author-box {
margin-top: 2rem;
}

.testimonial-author {
margin-left: 1rem;
display: inline-flex;
font-size: 1.2rem;
color: #000000;
}

.img-fluid {
    border-radius: 5px;
 }
/*--------------------------------------------------------------
# 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;
    }
}
/* 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;
    }
}
#contact {
    background-color: #f8f9fa;
    padding: 80px 0;
    font-family: 'Montserrat', sans-serif;
}

.contact {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact_right {
    background: #6c757d;
    padding: 60px 40px;
    border-radius: 20px;
    color: white;
    transition: all 0.3s ease;
}

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

.contact-info {
    text-align: center;
}

.contact-icon {
    margin-bottom: 30px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info h4 {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 400;
}

.contact_left {
    padding: 40px;
}

.contact-form label {
    font-size: 24px;
    color: #495057;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-control {
    height: 60px;
    font-size: 18px;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #6c757d;
    box-shadow: none;
}

textarea.form-control {
    height: 160px;
    resize: none;
}

.submit-btn {
    background: #6c757d;
    border: none;
    padding: 15px 40px;
    font-size: 24px;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #495057;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.animate-text {
    animation: fadeInUp 1s ease-out;
}

.animate-text-delay {
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: backwards;
}

.input-animate {
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

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

@media (max-width: 768px) {
    .contact {
        padding: 20px;
    }
    
    .contact_right, .contact_left {
        padding: 30px;
    }
    
    .contact-info h2 {
        font-size: 28px;
    }
    
    .contact-info h4 {
        font-size: 20px;
    }
    
    .contact-form label {
        font-size: 20px;
    }
    
    .form-control {
        height: 50px;
        font-size: 16px;
        padding: 15px;
    }
    
    .submit-btn {
        font-size: 20px;
        padding: 12px 30px;
    }
}
.contact {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

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

.contact .info-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.contact .info-icon {
    color: #3498db;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.contact .info-card:hover .info-icon {
    transform: scale(1.1);
}

.contact .info-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact .info-card p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

    .contact .info-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

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

    .contact .info-card p {
        font-size: 16px;
    }
}

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

.contact [data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.contact [data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
#footer {
    background: #f8f9fa;
    padding: 0 0 40px 0;
    color: #4a4a4a;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
}

#footer .footer-top {
    padding: 80px 0 40px 0;
}

#footer .footer-info {
    margin-bottom: 30px;
    background: #ffffff;
    color: #4a4a4a;
    border-radius: 20px;
    text-align: center;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

#footer .brand-title {
    font-size: 42px;
    margin: 0 0 30px 0;
    padding: 2px 0;
    line-height: 1.2;
    font-weight: 700;
    color: #2d2d2d;
}

#footer .contact-details {
    font-size: 24px;
    line-height: 1.8;
    margin-bottom: 0;
}

#footer .footer-links {
    margin-bottom: 40px;
}

#footer .footer-top h4 {
    font-size: 28px;
    font-weight: 600;
    color: #2d2d2d;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

#footer .footer-top h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #4a4a4a;
    border-radius: 2px;
}

#footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-links ul li {
    padding: 15px 0;
    display: flex;
    align-items: center;
}

#footer .arrow-icon {
    margin-right: 10px;
    color: #4a4a4a;
    transition: transform 0.3s ease;
}

#footer .footer-links ul a {
    color: #4a4a4a;
    transition: color 0.3s ease;
    font-size: 24px;
    text-decoration: none;
}

#footer .footer-links ul a:hover {
    color: #757575;
}

#footer .footer-links ul li:hover .arrow-icon {
    transform: translateX(5px);
}

#footer .newsletter-form {
    margin-top: 30px;
    background: #ffffff;
    padding: 8px;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#footer .newsletter-form input[type="email"] {
    border: none;
    padding: 15px;
    width: calc(100% - 140px);
    font-size: 24px;
    background: transparent;
    outline: none;
}

#footer .newsletter-form .submit-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    bottom: 8px;
    border: none;
    font-size: 24px;
    padding: 0 30px;
    background: #4a4a4a;
    color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 10px;
    cursor: pointer;
}

#footer .newsletter-form .submit-btn:hover {
    background: #757575;
    transform: translateY(-2px);
}

#footer .copyright {
    border-top: 1px solid #dedede;
    text-align: center;
    padding-top: 40px;
    font-size: 20px;
    color: #4a4a4a;
}

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

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

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

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

@media (max-width: 768px) {
    #footer {
        font-size: 20px;
    }

    #footer .brand-title {
        font-size: 36px;
    }

    #footer .contact-details,
    #footer .footer-links ul a,
    #footer .newsletter-form input[type="email"],
    #footer .newsletter-form .submit-btn {
        font-size: 20px;
    }

    #footer .footer-top h4 {
        font-size: 24px;
    }

    #footer .footer-info {
        margin: 0 15px 30px;
    }
}
