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

#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
--------------------------------------------------------------*/
:root {
    --primary-color: #4a5568;
    --hover-color: #2d3748;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Raleway', sans-serif;
}

.topbar {
    height: 50px;
    font-size: 15px;
    transition: all 0.4s ease;
    color: var(--primary-color);
    padding: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.topbar .contact-info i {
    font-style: normal;
    color: var(--primary-color);
    line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
    padding-left: 8px;
    color: var(--primary-color);
}

.topbar .social-links a {
    color: var(--primary-color);
    line-height: 0;
    transition: transform 0.3s ease;
    margin-left: 25px;
    font-size: 16px;
}

.hover-effect:hover {
    transform: translateY(-3px);
    color: var(--hover-color);
}

.header {
    transition: all 0.5s;
    z-index: 997;
    height: 100px;
    color: var(--primary-color);
    background-color: #f8f9fa;
}

.header.sticked {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 80px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header .logo h1 {
    font-size: 32px;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-family: var(--font-primary);
}

.header .logo i {
    margin-right: 10px;
}

/*--------------------------------------------------------------
# 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 > ul > li {
        padding: 10px 0 10px 30px;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3px;
        font-family: var(--font-secondary);
        font-size: 16px;
        font-weight: 600;
        color: var(--primary-color);
        transition: 0.3s ease;
        position: relative;
    }

    .navbar a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--hover-color);
        transition: width 0.3s ease;
    }

    .navbar a:hover::after,
    .navbar .active::after {
        width: 100%;
    }

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

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

    .navbar .dropdown ul a {
        padding: 12px 20px;
        font-size: 15px;
        font-weight: 500;
        color: var(--primary-color);
    }

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

    .navbar a {
        padding: 12px 20px;
        font-size: 16px;
        color: #fff;
        display: flex;
        align-items: center;
    }

    .navbar .dropdown ul {
        position: static;
        display: none;
        padding: 10px 0;
        margin: 10px 20px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }

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

/* Animations */
.animate__animated {
    animation-duration: 1s;
}

.animate__fadeIn {
    animation-name: fadeIn;
}

.animate__fadeInLeft {
    animation-name: fadeInLeft;
}

.animate__fadeInRight {
    animation-name: fadeInRight;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
#hero {
    color: #2D3436;
    position: relative;
    background-image: url('/img/image-background.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100% !important;
    min-height: 100vh;
    padding: 80px 0;
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 129, 0.85), rgba(41, 128, 185, 0.85));
    backdrop-filter: blur(5px);
}

.hero-content-wrapper {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text {
    background: linear-gradient(45deg, #FF6B81, #2980B9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 3.5rem;
}

.custom-btn {
    background: linear-gradient(45deg, #FF6B81, #2980B9);
    border: none;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

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

.btn-icon {
    margin-right: 10px;
    vertical-align: middle;
}

.content-animate {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

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

.hover-effect {
    position: relative;
    overflow: hidden;
}

.hover-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.hover-effect:hover::after {
    transform: translateX(0);
}
/*--------------------------------------------------------------
# Features Showcase
--------------------------------------------------------------*/
.features-showcase {
    background-color: #f8f9fa;
    padding: 6rem 0;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d4b6c;
    margin-bottom: 3rem;
    position: relative;
    transition: all 0.3s ease;
}

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

.feature-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2d4b6c;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.feature-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #4a6585;
    margin-bottom: 0;
}

.image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(45, 75, 108, 0.1);
    transition: all 0.3s ease;
}

.image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 75, 108, 0.2);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s ease;
}

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

@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
    }

    .feature-title {
        font-size: 1.75rem;
    }

    .feature-text {
        font-size: 1.25rem;
    }

    .feature-content {
        padding: 1.5rem 0;
    }
}

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

    .section-title {
        font-size: 2rem;
    }

    .feature-title {
        font-size: 1.5rem;
    }

    .feature-text {
        font-size: 1.125rem;
    }
}
.reviews {
  display: flex;
  flex-direction: row;
  justify-content: center;
  max-width: 100% !important;
}

.review-wrap {
    display: flex;
    flex-direction: column;
    color: #fff;
    width: calc(30% - 20px) !important;
    background-color: #222222d9;
    border-radius: 20px;
    margin: 0 10px;
    padding: 50px 0;
}

@media only screen and (max-width: 900px) {
      .reviews {
          flex-direction: column;
          margin: 0 auto;
      }
      .review-wrap {
          width: calc(100% - 20px) !important;
          margin: 10px 0;

      }
  }
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
    background-color: #f8f9fa;
    padding: 80px 0;
    font-family: 'Montserrat', sans-serif;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2d4356;
    margin-bottom: 20px;
}

.section-title h3 {
    font-size: 32px;
    color: #435b71;
}

.section-title span {
    color: #667eea;
}

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

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

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

.service-card .icon svg {
    color: #667eea;
    transition: all 0.3s ease;
}

.service-card:hover .icon svg {
    color: #435b71;
    transform: scale(1.1);
}

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

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

.service-card:hover h4 a {
    color: #667eea;
}

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

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

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

    .section-title h3 {
        font-size: 24px;
    }

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

    .service-card h4 {
        font-size: 20px;
    }
}
/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq-section {
    background: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.section-title h2 {
    color: #4a5568;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.question-icon {
    color: #6b7280;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.question-btn {
    background: none;
    border: none;
    color: #4a5568;
    font-size: 1.25rem;
    font-weight: 500;
    text-align: left;
    flex-grow: 1;
    padding: 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.question-btn:hover {
    color: #3b82f6;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.arrow-icon::before,
.arrow-icon::after {
    content: '';
    position: absolute;
    background-color: #6b7280;
    width: 2px;
    height: 12px;
    transition: transform 0.3s ease;
}

.arrow-icon::before {
    transform: rotate(45deg);
    right: 10px;
}

.arrow-icon::after {
    transform: rotate(-45deg);
    right: 4px;
}

.question-btn.active + .arrow-icon::before {
    transform: rotate(-45deg);
}

.question-btn.active + .arrow-icon::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-answer.show {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-container {
        padding: 0 15px;
    }

    .question-btn {
        font-size: 1.125rem;
    }

    .faq-answer p {
        font-size: 1rem;
    }
}
.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;
    }
}
/*--------------------------------------------------------------
# Contact Section Styles
--------------------------------------------------------------*/
.contact {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

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

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

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

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

.contact-card:hover .icon-wrapper {
    background: #2d4356;
}

.contact-icon {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
    color: #2d4356;
    transition: color 0.3s ease;
}

.contact-card:hover .contact-icon {
    color: white;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2d4356;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-card address,
.contact-card p {
    font-size: 18px;
    color: #566573;
    line-height: 1.6;
    margin-bottom: 0;
}

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

.contact-card a:hover {
    color: #2d4356;
}

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

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

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

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

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

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

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

    .contact-card address,
    .contact-card p {
        font-size: 16px;
    }
}
/*--------------------------------------------------------------
# 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;
    }
}
