﻿=
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Londrina+Shadow&family=Alegreya+Sans+SC&family=Chango&family=Caladea&family=Rubik+Moonrocks&family=Bungee+Inline&family=Alegreya+Sans+SC&family=Rammetto+One&family=Michroma&family=Nosifer&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Londrina+Shadow&family=Alegreya+Sans+SC&family=Chango&family=Caladea&family=Rubik+Moonrocks&family=Bungee+Inline&family=Alegreya+Sans+SC&family=Rammetto+One&family=Michroma&family=Nosifer&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bowlby+One&family=Days+One&family=Lilita+One&family=Titan+One&display=swap');


body {
    font-family: "Open Sans", sans-serif;
}

a {
    color: #000000;
    text-decoration: none;
}

a:hover {
    color: #5faee3;
    text-decoration: none;
}

h1,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

h2,
h3 {
    font-family: "Playfair Display", serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    width: 40px;
    height: 40px;
    border-radius: 5%;
    transition: all 0.4s;
    background: white;
    color: #0d381a;
    border: 2px solid black;
    border-radius: 10%;
}

.back-to-top i {
    font-size: 28px;
    color: black;
    line-height: 0;
}

.back-to-top:hover {
    background: #0274a9;
    color: white;
    border: 2px solid white;
    border-radius: 10%;
}

.back-to-top i:hover {
    color: white;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    z-index: 997;
    transition: all 0.5s ease;
    padding: 16px 0;
    background: linear-gradient(45deg, #E16A54, #F39E60);
    /* Rich blue */
    width: 100%;
    margin: 0px auto 0;
}

#header.header-scrolled {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    top: 0;
    margin-top: 0;
    border-radius: 0;
    width: 100%;
    border: 0;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 50px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: inline-block;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 500;
    color: #e3f2fd;
    white-space: nowrap;
    transition: color 0.3s ease, transform 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover>a {
    color: #bbdefb;
    transform: translateY(-2px);
    /* Gentle hover effect */
}

.navbar .getstarted,
.navbar .getstarted:focus {
    padding: 10px 30px;
    margin-left: 30px;
    border-radius: 50px;
    color: #026bc8;
    background: #f8f8f9;
    transition: all 0.3s ease;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    background: #026bc800;
    border: 2px solid #fbfdff;
    color: #f4f6f9;
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/

.mobile-nav-toggle {
    color: #e3f2fd;
    /* White mobile toggle */
    font-size: 28px;
    cursor: pointer;
    display: none;
    position: absolute;
    /* Fix position to top-right corner */
    transition: transform 0.3s ease;
}

.mobile-nav-toggle.bi-list {
    top: -10px;
    right: 4px;
}

.mobile-nav-toggle.bi-x {
    top: 18px;
    right: 10px;
}


@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }

    #header {
        box-shadow: 0px 2px 12px rgba(106, 91, 91, 0.0);
        background-color: #0d47a1;
        /* Match the theme */
    }

    .navbar .getstarted,
    .navbar .getstarted:focus {
        margin-left: 0px;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(13, 71, 161, 0.9);
    transition: 0.3s ease;
    z-index: 999;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 70px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 8px;
    background-color: #1e88e5;
    /* Vibrant blue */
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    text-align: center;
    font-size: 18px;
    color: #e3f2fd;
}

.navbar-mobile ul.list-border li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 0;
    margin: 18px;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #bbdefb;
    /* Light blue hover */
}

/*--------------------------------------------------------------
#  Navbar End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
    background: linear-gradient(to right, #7C444F, #9F5255);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    color: #ffffff;
}

.hero-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.hero-text {
    padding-left: 50px;
    padding-top: 100px;
    max-width: 50%;
    text-align: left;
}

.hero-title {
    font-size: 90px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #f1f1f1;
    display: flex;
    font-family: 'Caladea', serif;
    align-items: center;
}


.hero p {
    font-size: 30px;
    margin-bottom: 30px;
    color: #ffffff;
}


.hero .cta-buttons {
    display: flex;
    gap: 20px;
}

.hero .cta-buttons .btn {
    font-size: 18px;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero .cta-buttons .btn-primary {
    background: linear-gradient(45deg, #ffffff, #f1f1f1);
    border: none;
    color: #013d7f;
}

.hero .cta-buttons .btn-outline-primary {
    background-color: transparent;
    border: 2px solid #dbf6fd;
    color: #ffffff;
}

.hero .cta-buttons .btn:hover {
    transform: translateY(-5px);
}

.hero-image {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 90%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}


@media (max-width: 1024px) {
    #hero {
        height: 100%;
        min-height: 100vh;
    }

    .hero-container {
        margin-top: 40px;
    }

    .hero-text {
        padding-top: 100px;
        max-width: 100%;
        text-align: center;
    }

    #hero .hero-title {
        text-align: center;
    }

    #hero p {
        text-align: center;
        font-size: 22px;
        padding: 0px 30px;
    }

    #hero .hero-img img {
        width: 80%;
    }

    .hero .cta-buttons {
        flex-direction: row;
        align-self: center;
    }
}

@media (max-width: 991px) {

    #hero .hero-img {
        text-align: center;
    }

    #hero .hero-img img {
        width: 50%;
    }

    #hero p {
        align-self: center;
        font-size: 16px;
        padding: 0px 30px;
    }

    #hero .hero-title {
        align-self: center;
    }

    .hero .cta-buttons {
        align-self: center;
        flex-direction: row;
    }

    .hero .cta-buttons .btn {
        font-size: 15px;
        padding: 14px 15px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
    }

    .hero-text {
        padding: 50px 10px;
        align-self: center;
    }

    .hero-title {
        font-size: 40px;
        align-self: center;
    }

    .hero p {
        font-size: 15px;
    }

    .hero .cta-buttons {
        align-self: center;
        flex-direction: column;
    }

    .hero .cta-buttons .btn {
        flex-direction: column;
        font-size: 17px;
        width: 100%;
        padding: 11px 22px;
    }


    .hero-image {
        max-width: 100%;
        margin-top: 20px;
    }
}


/*--------------------------------------------------------------
#  Hero Section End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}


/*--------------------------------------------------------------
#  Service overview Section Start
--------------------------------------------------------------*/
/* Service overview Section */

.service-overview {
    background-color: #f6f9fc;
    padding: 60px 20px;
    text-align: center;
}

.service-overview .section-header {
    margin-bottom: 40px;
}

.service-overview .section-header h4 {
    font-size: 18px;
    color: #E16A54;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-overview .section-header h2 {
    font-size: 32px;
    color: #183b56;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-overview .section-header p {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.service-overview .service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.service-overview .service-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-overview .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.service-overview .service-card i {
    font-size: 40px;
    color: #E16A54;
    margin-bottom: 15px;
}

.service-overview .service-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #183b56;
    margin-bottom: 10px;
}

.service-overview .service-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {

    .service-overview .service-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-top: 40px;
    }
}


/*--------------------------------------------------------------
# Service-overview Section  End

--------------------------------------------------------------*/


/*--------------------------------------------------------------
# About Section Start
--------------------------------------------------------------*/
/* Abour Section */

.about-us {
    padding: 80px 0;
    background: linear-gradient(to right, #7C444F, #9F5255);
    color: white;
}

.section-title h4 {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: bold;
    margin-top: 10px;
    letter-spacing: -1px;
}

.about-text .about-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.about-text .about-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #f8f9fa;
}

.about-benefits {
    margin-top: 20px;
}


.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    padding-left: 15px;
    border-left: 4px solid #9F5255;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    /* Smooth transition for hover effect */
}

.benefit-item i {
    font-size: 32px;
    margin-bottom: 10px;
    color: white;
    transition: color 0.3s ease;
}

.benefit-item p {
    font-size: 16px;
    font-weight: 600;
}

.small-text {
    font-size: 14px;
    font-weight: normal;
    color: #f8f9fa;
}

.benefit-item:hover i {
    color: #9F5255;
}

.about-image img {
    max-width: 90%;
    height: auto;
    padding: 40px;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 868px) {
    .about-us .row {
        flex-direction: row;
    }

    .about-image img {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .about-text .about-content h3 {
        font-size: 26px;
        text-align: center;
        margin: 30px 0px;
    }

    .about-text .about-content p {
        font-size: 17px;
        text-align: center;
    }

    .benefit-item {
        text-align: center;
        margin-bottom: 10px;
    }
}


/* Responsive Design */
@media (max-width: 760px) {


    .benefit-item {
        text-align: center;
        margin-bottom: 10px;
    }

    .about-benefits {
        display: grid;
        /* Use grid to control the layout */
        grid-template-columns: repeat(2, 1fr);
        /* Two items per row */
    }

    .benefit-item i {
        font-size: 35px;
    }

    .benefit-item p {
        font-size: 14px;
        font-weight: 600;
    }
}


/*--------------------------------------------------------------
# About Section End
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# How it works Timeline start
--------------------------------------------------------------*/
/* How it works Section */

.how-it-works {
    padding: 60px 0;
    background-color: #eef7fc;
}

.how-it-works .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.how-it-works .section-title h4 {
    font-size: 20px;
    font-weight: bold;
    color: #E16A54;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.how-it-works .section-title h2 {
    font-size: 32px;
    color: #F39E60;
    font-weight: bold;
    margin-bottom: 20px;
}

.timeline {
    position: relative;
    margin: 40px 0;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #ddd;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 20px 0;
    display: flex;
    align-items: center;
    text-align: left;
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item .timeline-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F39E60;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    left: calc(50% - 20px);
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: calc(50% - 20px);
}

.timeline-item .timeline-content {
    width: 45%;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.timeline-item .timeline-content h4 {
    font-size: 18px;
    color: #F39E60;
    margin-bottom: 10px;
}

.timeline-item .timeline-content p {
    font-size: 18px;
    color: #555;
    margin: 0;
}

/* Responsive Design */

@media (max-width: 798px) {
    .timeline-item .timeline-content {
        width: 80%;
        margin: 80px auto 0px auto;
    }


    .timeline-item .timeline-icon {
        top: 5%;
    }

    .timeline-item:nth-child(even) .timeline-icon {
        top: 5%;
    }
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: row;
        text-align: center;
    }

    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
}


/*--------------------------------------------------------------
# How it works Timeline end
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Services Section Start
--------------------------------------------------------------*/
/* Services Section */


.services {
    background-color: white;
    padding: 40px 0px;
}

.services .section-header h3 {
    color: #E16A54;
    text-transform: uppercase;
    font-weight: 700;
}

.services .section-header p {
    font-size: 1.2rem;
    color: #555;
}

.services .service-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.services .service-item .service-icon {
    font-size: 3rem;
    color: #E16A54;
    margin-right: 20px;
}

.services .service-item .service-details h5 {
    font-size: 1.6rem;
    color: #333;
    font-weight: 600;
}

.services .service-item .service-details p {
    font-size: 1rem;
    color: #000000;
}

.services .service-mobile img {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.services .service-mobile img:hover {
    transform: scale(1.05);
}

.services .line {
    width: 50px;
    height: 3px;
    background-color: #E16A54;
    margin: 10px auto;
}

.wow {
    visibility: hidden;
}

.wow.fadeInUp {
    visibility: visible;
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-delay: 0s;
    animation-timing-function: ease-out;
    animation-fill-mode: both;
}


/*--------------------------------------------------------------
# Services End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Why Choose Us Section start
--------------------------------------------------------------*/
#why-choose-us {
    background-color: #f8f9fa;
    /* Soft light background */
    padding: 80px 0;
}

#why-choose-us h5 {
    font-size: 20px;
    color: #28a745;
    /* Fresh green for emphasis */
    font-weight: 500;
    text-transform: uppercase;
}

#why-choose-us h1 {
    font-size: 36px;
    color: #E16A54;
    /* A deeper green to match your theme */
    font-weight: 700;
    margin-bottom: 40px;
}

#why-choose-us .row .col-lg-4 {
    margin-bottom: 30px;
}

#why-choose-us .position-relative {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#why-choose-us .position-relative:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

#why-choose-us .icon-container {
    width: 90px;
    height: 90px;
    background-color: #28a745;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#why-choose-us .bi {
    font-size: 40px;
    color: #fff;
}

#why-choose-us h5 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-top: 60px;
}

#why-choose-us p {
    font-size: 15px;
    color: #555;
    text-align: center;
    line-height: 1.6;
    margin-top: 20px;
}

#why-choose-us .col-lg-4:nth-child(1) .icon-container {
    background-color: #E16A54;
}

#why-choose-us .col-lg-4:nth-child(2) .icon-container {
    background-color: #ff9f43;
}

#why-choose-us .col-lg-4:nth-child(3) .icon-container {
    background-color: #e83e8c;
}

/* Hover Effect */
#why-choose-us .col-lg-4:hover .position-relative {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 767px) {
    #why-choose-us h1 {
        font-size: 28px;
    }

    #why-choose-us h5 {
        font-size: 18px;
    }

    #why-choose-us .col-lg-4 {
        margin-bottom: 20px;
    }

    #why-choose-us p {
        font-size: 14px;
    }
}


/*--------------------------------------------------------------
# Wny choose us end
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Call to Action Section start
--------------------------------------------------------------*/
.cta-section {
    background: linear-gradient(135deg, #ffffff 0%, #d0f5e2 100%);
    color: #333;
    padding: 60px 0;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.cta-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #E16A54;
}

.cta-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background-color: #25d366;
    color: white;
    font-size: 18px;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    background-color: #128c7e;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-btn i {
    margin-right: 10px;
    font-size: 24px;
}

/* Responsive Design */
@media (max-width: 767px) {
    .cta-title {
        font-size: 28px;
    }

    .cta-description {
        font-size: 14px;
    }

    .cta-btn {
        font-size: 16px;
        padding: 12px 25px;
    }
}


/*--------------------------------------------------------------
# Call to action Ens
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Pricing Start
--------------------------------------------------------------*/
/* Pricing */


.pricing {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.pricing .section-header h3 {
    font-weight: 700;
    color: #E16A54;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pricing .section-header p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.pricing .section-header .line {
    width: 50px;
    height: 3px;
    background-color: #E16A54;
    margin: 20px auto;
}

.pricing .row {
    display: flex;
    justify-content: space-around;
}

/* Individual Pricing Plan Styles */
.pricing-item {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.pricing-item.featured {
    border: 3px solid #E16A54;
    box-shadow: none;
}

.pricing-item .pricing-header h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #E16A54;
    margin-bottom: 10px;
}

.pricing-item .pricing-header p {
    font-size: 1rem;
    color: #555;
}

.pricing-item .pricing-price h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #E16A54;
    margin: 5px 0;
}

.pricing-item .pricing-price span {
    font-size: 1.1rem;
    color: #555;
}

.pricing-item ul {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.pricing-item ul li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
}

.pricing-item ul li i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #E16A54;
}

.pricing-item ul li i.bi-x-circle-fill {
    color: red;
    font-size: 1.5rem;
}

.pricing-item.no-shadow {
    box-shadow: none;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .pricing-item {
        margin-bottom: 20px;
    }

    .pricing-item .pricing-price h3 {
        font-size: 2rem;
    }

    .pricing-item ul li {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .pricing-item .pricing-price h3 {
        font-size: 1.8rem;
    }

    .pricing-item ul li {
        font-size: 0.9rem;
    }
}


/*--------------------------------------------------------------
# Pricing End
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Testimonails
--------------------------------------------------------------*/
/* Testimonails start */

.testimonials {
    background: linear-gradient(to right, #7C444F, #9F5255);
    border-top-left-radius: 250px;
    border-bottom-right-radius: 250px;
    padding: 70px 0;
    margin-bottom: 0px;
}

.testimonials .section-title h4 {
    font-size: 28px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.testimonials .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
    font-family: 'Arial', sans-serif;
}

.testimonial-box {
    background-color: #ffffff00;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.testimonial-box:hover {
    transform: translateY(-10px);
}

.testimonial-content {
    font-size: 16px;
    font-style: italic;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #9ac2ef;
}

.client-info h3 {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
}

.client-info h4 {
    font-size: 14px;
    color: #eaf3f5;
    text-transform: uppercase;
}

@media (max-width: 1324px) {
    .testimonials .col-lg-3 {
        flex: 1 1 48%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {

    .testimonials .col-lg-3 {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .testimonials {
        border-top-left-radius: 100px;
        border-bottom-right-radius: 100px;
    }

    .testimonials .row {
        text-align: center;
    }

    .testimonial-box {
        margin-bottom: 30px;
    }

    .message-bubble {
        font-size: 13px;
    }

    .testimonial-item h3 {
        font-size: 16px;
    }
}

/* Add more margin below testimonials */
.testimonials .row {
    margin-bottom: 80px;
    /* Increased space between testimonials and next section */
}


/*--------------------------------------------------------------
# Testimonials End
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Faq Start
--------------------------------------------------------------*/
/* Faq Section */

.faq-section {
    background-color: #fafafa;
    padding: 60px 0;
}

.faq-section .section-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #E16A54;
    margin-bottom: 10px;
}

.faq-section .section-header p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.faq-section .section-header .line {
    width: 60px;
    height: 3px;
    background-color: #E16A54;
    margin: 20px auto;
}

/* FAQ List Styles */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question h4 {
    font-size: 1.3rem;
    color: #333;
    margin-left: 15px;
    flex: 1;
}

.faq-question .faq-icon {
    font-size: 1.8rem;
    color: #E16A54;
}

.faq-question .toggle-icon {
    font-size: 1.8rem;
    color: #E16A54;
    transition: transform 0.3s ease;
}

.faq-question.active .toggle-icon {
    transform: rotate(45deg);
}

/* FAQ Answer Styles */
.faq-answer {
    padding: 15px 20px;
    background-color: #f9f9f9;
    display: none;
}

.faq-answer p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .faq-section .section-header h3 {
        font-size: 2rem;
    }

    .faq-section .section-header p {
        font-size: 1rem;
    }

    .faq-question h4 {
        font-size: 1.1rem;
    }

    .faq-answer p {
        font-size: 1rem;
    }
}


/*--------------------------------------------------------------
# Faq End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
    color: white;
    padding: 80px 0;
}

.contact h4 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #E16A54;
}

.contact p {
    font-weight: 500;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

/* Contact Form */
.contact .contact-form {
    background: linear-gradient(to right, #7C444F, #0f6f88);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact .contact-form .form-group {
    margin-bottom: 20px;
}

.contact .contact-form input,
.contact .contact-form textarea {
    border-radius: 8px;
    font-size: 18px;
    padding: 18px 15px;
    width: 100%;
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: border-color 0.3s ease-in-out;
}

.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.5);
}

.contact .php-email-form button[type=submit] {
    background: linear-gradient(90deg, #1e91b1, #327abc);
    border: none;
    padding: 14px 30px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    width: 100%;
    transition: 0.4s ease-in-out;
}

.contact .php-email-form button[type=submit]:hover {
    cursor: pointer;
    background: transparent;
    border: 2px solid white;
}

/* Contact Info Section */
.contact-info {
    background: linear-gradient(to right, #7C444F, #007897);
    padding: 30px;
    border-radius: 8px;
    margin-left: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info h5 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: left;
}

.contact-info p {
    color: white;
}

.contact-info ul {
    list-style-type: none;
    padding: 0;
    color: #f3f6f8;
}

.contact-info li {
    font-size: 16px;
    margin-bottom: 15px;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #f3f6f9;
}

/* Hover effects */
.contact-form input:hover,
.contact-form textarea:hover {
    background-color: rgba(255, 255, 255, 0.2);
}


.contact-info .whatsapp-button {
    background: #25d366;
    padding: 12px 30px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    text-align: center;
    margin-top: 10px;
}

.contact-info .whatsapp-button:hover {
    background: #128c7e;
    text-decoration: none;
}

.contact-info .whatsapp-button i {
    margin-right: 10px;
}

.contact-container {
    padding: 0px 60px;
}

@media (max-width: 1034px) {
    .contact-info h5 {
        font-size: 23px;
    }

    .contact-info p {
        font-size: 17px;
    }


    .contact-info .whatsapp-button {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .contact {
        padding-bottom: 0px;
    }

    .contact-info {
        margin-left: 0;
        margin-top: 30px;
    }

    .contact-container {
        padding: 0px;
        background: linear-gradient(to right, #7C444F, #007897);
    }

    .contact p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 20px;
    }

    .contact-info {
        margin-top: 20px;
    }

    .contact-info .whatsapp-button {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-info h5 {
        font-size: 24px;
    }

    .contact .contact-form,
    .contact .contact-info {
        margin-bottom: 40px;
    }
}

/*--------------------------------------------------------------
# contact End
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/* Footer Section */
.footer {
    background: linear-gradient(to right, #7C444F, #007897);
    color: white;
    padding: 40px 0;
}

.footer h5,
.footer p {
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer .social-icons li {
    display: inline-block;
    margin-right: 12px;
}

.footer .social-icons li a {
    font-size: 22px;
    color: white;
    transition: color 0.3s ease;
}

.footer .social-icons li a:hover {
    color: #9F5255;
}

.footer .footer-logo-section img {
    width: 200px;
    margin-bottom: 20px;
}

.footer .footer-logo-section .footer-tagline {
    font-size: 14px;
    font-style: italic;
    color: #ffffff;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.footer ul li i {
    margin-right: 10px;
    color: #ffffff;
}

.footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer .row>div {
    padding: 25px;
}

.logo h3 {
    color: white;
}

.adress a {
    color: white;
}

/*--------------------------------------------------------------
# Footer End
--------------------------------------------------------------*/
.pt-cus {
    padding-top: 150px;
    padding-bottom: 150px;
    padding-left: 50px;
    padding-right: 50px;
}


@media screen and (max-width: 776px) {
    .pt-cus {
        padding-top: 150px;
        padding-bottom: 150px;
        padding-left: 50px;
        padding-right: 50px;
    }
}



.page-cus {
    margin-top: 100px;
    margin-bottom: 10px;
}