@import url(//fonts.googleapis.com/css?family=Oswald:300,400,500);

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #e58e784d;
}

#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 {
    background: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.brand-link {
    text-decoration: none;
    color: #555;
    transition: all 0.3s ease;
}

.brand-link:hover {
    color: #333;
    transform: translateY(-2px);
}

.brand-icon {
    font-size: 1.8rem;
    color: #666;
}

.brand-name {
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-item {
    margin: 0 5px;
}

.nav-link {
    color: #666;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.nav-link:hover {
    color: #333;
    background: rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

.dropdown-menu {
    border-radius: 12px;
    border: none;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    padding: 0.8rem 0;
    margin-top: 10px;
}

.dropdown-item {
    padding: 0.8rem 1.5rem;
    color: #666;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(0,0,0,0.05);
    color: #333;
}

.animated {
    animation: fadeIn 0.3s ease;
}

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

@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-item {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        width: 100%;
        text-align: center;
    }
}
/*--------------------------------------------------------------
# Hero Carousel Section
--------------------------------------------------------------*/
.hero-carousel {
    height: 90vh;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.hero-slide {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(71, 39, 219, 0.9), rgba(45, 206, 137, 0.7));
    border-radius: 0 0 50px 50px;
}

.hero-content {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-body {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.hero-subtitle {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 56px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: #ffffff;
    color: #4727db;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 1rem;
}

.cta-button:hover {
    background: #4727db;
    color: #ffffff;
    transform: translateY(-2px);
}

.arrow-icon {
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: translateX(5px);
}

.swiper-pagination {
    bottom: 40px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ffffff;
    opacity: 0.5;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 32px;
    background: #4727db;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-body {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-carousel, .hero-slide {
        height: 80vh;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .hero-body {
        padding: 2rem;
    }
    
    .hero-title {
        font-size: 32px;
    }
}
/*--------------------------------------------------------------
# About Section Styles
--------------------------------------------------------------*/
.about-section {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.section-title h2 {
    color: #445069;
    font-size: 48px;
    margin-bottom: 2rem;
}

.feature-block {
    margin: 4rem 0;
}

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

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

.image-wrapper {
    overflow: hidden;
    border-radius: 1rem;
}

.hover-scale {
    transition: transform 0.5s ease;
}

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

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

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

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

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

/* Responsive */
@media (max-width: 992px) {
    .section-title h2 {
        font-size: 36px;
    }

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

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

    .feature-block {
        margin: 2rem 0;
    }
}
.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;

      }
  }
.service-section {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
    padding: 80px 0;
}

.section-title {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 60px;
    position: relative;
    font-weight: 700;
}

.service-item {
    margin-bottom: 80px;
    padding: 40px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-content {
    padding: 30px;
    background-color: white;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.service-header h5 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
}

.service-text p {
    font-size: 24px;
    line-height: 1.6;
    color: #34495e;
    padding: 30px;
}

.custom-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 24px;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.custom-btn:hover {
    background-color: #2c3e50;
    color: white;
    transform: scale(1.05);
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-in forwards;
}

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

@media (max-width: 768px) {
    .service-item {
        margin-bottom: 40px;
        padding: 20px 10px;
    }
    
    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .service-header h5 {
        font-size: 24px;
    }
    
    .service-text p {
        font-size: 20px;
        padding: 15px;
    }
    
    .custom-btn {
        padding: 12px 30px;
        font-size: 20px;
    }
    
    .service-content {
        min-height: 200px;
        padding: 20px;
    }
}
/*--------------------------------------------------------------
# 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;
    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;
    }
}
.bg-light {
    background-color: #f8f9fa !important;
    font-family: 'Montserrat', sans-serif;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.contact-card {
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

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

.info-text {
    font-size: 24px;
    color: #4B5563;
    margin: 0;
}

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

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

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

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

@media (max-width: 991.98px) {
    .contact-card {
        padding: 2rem;
    }

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

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

@media (max-width: 575.98px) {
    .contact-card {
        padding: 1.5rem;
    }

    .info-text {
        font-size: 18px;
    }

    .contact-icon {
        width: 24px;
        height: 24px;
    }
}
/*** Global Styles ***/
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa;
}

/*** Newsletter ***/
.newsletter-section {
    background-color: #6c757d;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(108, 117, 125, 0.95), rgba(108, 117, 125, 0.8));
    z-index: 1;
}

.newsletter-section .container {
    position: relative;
    z-index: 2;
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.badge {
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    font-weight: 500;
}

.btn-subscribe {
    width: 60px;
    height: 60px;
    background-color: #fff;
    color: #6c757d;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background-color: #6c757d;
    color: #fff;
    transform: rotate(45deg);
}

/*** Footer ***/
.footer-section {
    background-color: #212529;
}

.footer-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background-color: #fff;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #fff;
    padding-left: 1.5rem;
}

.footer-link:hover::before {
    width: 0.75rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.copyright {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-menu {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: #fff;
}

/*** Animations ***/
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: var(--delay, 0s);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1s ease forwards;
}

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

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*** Responsive ***/
@media (max-width: 768px) {
    .footer-menu {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .py-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .fs-5 {
        font-size: 1rem !important;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}
