@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary: #d3272a;
    --primary-dark: #3b3838;
    --secondary: #1a936f;
    --stars: #FFB11B;
    --dark: #2e2e2e;
    --light: #f8f9fa;
    --gray: #010101;
    --light-gray: #e9ecef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    /* justify-content: space-between; */
    justify-content: center;
    align-items: center;
}

.header-container  .logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    height: 35px;
    width: 140px;
}
.footer-column  .logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    height: 35px;
    width: 160px;
    /* margin-bottom: 20px; */
}
.logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.logo i {
    margin-right: 10px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary);
}

.cta-button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom right, rgb(0 0 0 / 83%) 0%, rgb(211 39 42 / 84%) 100%), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3') no-repeat center center / cover;
    /* background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3') no-repeat center center/cover; */
    /* height: 100vh; */
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    max-width: 650px;
}

.hero h1 {
    /* font-size: 3.5rem; */
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.secondary-button {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.secondary-button:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    border: 2px solid var(--primary-dark);
}

.secondary-button.banner-botton {
    color: white !important;
    background: transparent !important;
    border: 2px solid white;
}

.secondary-button.banner-botton:hover {
    color: var(--primary)!important;
    background: white!important;
    border: 2px solid white;
}

.hero-image-div {
    position: relative;
}

.hero-image {
    position: absolute;
    /* right: 30px;
    top: 50%; */
    top: -300px;
    right: 0px;
    transform: translateY(-50%);
    width: 500px;
    height: 320px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 2px solid white;
}
.hero-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Features Section */
.features {
    padding: 50px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    /* background: white; */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    text-align: center;
    background: linear-gradient(135deg, #d3272af7 0%, #3b3838f7 100%), url('/assets/images/doodle.jpg');
    background-size: 1000px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

/* .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
} */
.feature-card:hover {
    transform: translateY(-15px)!important;
}

.feature-icon {
    width: 80px;
    height: 80px;
    /* background: rgba(255, 107, 53, 0.1); */
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 2rem;
}

.feature-card.gray-color .feature-icon {
    color: var(--dark);
}

.feature-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.5rem;
}
.feature-card p {
    color: var(--light);
}

/* Differentiators */
.differentiators {
    padding: 50px 0;
    background-color: var(--light-gray);
}

.diff-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.diff-content {
    flex: 1;
}

.diff-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    position: relative;
    height: 350px;
    cursor: pointer;
}
.diff-image .shape-div {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, #00000026, #00000040);
    transition: all 0.3s;
}
.diff-image img {
    transition: all 0.3s;
}
.diff-image:hover img {
    transform: rotateZ(5deg) scale(1.3);
}

.diff-points {
    margin-top: 30px;
}

.diff-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.diff-point i {
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

/* How It Works */
.how-it-works {
    padding: 50px 0;
    background-color: white;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 15px;
}

.steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: var(--primary);
    z-index: 1;
}

/* Testimonials */
.testimonials {
    padding: 50px 0;
    background-color: var(--light-gray);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-content {
    margin-bottom: 20px;
    /* font-style: italic; */
    color: var(--gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray);
    font-size: 0.9rem;
}
.author-info .stars {
    text-align: start;
}
.author-info .stars i {
    color: var(--stars);
}
.float-image {
  animation: floatUpDown 3s ease-in-out infinite;
}


/* CTA Section */
.cta-section {
    padding: 100px 0;
    /* background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%), url('assets/images/doodle.jpg'); */
    background: 
    linear-gradient(135deg, #d3272af7 0%, #3b3838f7 100%), url('/assets/images/doodle.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;

    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 30px 0 20px;
    position: relative;
    width: 100%;
    bottom: 0px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 20px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    /* text-decoration: none; */
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
    font-size: 0.9rem;
}
.footer-column.custom-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer-links .custom-li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
}
.footer-links .custom-li i {
    width: 40px;
    aspect-ratio: 1;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border-radius: 50%;
    transition: all 0.3s;
}
.footer-links .custom-li a {
    transition: all 0.3s;
}
.footer-links .custom-li i:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}
.footer-links .custom-li:hover i {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}
.footer-links .custom-li:hover a {
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
}
.text-ellipsis-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    text-align: start;
}

/* why choose us Start  */
.box-wrapper {
    display: flex;
    justify-content: center;
}

.shape-box {
display: inline-block;
position: relative;
z-index: 1;
max-width: 500px;
height: 360px;
margin: 30px 10px;
box-shadow: 0 6px 30px 0 rgba(0, 0, 0, .12);
overflow: hidden;
width: 23.333%;
}

.shape-box_half {
overflow: hidden;
text-align: left;
border-radius: 10px;
}

.shape-box_half:before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
transform: skewY(53.5deg);
transform-origin: top left;
transition: transform 0.4s;
background: #fff;
z-index: 1;
}

.shape-box>img {
width: 100%;
height: 100%;
object-fit: cover;
}

.bg-black {
background-color: #000;
}

.opacity-60 {
opacity: 0.6;
}

.brk-abs-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to bottom right, var(--primary), var(--dark));
}

.shape-box_half figcaption {
position: absolute;
left: 0;
right: 0;
bottom: 0;
padding: 0 30px 30px;
transition: transform 0.4s;
transform: translateY(100%);
z-index: 3;
}

.shape-box_half figcaption .show-cont {
/* position: absolute;
bottom: calc(100% + 30px);
left: 30px;
right: 30px;
transition: bottom 0.4s; */
    position: absolute;
    bottom: calc(100% + 20px);
    left: 30px;
    right: 30px;
    transition: bottom 0.4s;
}

.card-no {
font-size: 36px;
color: #ffc107;
margin: 10px 0;
}

.show-cont .card-no i {
    color: var(--primary);
    width: 60px;
    border: 1px dashed red;
    border-radius: 50%;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-main-title {
margin-top: 8px;
font-size: 1.3rem;
font-weight: 700;
text-transform: uppercase;
color: #292b2c;
width: 190px;
}

.card-content {
margin-top: 20px;
}

.read-more-btn {
border: 2px solid #db3236;
font-size: 14px;
cursor: pointer;
padding: 10px 20px;
display: inline-block;
text-transform: uppercase;
letter-spacing: .08em;
font-weight: 600;
transition: all 0.3s;
background: #db3236;
color: #fff;
border-radius: 2px;
margin-top: 25px;
text-decoration: none;
}

.read-more-btn:hover {
background: transparent;
color: #db3236;
}

.shape-box_half>.after {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--primary);
opacity: 0;
transition: opacity 0.4s;
}

/* Hover Effects */
.shape-box_half:hover:before {
transform: skewY(20deg);
}

.shape-box_half:hover figcaption {
transform: translateY(0);
}

.shape-box_half:hover figcaption .show-cont {
bottom: 100%;
}

.shape-box_half:hover>.after {
opacity: 1;
}
.profile-name {
    width: 60px;
    aspect-ratio: 1;
    background: linear-gradient(to bottom right, var(--primary), var(--dark));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.profile-name span {
    font-size: 25px;
    font-weight: 500;
    color: white;
}
/* why choose us End  */


/* Contact Form Modal Start */
.custom-modal {
    display: none; 
    position: fixed; 
    z-index: 999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0,0,0,0.6); 
    padding-top: 80px;
}

/* Modal Box */
.custom-modal-content {
    background: #fff;
    margin: auto;
    padding: 20px;
    width: 600px;
    border-radius: 8px;
    position: relative;
    animation: fadeIn 0.3s ease;
}

/* Close Button */
.close-btn {
    font-size: 30px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
}

/* Form Styling */
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
textarea {
    resize: none;
    height: 80px;
}
.submit-btn {
    width: 100%;
    background: #ff6600;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
.submit-btn:hover {
    background: #e65500;
}
.modal-title-div {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
}
.cta-button.custom-width {
    width: 100%;
}
.form-group.custom-check-form input {
    width: 30px;
    height: 15px;
}
.form-group.custom-check-form label {
    display: inline-flex;
    cursor: pointer;
    justify-content: start;
    align-items: center;
}
.error-msg {
    color: red;
    border-radius: 5px;
    height: 25px;
    padding: 0px 10px;
    display: inline-block;
    background: #ff000036;
}
.success-msg {
    color: green;
    border-radius: 5px;
    height: 25px;
    padding: 0px 10px;
    display: inline-block;
    background: #00800036;
}
.modal-title-para h1 {
    font-weight: 600;
}
/* Contact Form Modal End */

/* Whatsapp Modal Start  */
.wa__button {
border-bottom: none !important
}

.wa__btn_w_img:hover {
text-decoration: none
}

.wa__button,
.wa__btn_popup,
.wa__button *,
.wa__btn_popup *,
.wa__btn_popup :before,
.wa__button :before,
.wa__button :after,
.wa__btn_popup :after,
.wa__popup_chat_box,
.wa__popup_chat_box *,
.wa__popup_chat_box :before,
.wa__popup_chat_box :after {
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box
}

.wa__button {
position: relative;
width: 300px;
min-height: 64px;
display: block;
font-family: Arial, Helvetica, sans-serif;
text-decoration: none;
color: #fff;
box-shadow: 0px 4px 8px 1px rgba(32, 32, 37, .09);
-webkit-box-shadow: 0px 4px 8px 1px rgba(32, 32, 37, .09);
-moz-box-shadow: 0px 4px 8px 1px rgba(32, 32, 37, .09)
}

.wa__btn_txt {
display: inline-block;
font-size: 12px;
line-height: 1.33em
}

.wa__btn_w_icon .wa__btn_txt {
padding: 16px 20px 15px 71px
}

.wa__button_text_only .wa__btn_txt,
.wa__r_button.wa__btn_w_img.wa__button_text_only .wa__btn_txt,
.wa__sq_button.wa__btn_w_img.wa__button_text_only .wa__btn_txt {
padding-top: 25px;
padding-bottom: 24px
}

.wa__btn_w_icon .wa__btn_txt .wa__btn_title {
font-weight: 600;
padding-left: 2px;
font-size: 14px
}

.wa__cs_info {
margin-bottom: 2px
}

.wa__btn_status {
color: #f5a623;
font-size: 9px;
padding: 2px 0 0;
font-weight: 700
}

.wa__cs_info .wa__cs_name,
.wa__cs_info .wa__cs_status {
display: inline-block
}

.wa__cs_info .wa__cs_name {
font-weight: 400;
font-size: 12px;
line-height: 1.36em
}

.wa__stt_online .wa__cs_info .wa__cs_name {
color: #d5f0d9
}

.wa__stt_offline .wa__cs_info .wa__cs_name {
color: #76787d
}

.wa__cs_info .wa__cs_status {
width: 36px;
height: 14px;
margin-left: 3px;
padding: 1px;
font-size: 9px;
line-height: 1.34em;
border-radius: 5px;
color: rgba(255, 255, 255, .98);
position: relative;
top: -1px;
left: 0;
text-align: center
}

.wa__stt_online .wa__cs_info .wa__cs_status {
background: #62c971
}

.wa__stt_offline .wa__cs_info .wa__cs_status {
background: #b9bbbe
}

.wa__stt_online {
background: #2db742;
cursor: pointer;
transition: .4s ease all;
-webkit-transition: .4s ease all;
-moz-transition: .4s ease all;
backface-visibility: hidden;
will-change: transform
}

.wa__stt_online .wa__btn_txt {
position: relative;
z-index: 4
}

.wa__r_button.wa__stt_online:before {
border-radius: 50vh
}

.wa__sq_button.wa__stt_online:before {
border-radius: 5px
}

.wa__stt_online:before {
content: '';
transition: .4s ease all;
-webkit-transition: .4s ease all;
-moz-transition: .4s ease all;
background: rgba(0, 0, 0, .2);
position: absolute;
left: 0;
top: 0;
z-index: -1;
width: 100%;
height: 100%;
opacity: 0;
will-change: opacity
}

.wa__button.wa__stt_online:focus,
.wa__button.wa__stt_online:active,
.wa__button.wa__stt_online:hover {
box-shadow: 0px 4px 8px 1px rgba(32, 32, 37, .19);
transform: translate(0, -3px);
-webkit-transform: translate(0, -3px);
-moz-transform: translate(0, -3px);
-ms-transform: translate(0, -3px)
}

.wa__button.wa__stt_online:focus:before,
.wa__button.wa__stt_online:active:before,
.wa__button.wa__stt_online:hover:before {
opacity: 1
}

.wa__stt_online.wa__btn_w_icon .wa__btn_icon img {
transform: scale(1);
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
transition: .2s ease all;
-webkit-transition: .2s ease all;
-moz-transition: .2s ease all
}

.wa__stt_offline {
background: #ebedf0;
color: #595b60;
box-shadow: none;
cursor: initial
}

.wa__stt_offline.wa__btn_w_icon .wa__btn_txt {
padding: 8px 20px 6px 71px
}

.wa__stt_offline.wa__r_button.wa__btn_w_img .wa__btn_txt {
padding: 8px 20px 8px 100px
}

.wa__stt_offline.wa__sq_button.wa__btn_w_img .wa__btn_txt {
padding: 8px 20px 8px 70px
}

.wa__btn_w_icon .wa__btn_icon {
position: absolute;
top: 50%;
left: 16px;
transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-webkit-transform: translate(0, -50%)
}

.wa__btn_w_icon .wa__btn_icon img {
width: 41px;
height: 69px
}

.wa__btn_w_img {
position: relative;
width: 300px;
margin: 20px 0 20px
}

.wa__btn_w_img .wa__cs_img {
position: absolute;
top: 50%;
left: 0;
text-align: center;
transform: translate(0, -50%);
-webkit-transform: translate(0, -50%);
-moz-transform: translate(0, -50%)
}

.wa__btn_w_img .wa__cs_img_wrap {
width: 79px;
height: 79px;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border: 3px solid #fff;
position: relative;
overflow: hidden
}

.wa__btn_w_img .wa__cs_img img {
max-width: 100%;
height: auto;
transition: .2s ease transform;
-webkit-transition: .2s ease transform;
-moz-transition: .2s ease transform
}

.wa__btn_w_img .wa__cs_img:after {
content: '';
background: #fff url(../assets/images/whatsapp_logo_green.svg) center center no-repeat;
background-size: 21px;
display: block;
width: 27px;
height: 27px;
position: absolute;
top: 20px;
right: -14px;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
box-shadow: 0px 4px 6px 0px rgba(39, 38, 38, .3);
-webkit-box-shadow: 0px 4px 6px 0px rgba(39, 38, 38, .3);
-moz-box-shadow: 0px 4px 6px 0px rgba(39, 38, 38, .3)
}

.wa__stt_offline.wa__btn_w_img .wa__cs_img:after {
content: '';
background: #fff url(../assets/images/whatsapp_logo_gray.svg) center center no-repeat;
background-size: 21px;
display: block;
width: 27px;
height: 27px;
position: absolute;
top: 20px;
right: -14px;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
box-shadow: 0px 4px 6px 0px rgba(39, 38, 38, .3);
-webkit-box-shadow: 0px 4px 6px 0px rgba(39, 38, 38, .3);
-moz-box-shadow: 0px 4px 6px 0px rgba(39, 38, 38, .3)
}

.wa__btn_w_img .wa__btn_txt {
padding: 14px 20px 12px 103px
}

.wa__r_button {
border-radius: 50vh
}

.wa__sq_button {
border-radius: 5px
}

.wa__sq_button.wa__btn_w_img {
width: 270px;
margin-left: 30px
}

.wa__r_button.wa__btn_w_img .wa__cs_img {
left: -5px
}

.wa__sq_button.wa__btn_w_img .wa__cs_img {
left: -35px
}

.wa__sq_button.wa__btn_w_img .wa__btn_txt {
padding: 10px 20px 10px 70px;
display: table-cell;
vertical-align: middle;
height: 66px
}

.wa__btn_txt .wa__btn_title {
font-weight: 600
}

.wa__r_button.wa__btn_w_img .wa__btn_txt {
padding: 8px 20px 8px 100px;
display: table-cell;
vertical-align: middle;
height: 66px
}

.wa__r_button.wa__btn_w_img .wa__cs_info .wa__cs_status {
margin-left: 3px
}

.wa__popup_chat_box {
font-family: Arial, Helvetica, sans-serif;
width: 351px;
border-radius: 5px 5px 8px 8px;
-webkit-border-radius: 5px 5px 8px 8px;
-moz-border-radius: 5px 5px 8px 8px;
position: fixed;
overflow: hidden;
box-shadow: 0px 10px 10px 4px rgba(0, 0, 0, .04);
-webkit-box-shadow: 0px 10px 10px 4px rgba(0, 0, 0, .04);
-moz-box-shadow: 0px 10px 10px 4px rgba(0, 0, 0, .04);
bottom: 102px;
right: 25px;
z-index: 999999998;
opacity: 0;
visibility: hidden;
-ms-transform: translate(0, 50px);
transform: translate(0, 50px);
-webkit-transform: translate(0, 50px);
-moz-transform: translate(0, 50px);
transition: .4s ease all;
-webkit-transition: .4s ease all;
-moz-transition: .4s ease all;
will-change: transform, visibility, opacity;
max-width: calc(100% - 50px)
}

.wa__popup_chat_box:hover,
.wa__popup_chat_box:focus,
.wa__popup_chat_box:active {
box-shadow: 0px 10px 10px 4px rgba(32, 32, 37, .23);
-webkit-box-shadow: 0px 10px 10px 4px rgba(32, 32, 37, .23);
-moz-box-shadow: 0px 10px 10px 4px rgba(32, 32, 37, .23)
}

.wa__popup_chat_box.wa__active {
-ms-transform: translate(0, 0);
transform: translate(0, 0);
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
visibility: visible;
opacity: 1
}

.wa__popup_chat_box .wa__popup_heading {
position: relative;
padding: 15px 43px 17px 74px;
/* color: #d9ebc6; */
color: #ffffff;
background: #2db742
}

.wa__popup_chat_box .wa__popup_heading_sm {
padding: 12px 15px 17px 74px
}

.wa__popup_chat_box .wa__popup_heading:before {
content: '';
background: url(/assets/images/whatsapp/whatsapp_logo.svg) center top no-repeat;
background-size: 33px;
display: block;
width: 55px;
height: 33px;
position: absolute;
top: 20px;
left: 12px
}

.wa__popup_chat_box .wa__popup_heading_sm:before {
top: 19px;
left: 11px
}

.wa__popup_chat_box .wa__popup_heading .wa__popup_title {
padding-top: 2px;
padding-bottom: 3;
color: #fff;
font-size: 18px;
line-height: 24px
}

.wa__popup_chat_box .wa__popup_heading .wa__popup_intro {
padding-top: 4px;
font-size: 12px;
line-height: 20px
}

.wa__popup_chat_box .wa__popup_heading_sm .wa__popup_intro {
padding-top: 0
}

.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a {
display: inline-block;
color: #fff;
text-decoration: none
}

.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a:hover,
.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a:focus,
.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a:active {
text-decoration: underline
}

.wa__popup_chat_box .wa__popup_notice {
font-size: 11px;
color: #a5abb7;
font-weight: 500;
padding: 0 3px
}

.wa__popup_chat_box .wa__popup_content {
background: #fff;
padding: 13px 20px 21px 19px;
text-align: center
}

.wa__popup_chat_box .wa__popup_content_left {
text-align: left
}

.wa__popup_chat_box .wa__popup_avatar {
position: absolute;
overflow: hidden;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
left: 12px;
top: 12px
}

.wa__popup_chat_box .wa__popup_avatar.nta-default-avt {
border-radius: unset;
-webkit-border-radius: unset;
-moz-border-radius: unset
}

.wa__popup_chat_box .wa__stt {
padding: 13px 40px 12px 74px;
position: relative;
text-decoration: none;
display: table;
width: 100%;
border-left: 2px solid #2db742;
background: #f5f7f9;
border-radius: 2px 4px;
-webkit-border-radius: 2px 4px;
-moz-border-radius: 2px 4px
}

.wa__popup_chat_box .wa__stt:after {
content: '';
background: url(/assets/images/whatsapp/whatsapp_logo.svg) 0 0 no-repeat;
position: absolute;
right: 14px;
top: 26px;
width: 20px;
height: 20px;
background-size: 100% 100%;
-webkit-background-size: 100% 100%;
-moz-background-size: 100% 100%
}

.wa__popup_chat_box .wa__stt.wa__stt_offline:after {
background-image: url(../images/whatsapp_logo_gray_sm.svg)
}

.wa__popup_chat_box .wa__stt.wa__stt_online {
transition: .2s ease all;
-webkit-transition: .2s ease all;
-moz-transition: .2s ease all
}

.wa__popup_chat_box .wa__stt.wa__stt_online:hover,
.wa__popup_chat_box .wa__stt.wa__stt_online:active,
.wa__popup_chat_box .wa__stt.wa__stt_online:focus {
background: #fff;
box-shadow: 0px 7px 15px 1px rgba(55, 62, 70, .07);
-webkit-box-shadow: 0px 7px 15px 1px rgba(55, 62, 70, .07);
-moz-box-shadow: 0px 7px 15px 1px rgba(55, 62, 70, .07)
}

.wa__popup_content_list .wa__popup_content_item {
margin: 14px 0 0;
transform: translate(0, 20px);
-webkit-transform: translate(0, 20px);
-moz-transform: translate(0, 20px);
will-change: opacity, transform;
opacity: 0
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item {
transition: .4s ease all;
-webkit-transition: .4s ease all;
-moz-transition: .4s ease all;
transition-delay: 2.1s;
-webkit-transition-delay: 2.1s;
-moz-transition-delay: 2.1s
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(1) {
transition-delay: .3s;
-webkit-transition-delay: .3s;
-moz-transition-delay: .3s
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(2) {
transition-delay: .5s;
-webkit-transition-delay: .5s;
-moz-transition-delay: .5s
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(3) {
transition-delay: .7s;
-webkit-transition-delay: .7s;
-moz-transition-delay: .7s
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(4) {
transition-delay: .9s;
-webkit-transition-delay: .9s;
-moz-transition-delay: .9s
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(5) {
transition-delay: 1.1s;
-webkit-transition-delay: 1.1s;
-moz-transition-delay: 1.1s
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(6) {
transition-delay: 1.3s;
-webkit-transition-delay: 1.3s;
-moz-transition-delay: 1.3s
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(7) {
transition-delay: 1.5s;
-webkit-transition-delay: 1.5s;
-moz-transition-delay: 1.5s
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(8) {
transition-delay: 1.7s;
-webkit-transition-delay: 1.7s;
-moz-transition-delay: 1.7s
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(9) {
transition-delay: 1.9s;
-webkit-transition-delay: 1.9s;
-moz-transition-delay: 1.9s
}

.wa__popup_chat_box.wa__lauch .wa__popup_content_list .wa__popup_content_item {
opacity: 1;
transform: translate(0, 0);
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0)
}

.wa__popup_content_list .wa__popup_content_item .wa__member_name {
font-size: 14px;
color: #363c47;
line-height: 1.188em !important
}

.wa__popup_content_list .wa__popup_content_item .wa__member_duty {
font-size: 11px;
color: #989b9f;
padding: 2px 0 0;
line-height: 1.125em !important
}

.wa__popup_content_list .wa__popup_content_item .wa__member_status {
color: #f5a623;
font-size: 10px;
padding: 5px 0 0;
line-height: 1.125em !important
}

.wa__popup_content_list .wa__popup_content_item .wa__popup_txt {
display: table-cell;
vertical-align: middle;
min-height: 48px;
height: 48px
}

.wa__popup_content_list .wa__popup_content_item .wa__stt_offline {
border-left-color: #c0c5ca
}

.wa__popup_avt_list {
font-size: 0;
margin: 7px 0 24px
}

.wa__popup_avt_list .wa__popup_avt_item {
display: inline-block;
position: relative;
width: 46px
}

.wa__popup_avt_list .wa__popup_avt_img {
width: 60px;
height: 60px;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
position: relative;
overflow: hidden;
border: 2px solid #fff;
left: -7px
}

.wa__popup_call_btn {
background: #2db742;
color: #fff;
text-decoration: none;
display: inline-block;
width: 275px;
max-width: 100%;
font-size: 16px;
padding: 14px 10px;
border-radius: 24px;
-webkit-border-radius: 24px;
-moz-border-radius: 24px;
margin: 25px 0 15px;
box-shadow: 0px 8px 17px 2px rgba(13, 15, 18, .2);
-webkit-box-shadow: 0px 8px 17px 2px rgba(13, 15, 18, .2);
-moz-box-shadow: 0px 8px 17px 2px rgba(13, 15, 18, .2)
}

.wa__popup_call_btn.wa__popup_call_btn_lg:before {
content: '';
display: inline-block;
width: 20px;
height: 20px;
position: relative;
background: url(../images/whatsapp_logo_green_sm.svg) 0 0 no-repeat;
background-size: 100% 100%;
-webkit-background-size: 100% 100%;
-moz-background-size: 100% 100%;
vertical-align: top;
top: 0;
margin-right: -19px;
left: -31px;
transition: .2s ease background-image;
-webkit-transition: .2s ease background-image;
-moz-transition: .2s ease background-image
}

.wa__popup_call_btn.wa__popup_call_btn_lg:hover:before,
.wa__popup_call_btn.wa__popup_call_btn_lg:focus:before,
.wa__popup_call_btn.wa__popup_call_btn_lg:active:before {
background-image: url(../images/whatsapp_logo.svg)
}

.wa__popup_chat_box_gray {
border-radius: 2px 2px 8px 8px
}

.wa__popup_chat_box_gray .wa__popup_heading_gray {
background: #f8f8f8;
border-top: 3px solid #2db742;
color: #868c9a;
font-weight: 500
}

.wa__popup_chat_box_gray .wa__popup_heading_gray .wa__popup_title {
color: #595b60
}

.wa__popup_chat_box_gray .wa__popup_heading_gray:before {
content: '';
background: url(../images/whatsapp_logo_green.svg) center top no-repeat;
background-size: 33px;
display: block;
width: 55px;
height: 33px;
position: absolute;
top: 20px;
left: 12px
}

.wa__popup_chat_box_gray .wa__popup_heading_gray .wa__popup_intro a {
color: #595b60
}

.wa__popup_chat_box_ct {
width: 384px;
text-align: center
}

.wa__popup_chat_box_ct .wa__popup_heading_ct {
text-align: center;
padding: 18px 0 18px
}

.wa__popup_chat_box_ct .wa__popup_heading_ct:before {
content: '';
background: url(../images/whatsapp_logo.svg) center top no-repeat;
background-size: 30px;
display: block;
width: 30px;
height: 31px;
position: absolute;
top: 15px;
left: 72px
}

.wa__popup_chat_box_ct .wa__popup_heading_ct .wa__popup_title {
padding-left: 22px;
padding-bottom: 14px
}

.wa__popup_chat_box_ct .wa__popup_heading_ct .wa__popup_intro {
margin-top: -5px;
line-height: 12px
}

.wa__popup_chat_box_ct .wa__popup_ct_avt_list:after {
content: '';
clear: both;
display: block
}

.wa__popup_chat_box_ct .wa__popup_ct_content {
background: #fff;
padding: 0 0 14px
}

.wa__popup_chat_box_ct .wa__popup_ct_content .wa__popup_notice {
padding-top: 18px;
padding-bottom: 15px
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item {
width: 33%;
float: left;
font-size: 10px
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item a {
text-decoration: none;
color: #989b9f
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__popup_ct_txt {
padding-top: 8px
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_name {
color: #363c47;
font-size: 13px
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_duty {
color: #989b9f;
padding: 3px 0 0
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_stt_online {
color: #2db742;
font-size: 9px;
line-height: 12px;
display: inline-block;
padding: 3px 0 0 16px;
background: url(../images/whatsapp_logo_green.svg) 0 3px no-repeat;
background-size: 12px auto;
-webkit-background-size: 12px auto;
-moz-background-size: 12px auto
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_stt_offline {
color: #f5a623;
font-size: 9px;
line-height: 12px;
padding: 2px 0 0
}

.wa__popup_chat_box_ct .wa__popup_ct_avatar img {
border-radius: 50%
}

.wa__popup_chat_box_ct .wa__popup_ct_call_btn {
width: 97px;
font-size: 11px;
padding: 9px 10px 11px;
margin: 15px 0 15px
}

.wa__btn_popup {
position: fixed;
right: 20px;
bottom: 20px;
cursor: pointer;
font-family: Arial, Helvetica, sans-serif;
z-index: 999
}

.wa__btn_popup .wa__btn_popup_icon {
width: 56px;
height: 56px;
background: #2db742;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
box-shadow: 0px 6px 8px 2px rgba(0, 0, 0, .14);
-webkit-box-shadow: 0px 6px 8px 2px rgba(0, 0, 0, .14);
-moz-box-shadow: 0px 6px 8px 2px rgba(0, 0, 0, .14)
}

.wa__btn_popup .wa__btn_popup_icon:before {
content: '';
position: absolute;
z-index: 1;
width: 100%;
height: 100%;
left: 0;
top: 0;
background: transparent url(/assets/images/whatsapp/whatsapp_logo.svg) center center no-repeat;
background-size: 30px auto;
-webkit-background-size: 30px auto;
-moz-background-size: 30px auto;
transition: .4s ease all;
-webkit-transition: .4s ease all;
-moz-transition: .4s ease all
}

.wa__btn_popup .wa__btn_popup_icon:after {
content: '';
opacity: 0;
position: absolute;
z-index: 2;
width: 100%;
height: 100%;
left: 0;
top: 0;
background: transparent url(/assets/images/whatsapp/whatsapp_logo.svg) center center no-repeat;
background-size: 14px auto;
-webkit-background-size: 14px auto;
-moz-background-size: 14px auto;
transition: .4s ease all;
-webkit-transition: .4s ease all;
-moz-transition: .4s ease all;
-ms-transform: scale(0) rotate(-360deg);
transform: scale(0) rotate(-360deg);
-webkit-transform: scale(0) rotate(-360deg);
-moz-transform: scale(0) rotate(-360deg)
}

.wa__btn_popup.wa__active .wa__btn_popup_icon:before {
opacity: 0;
-ms-transform: scale(0) rotate(360deg);
transform: scale(0) rotate(360deg);
-webkit-transform: scale(0) rotate(360deg);
-moz-transform: scale(0) rotate(360deg)
}

.wa__btn_popup.wa__active .wa__btn_popup_icon:after {
opacity: 1;
-ms-transform: scale(1) rotate(0deg);
transform: scale(1) rotate(0deg);
-webkit-transform: scale(1) rotate(0deg);
-moz-transform: scale(1) rotate(0deg)
}

.wa__btn_popup .wa__btn_popup_txt {
position: absolute;
width: 156px;
right: 100%;
background-color: #f5f7f9;
font-size: 12px;
color: #43474e;
top: 15px;
padding: 7px 0 7px 12px;
margin-right: 7px;
letter-spacing: -.03em;
border-radius: 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
transition: .4s ease all;
-webkit-transition: .4s ease all;
-moz-transition: .4s ease all
}

.wa__btn_popup.wa__active .wa__btn_popup_txt {
-ms-transform: translate(0, 15px);
transform: translate(0, 15px);
-webkit-transform: translate(0, 15px);
-moz-transform: translate(0, 15px);
opacity: 0;
visibility: hidden
}
/* Whatsapp Modal End  */

.footer-email .footer-links {
    display: flex;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-image {
        display: none;
    }
    
    .diff-container {
        flex-direction: column;
    }
    
    .steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .steps::before {
        display: none;
    }
}

@media (max-width: 820px) {
    .wa__btn_popup_txt {
        display: none;
    }
    .wa__btn_popup {
        z-index: 99;
    }
    footer {
        position: fixed;
        width: 100%;
        bottom: 0px;
    }
    .step {
        padding: 10px 10px;
        background: #eee;
    }
    .card-no {
        text-align: center;
        font-size: 30px;
    }
    .shape-box_half:before {
        top: 190px;
        left: 5px;
        right: 6px;
        bottom: 6px;
        transform: skewY(0deg);
        background: #fffffff5;
        border-radius: 10px;
    }
    .card-main-title {
        font-size: 1.17rem;
        text-align: center;
        width: 100%;
    }
    .shape-box_half figcaption .show-cont {
        left: 10px;
        right: 10px;
    }
    .shape-box {
        width: 47%;
        height: 300px;
        margin: 0px 10px 10px 0px;
    }
    .box-wrapper {
        flex-wrap: wrap;
    }
    .overflow-hidden {
        overflow-x: hidden;
        width: 100%;
    }
    .hero {
        height: 100vh;
    }
    .hero h1 {
        font-size: 2.3rem;
    }
    
    nav ul {
        display: none;
    }
    
    .hero-buttons, .cta-buttons {
        /* flex-direction: column; */
        flex-direction: row;
        align-items: flex-start;
    }
    .steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 510px) {
    .footer-links .custom-li {
        margin-top: 10px;
        align-items: center;
        justify-content: start;
    }
    .footer-email .footer-links {
        flex-direction: column;
        gap: 0px;
        margin-top: 20px;
    }
    .wa__btn_popup {
        right:10px;
        bottom:10px;
    }
    footer {
        position: relative;
    } 
    .custom-modal-content {
        /* width: 100%; */
        width: 95%;
    }
    .feature-card h3 {
        font-size: 1.4rem;
        font-weight: 600;
    }
    .show-cont .card-no i {
        width: 50px;
    }
    .swiper {
        padding: 0px 0px;
    }
    .card-no {
        font-size: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .shape-box_half:before {
        top: 160px;
        left: 5px;
        right: 6px;
        bottom: 6px;
        transform: skewY(0deg);
        background: #fffffff5;
        border-radius: 10px;
    }
    .swiper-button-next, .swiper-button-prev {
        display: none!important;
    }
    .card-main-title {
        font-size: 1.1rem;
        text-align: center;
        width: 100%;
    }
    .shape-box_half figcaption .show-cont {
        left: 10px;
        right: 10px;
    }
    .shape-box {
        width: 47%;
        height: 300px;
        margin: 0px 10px 10px 0px;
        pointer-events: none;
    }
    .box-wrapper {
        flex-wrap: wrap;
    }
    .cta-section {
        background: linear-gradient(135deg, #d3272af7 0%, #3b3838f7 100%), url(/assets/images/doodle.jpg);
        background-size: cover;
    }
    .footer-column.custom-footer p
    {
        text-align: center;
    }
    .overflow-hidden {
        overflow-x: hidden;
        width: 100%;
    }
    .hero {
        height: 80vh;
    }
    .hero-buttons, .cta-buttons {
        flex-direction: row;
        align-items: flex-start;
    }
    .steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .step {
        padding: 10px 5px;
        background: #eee;
    }
    .section-title h2 {
        font-size: 2rem;
    }
}

@media only screen and (min-width: 1300px) and (max-width: 1500px) {
    footer {
        position: relative;
    }
}

@media only screen and (min-width: 1020px) and (max-width: 1190px) {
    header nav {
        display: none;
    }
    .hero-image {
        width: 400px;
        height: 280px;
    }
    .shape-box_half figcaption {
        padding: 0 12px 10px;
    }
    .shape-box_half figcaption .show-cont {
        left: 12px;
    }
}


/* Animation keyframes */
@keyframes floatUpDown {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}
/* Animation */
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}
