/*------------------------------------------------------------------
Table of content
-------------------
1. Start Header Area
2. slider area start
3. features area css start
4. testimonial
5. blog
6. about us
7. contact us
8. banner
9. sidebar
10. footer
-------------------------------------------------------------------*/
/*------ Typography Style Start ------*/
body {
    color: #151515;
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    font-family: "Sarabun", sans-serif;
    
}

a {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

a:hover,
a:focus {
    outline: none;
    text-decoration: none;
}

p {
    margin-bottom: 8px;
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Sarabun", sans-serif;
    color: #151515;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin: 0;
    line-height: 1.5;
}

h1,
.h1 {
    font-size: 36px;
}

@media only screen and (max-width: 767.98px) {

    h1,
    .h1 {
        font-size: 28px;
    }
}

@media only screen and (max-width: 479.98px) {

    h1,
    .h1 {
        font-size: 26px;
    }
}

h2,
.h2 {
    font-size: 30px;
}

@media only screen and (max-width: 767.98px) {

    h2,
    .h2 {
        font-size: 26px;
    }
}

@media only screen and (max-width: 479.98px) {

    h2,
    .h2 {
        font-size: 24px;
    }
}

h3,
.h3 {
    font-size: 24px;
}

@media only screen and (max-width: 767.98px) {

    h3,
    .h3 {
        font-size: 20px;
    }
}

h4,
.h4 {
    font-size: 20px;
}

h5,
.h5 {
    font-size: 18px;
}

h6,
.h6 {
    font-size: 16px;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

strong,
b {
    font-weight: 700;
}

address {
    margin-bottom: 0;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.bg-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.btn,
button {
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background-color: transparent;
}

.btn:active,
.btn:focus,
button:active,
button:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

input,
textarea {
    resize: none;
}

input:focus,
textarea:focus {
    outline: none;
}

.form-control:focus {
    border-color: green;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* Container and Layout Styles */
.container8 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}
h1 {
    font-size: 24px;
    color: #1a1a1a;
}
p.subtitle {
    font-size: 16px;
    color: #666;
}
.grid8 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* Card Styles */
.card8 {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(33.333% - 40px); /* Default for larger screens */
    max-width: calc(33.333% - 40px); /* Default for larger screens */
    padding: 20px;
    text-align: left;
    transition: transform 0.3s, background-color 0.3s, color 0.3s;
}

.card8:hover {
    transform: translateY(-5px);
    background-color: green;
    color: #fff;
}

.card8.red {
    background-color: #d32f2f;
    color: #fff;
}

.card8 img {
    max-width: 100%;
    height: auto;
    height: 200px;
}

.card8 h3 {
    font-size: 23px;
    margin: 20px 0 10px;
}

.card8 p {
    font-size: 14px;
    line-height: 1.6;
}

.card8 a {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.card8 a:hover {
    text-decoration: underline;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .grid8 {
        flex-direction: column; /* Stack items vertically */
        gap: 20px;
    }
    .card8 {
        flex: 1 1 100%; /* Full width for cards */
        max-width: 100%; /* Full width for cards */
        padding: 15px; /* Reduce padding for smaller screens */
    }
    .card8 img {
        height: 150px; /* Smaller height for images */
    }
    .card8 h3 {
        font-size: 20px; /* Slightly smaller heading size */
    }
    .card8 p {
        font-size: 13px; /* Slightly smaller paragraph size */
    }
}

/*--------- slick slider dot style start -------*/
.slick-dot-style ul.slick-dots {
    bottom: 15px;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.slick-dot-style ul.slick-dots li {
    display: inline-block;
    margin-right: 10px;
}

.slick-dot-style ul.slick-dots li:last-child {
    margin-right: 0;
}

.slick-dot-style ul.slick-dots li button {
    width: 14px;
    height: 14px;
    padding: 0;
    border: none;
    display: block;
    text-indent: -5000px;
    cursor: pointer;
    border-radius: 50%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border: 2px solid #777777;
    background-color: transparent;
}

.slick-dot-style ul.slick-dots li.slick-active button {
    border-color: green;
    background-color: green;
}

.container {
    max-width: 1200px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding:10px;
  
}

@media only screen and (max-width: 767.98px) {
    .container {
        max-width: 550px;
    }
}

@media only screen and (max-width: 575.98px) {
    .container {
        max-width: 450px;
    }
}

@media only screen and (max-width: 479.98px) {
    .container {
        max-width: 300px;
    }
}

/*------- short classes start -------*/
.section-padding {
    padding: 130px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .section-padding {
        padding: 68px 0;
    }
}

.section-padding--ptb_90 {
    padding: 90px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .section-padding--ptb_90 {
        padding: 68px 0;
    }
}

.section-padding--pt_80 {
    padding-top: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .section-padding--pt_80 {
        padding-top: 68px;
    }
}

.section-padding--pb_120 {
    padding-bottom: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .section-padding--pb_120 {
        padding-bottom: 68px;
    }
}

.pb-125 {
    padding-bottom: 125px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .pb-125 {
        padding-bottom: 60px;
    }
}

@media only screen and (min-width: 992px) {
    .pl-lg-45 {
        padding-left: 45px;
    }
}

@media only screen and (min-width: 992px) {
    .pr-lg-45 {
        padding-right: 45px;
    }
}

.pl-30 {
    padding-left: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-65 {
    margin-top: 65px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .mt-65 {
        margin-top: 40px;
    }
}

.mt-100 {
    margin-top: 100px;
}

.mtn-20 {
    margin-top: -20px;
}

.mbn-30 {
    margin-bottom: -30px;
}

.mtn-30 {
    margin-top: -30px;
}

.mtn-40 {
    margin-top: -40px;
}

.mtn-65 {
    margin-top: -65px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .mtn-65 {
        margin-top: -40px;
    }
}

.mtn-10 {
    margin-top: -10px;
}

.mtb-30 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.mtn-40 {
    margin-top: -40px;
}

.ptb-30 {
    padding: 30px 0;
}

.mtn-100 {
    margin-top: -100px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .mtmd-0 {
        margin-top: 0 !important;
    }
}

@media only screen and (max-width: 767.98px) {
    .mtsm-0 {
        margin-top: 0 !important;
    }
}

/*------- short classes end -------*/
/*------- header top style start -------*/
.header-top {
    padding: 12px 0;
}

.header-top-left {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .header-top-left {
        font-size: 16px;
    }
}

.header-top-left a {
    color: #fff;
}

.header-top-left a:hover {
    color: #151515;
}

@media only screen and (max-width: 575.98px) {
    .login-register {
        padding-bottom: 6px;
    }
}

.login-register a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

.login-register a:hover {
    color: #151515;
}

.header-social-link a {
    color: #fff;
    margin-left: 26px;
}

.header-social-link a:hover {
    color: #151515;
}

.header-social-link a:first-child {
    margin-left: 0;
}

/*------- header top style end -------*/
/*------ main menu start ------*/
.brand-logo {
    max-width: 200px;
}

.main-menu-wrapper {
    padding: 20px 0;
}

.main-menu-wrapper.header-transparent {
    padding: 43px 0;
}

.main-menu ul {
    
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    
}

.main-menu ul li {
    position: relative;
    
}

.main-menu ul li a {
    color: #151515;
    font-size: 18px;
    padding: 10px 22px;
    font-weight: 500;
    display: block;
    font-family: "Sarabun", sans-serif;
}

.main-menu ul li a i {
    font-size: 14px;
    padding: 0 3px;
}

.main-menu ul li:last-child a {
    padding-right: 0;
}

.main-menu ul li:hover>a,
.main-menu ul li.active>a {
    color: green;
}

.main-menu ul li ul.dropdown {
    top: 100%;
    left: 0;
    width: 175px;
    position: absolute;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background-color:green;
    opacity: 0;
    visibility: hidden;
    z-index: 99999;
    pointer-events: none;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    border: 1px solid #efefef;
}

.main-menu ul li ul.dropdown li {
    margin-right: 0;
    border-right: none;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

.main-menu ul li ul.dropdown li a {
    color: whitesmoke;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 20px;
    text-transform: capitalize;
    position: relative;
    border-bottom: 1px solid #efefef;
    z-index: 1;
}

.main-menu ul li ul.dropdown li a i {
    float: right;
    padding-top: 5px;
}

.main-menu ul li ul.dropdown li:hover>a {
    color: #fff;
    background-color: greenyellow;
}

.main-menu ul li ul.dropdown li:hover>ul.dropdown {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.main-menu ul li ul.dropdown li:last-child a {
    border-bottom: 0;
}

.main-menu ul li ul.dropdown li ul.dropdown {
    top: 100%;
    left: 100%;
    opacity: 0;
    visibility: hidden;
}

.main-menu ul li:hover ul.dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}
/* Style for the Take a Demo button */
.nav-item button {
    background-color: green; /* Blue background color */
    color: #fff; /* White text color */
    border: none; /* Remove border */
    padding: 10px 20px; /* Padding for size */
    font-size: 16px; /* Font size */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    display: flex;
    align-items: center; /* Vertically center text and icon */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transition for hover effects */
}

/* Style for the nav-item containing the button to push it to the right */
.nav-item:last-child {
    margin-left: auto; /* Push the last item (button) to the far right */
}

/* Space between icon and text */
.nav-item button i {
    margin-right: 8px; /* Space between icon and text */
}

/* Hover effect */
.nav-item button:hover {
    background-color: greenyellow; /* Darker blue on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

/* Focus effect */
.nav-item button:focus {
    outline: none; /* Remove outline on focus */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Light blue glow on focus */
}

/* Active button (when clicked) */
.nav-item button:active {
    background-color: #004085; /* Even darker blue when clicked */
    transform: translateY(1px); /* Slightly depress the button */
}


/*------ main menu end ------*/
/*----- language style strat -----*/
.language {
    position: relative;
    color: #fff;
}

.language .dropdown-list {
    top: 100%;
    right: 0;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    padding: 15px 15px 20px;
    width: 150px;
    z-index: 9;
    background-color: #fff;
    pointer-events: none;
    border: 1px solid #efefef;
}

.language .dropdown-list li {
    margin-left: 0;
    padding: 0;
}

.language .dropdown-list li a {
    color: #151515;
    font-size: 14px;
    display: block;
    padding: 8px 0 3px;
}

.language .dropdown-list li a:hover {
    color: green;
}

.language .dropdown-list li a img {
    vertical-align: inherit;
    padding-right: 5px;
}

.language:hover .dropdown-list {
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.mobile-top-dropdown {
    padding: 20px;
}

.mobile-top-dropdown>a {
    color: #fff;
}

.mobile-top-dropdown .dropdown-toggle:after {
    display: none;
}

/*----- language style end -----*/
/*------ sticky menu style start ------*/
.sticky.is-sticky {
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 9;
    background-color: #fff;
    -webkit-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
    -webkit-animation: 900ms cubic-bezier(0.2, 1, 0.22, 1) 0s normal none 1 running fadeInDown;
    animation: 900ms cubic-bezier(0.2, 1, 0.22, 1) 0s normal none 1 running fadeInDown;
}

.sticky.is-sticky.main-menu-wrapper {
    padding: 10px 0;
}

.sticky.is-sticky.main-menu-wrapper .brand-logo {
    max-width: 160px;
}

/*------ sticky menu style end ------*/
.header-transparent {
    top: 54px;
    left: 0;
    width: 100%;
    position: absolute;
    z-index: 1;
    background-color: transparent;
}

/*----- mobile menu start -----*/
.mobile-header {
    padding: 15px 0;
}

.mobile-logo {
    max-width: 100px;
}

.mobile-main-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.mobile-main-header .mobile-menu-toggler {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-main-header .mobile-menu-toggler .mobile-menu-btn {
    margin-left: 25px;
}

.mobile-main-header .mobile-menu-toggler .mobile-menu-btn span {
    width: 25px;
    height: 2px;
    display: block;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background-color: #151515;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
}

.mobile-main-header .mobile-menu-toggler .mobile-menu-btn span:nth-child(2),
.mobile-main-header .mobile-menu-toggler .mobile-menu-btn span:nth-child(3) {
    margin-top: 5px;
}

.mobile-main-header .mobile-menu-toggler .mobile-menu-btn:hover span {
    background-color: green;
}

.mobile-main-header .mobile-menu-toggler .mobile-menu-btn:hover span:nth-child(1),
.mobile-main-header .mobile-menu-toggler .mobile-menu-btn:hover span:nth-child(3) {
    width: 20px;
}

.mobile-navigation {
    overflow: hidden;
    max-height: 360px;
    padding: 20px;
}

.mobile-navigation nav {
    height: 100%;
}

.mobile-menu {
    margin-top: 30px;
    height: 100%;
    overflow: auto;
    padding-right: 30px;
    margin-right: -30px;
}

@media only screen and (max-width: 479.98px) {
    .mobile-menu {
        margin-top: 15px;
    }
}
.containerw {
    text-align: center;
    padding: 50px 20px;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #0A4A6B;
    color: white;
}

.features-button {
    background-color: #5DADE2;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
}

.main-headingw {
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0;
}

.sub-headingw {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.tab {
    margin: 0 20px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.tab.active {
    font-weight: 700;
}

.tab-divider {
    width: 100px;
    height: 1px;
    background-color: #ccc;
    margin: 0 20px;
}

.content21 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Allow content to wrap on smaller screens */
}

.content-text {
    max-width: 400px;
    text-align: left;
    margin: 0 20px;
}

.content-text h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.content-text p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
}

.content-text ul {
    list-style: none;
    padding: 0;
}

.content-text ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.content-text ul li i {
    color: #5DADE2;
    margin-right: 10px;
}

.content-image {
    margin-left: 40px;
    flex: 1; /* Allow it to take up remaining space */
    text-align: center; /* Center the image */
}

.content-image img {
    max-width: 100%;
    border-radius: 10px;
}

.attendance-card {
    background-color: white;
    color: black;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
}

.attendance-card .status {
    background-color: #5DADE2;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    position: absolute;
    top: -20px;
    left: 20px;
}

.attendance-card .details {
    margin-top: 20px;
}

.attendance-card .details p {
    margin: 5px 0;
}

.attendance-card .button {
    background-color: #5DADE2;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 20px;
}

/* Media Queries for mobile responsiveness */
@media (max-width: 768px) {
    .content21 {
        flex-direction: column; /* Stack content vertically on mobile */
        text-align: center; /* Center content for smaller screens */
    }

    .content-text {
        max-width: 100%;
        margin: 0 0 20px 0; /* Add bottom margin for spacing */
    }

    .content-image {
        margin-left: 0;
        margin-top: 20px; /* Add top margin for spacing */
    }

    .tabs {
        flex-direction: column; /* Stack tabs vertically on smaller screens */
    }

    .tab {
        margin: 10px 0;
    }

    .main-headingw {
        font-size: 28px; /* Reduce font size for better readability on mobile */
    }

    .sub-headingw {
        font-size: 16px; /* Reduce font size for better readability on mobile */
    }

    .features-button {
        font-size: 12px; /* Adjust button text size for mobile */
        padding: 8px 16px; /* Adjust button padding */
    }
}

/* For very small devices like mobile phones in portrait mode */
@media (max-width: 480px) {
    .main-headingw {
        font-size: 24px; /* Adjust the main heading size */
    }

    .sub-headingw {
        font-size: 14px; /* Reduce the subheading size */
    }

    .tabs {
        flex-direction: column; /* Stack tabs vertically for smaller screens */
    }

    .tab {
        font-size: 14px;
    }

    .content-image img {
        max-width: 80%; /* Limit image size on very small screens */
    }
}



.containerq {
    padding: 50px 20px;
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #3498db;
    color: white;
    text-align: center;
    height:500px;
    align-items: center;
    padding-top: 150px;
}

.logoq {
    margin-bottom: 20px;
    
}

.logoq img {
    width: 250px;
}

.headlineq {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.subheadlineq {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: white;
    color: #3498db;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}

.imagesq {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.imagesq img {
    max-width: 100%;
    height: auto;
    margin-right: 20px;
}

/* Animation for image movement */
@keyframes scrollImages {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.containerz {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #333333;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    border-radius: 10px; /* Rounded edges */
}

/* Header Section */
.headerz {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.headerz .textz {
    max-width: 50%;
    text-align: left;
}

.headerz h1 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    color: #222222;
}

.headerz p {
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    margin: 10px 0 20px;
    line-height: 1.5;
}

.headerz .buttonz {
    background-color: green;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease-in-out;
}

.headerz .buttonz:hover {
    background-color: greenyellow;
    color: #333333;
}

.headerz .imagez {
    max-width: 50%;
    text-align: right;
}

.headerz .imagez img {
    max-width: 100%;
    border-radius: 5px; /* Rounded edges for the image */
}

/* Integrations Section */
.integrationsz {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.integration-item {
    width: 100px;
    height: 100px;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.integration-item:hover {
    background-color: #e0ffe0;
    transform: scale(1.1); /* Slight zoom on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Emphasized shadow */
}

.integration-item img {
    max-width: 60%;
    max-height: 60%;
}

.integration-label {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    color: #444444;
}
.container123 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #0A3D62;
    color: #FFFFFF;
    height: auto; /* Adjusted height to be responsive */
    flex-wrap: wrap; /* Allows the content to wrap on smaller screens */
}

.left-section {
    max-width: 50%;
    margin-bottom: 20px;
}

.left-section h2 {
    font-size: 16px;
    background-color: #EAF0F1;
    color: #0A3D62;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
}

.left-section h1 {
    font-size: 48px;
    margin: 20px 0;
    color: white;
}

.right-section {
    display: flex;
    flex-wrap: wrap;
    max-width: 50%;
    justify-content: space-between; /* Distribute perks evenly */
}

.perk {
    display: flex;
    align-items: center;
    margin: 10px 0;
    width: 45%; /* Adjusted width to ensure space for 2 items per row */
}

.perk img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.perk p {
    margin: 0;
    color: white;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .container123 {
        flex-direction: column;
        padding: 20px;
    }

    .left-section {
        max-width: 100%;
        text-align: center;
    }

    .left-section h1 {
        font-size: 28px; /* Adjusted font size for mobile */
    }

    .right-section {
        max-width: 100%;
        justify-content: center; /* Center the perks for mobile */
    }

    .perk {
        width: 100%; /* Each perk takes full width on mobile */
        margin-bottom: 15px;
    }

    .perk img {
        width: 40px; /* Adjusted icon size for mobile */
        height: 40px;
    }
}


.containerz {
    text-align: center;
    overflow: hidden;
    width: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    margin: 0; /* Fixed margin for consistent spacing */
    padding: 20px; /* Increased padding for better spacing */
}

.titlez {
    font-size: 2rem; /* Used rem for better scalability */
    font-weight: bold;
    margin-bottom: 20px;
    color: #2d2d2d; /* Added color for contrast */
}

.categories-wrapperz {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.categoriesz {
    display: flex;
    animation: scroll 35s linear infinite; /* Adjusted duration for smoother scrolling */
    gap: 20px;
}

.categoryz {
    background-color: white;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    transition: transform 0.2s ease-in-out; /* Smooth hover effect */
}

.categoryz:hover {
    transform: scale(1.1); /* Enlarges slightly on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Enhanced hover effect */
}

.categoryz img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.categoryz span {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

/* Animation for infinite scrolling */
@keyframes scroll {
    0% {
        transform: translateX(100%); /* Start off-screen */
    }
    100% {
        transform: translateX(-100%); /* End off-screen */
    }
}

.container23 {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap for better responsiveness */
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 10px auto;
    font-family: 'Arial', sans-serif;
    background-color: rgb(207, 245, 207);
    color: #fff;
    padding: 20px;
    box-sizing: border-box; /* Ensure padding is included in width calculation */
}

.text-content23 {
    flex: 1 1 100%; /* Full width by default */
    max-width: 600px; /* Limit max width for larger screens */
    margin: 20px auto; /* Center the content */
    text-align: center;
}

.text-content23 h1 {
    font-size: 2rem;
    margin-top: 20px;
    color: #000;
}

.text-content23 p {
    font-size: 1.1rem;
    margin: 1em 0;
    color: rgb(32, 18, 18);
    line-height: 1.5;
}

.text-content23 button,
.text-content23 a {
    background-color: #a98f8f;
    color: #000;
    border: none;
    padding: 0.8em 1.5em;
    font-size: 1em;
    cursor: pointer;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.image-content23 {
    flex: 1 1 100%; /* Full width by default */
    max-width: 600px; /* Limit max width for larger screens */
    margin: 20px auto; /* Center the image */
    text-align: center;
}

.image-content23 img {
    width: 100%; /* Ensure the image scales within its container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Add some visual appeal */
}

/* Responsive Design */
@media (max-width: 768px) {
    .container23 {
        flex-direction: column; /* Stack items vertically on smaller screens */
        padding-left: 20px; /* Reduce padding for smaller screens */
        padding-right: 20px;
        height: auto; /* Allow dynamic height */
    }

    .text-content23 {
        max-width: 100%; /* Use full width on smaller screens */
        text-align: center; /* Center align for better visibility */
    }

    .text-content23 h1 {
        font-size: 1.8rem; /* Adjust font size for smaller screens */
    }

    .text-content23 p {
        font-size: 1rem; /* Adjust paragraph font size */
    }

    .image-content23 {
        max-width: 100%; /* Use full width on smaller screens */
        margin: 20px auto;
    }
}

.container21 {
    text-align: center;
    max-width: 1200px;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
           
            
           
            min-height: 100vh;
            background-color: #ffffff;
}
h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}
p {
    font-size: 18px;
    color: #666666;
    margin-bottom: 40px;
}
.steps21 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.steps21 img {
    max-width: 100%;
    height: auto;
    
}
.steps21 .description21 {
    text-align: left;
    margin-left: 20px;
}
.steps21 .description21 p {
    font-size: 18px;
    margin: 5px 0;
}
.steps21 .description21 p span {
    color: #f5a623;
    font-weight: 700;
}
.illustration21 {
    position: relative;
    display: inline-block;
}
.illustration21 img {
    width: 500px;
    height: auto;
}
.illustration21 .icon21 {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
}
.illustration21 .icon:first-child {
    top: -20px;
    left: -20px;
}
.illustration21 .icon:last-child {
    bottom: -20px;
    right: -20px;
}


.containerzz {
    padding: 50px 20px;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #ffffff;
    text-align: center;
}

.titlezz {
    color: #ff0000;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.main-titlezz {
    color: #333333;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.subtitlezz {
    color: #666666;
    font-size: 16px;
    margin-bottom: 30px;
}

.buttonzz {
    background-color: #ff0000;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}

.integration-sectionzz {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three icons per row */
    gap: 20px; /* Spacing between items */
    justify-items: center; /* Center items horizontally */
    align-items: center; /* Center items vertically */
    margin-top: 50px;
}

.integration-sectionzz img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 10px;
    background-color: #f9f9f9;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .integration-sectionzz {
        grid-template-columns: repeat(2, 1fr); /* Two icons per row */
        gap: 15px;
    }

    .main-titlezz {
        font-size: 28px;
    }

    .subtitlezz {
        font-size: 14px;
    }

    .buttonzz {
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .integration-sectionzz {
        grid-template-columns: 1fr; /* One icon per row */
        gap: 10px;
    }

    .main-titlezz {
        font-size: 24px;
    }

    .subtitlezz {
        font-size: 12px;
    }

    .buttonzz {
        padding: 6px 10px;
        font-size: 12px;
    }
}


.containerm {
    text-align: center;
    padding: 50px 20px;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #ffffff;
    color: #333333;
}
.headerm {
    font-size: 2.5em;
    font-weight: 700;
    color: #333333;
}
.subheaderm {
    font-size: 1.2em;
    font-weight: 400;
    color: #666666;
    margin-top: 10px;
}
.buttonsm {
    margin-top: 30px;
}
.buttonm {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1em;
    font-weight: 700;
    color: #ffffff;
    background-color: #f1780f;
    border: none;
    border-radius: 5px;
    margin: 0 1px;
    cursor: pointer;
    text-decoration: none;
}
.buttonm.black {
    background-color: #000000;
}
.contentm {
    display: none;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}
.contentm.active {
    display: flex;
}
.image-containerm {
    flex: 1;
    text-align: right;
}
.image-containerm img {
    max-width: 100%;
    height: auto;
}
.text-containerm {
    flex: 1;
    text-align: left;
    padding-left: 50px;
    
}
.text-containerm ul {
    list-style: none;
    padding: 0;
    margin-top:30px;
}
.text-containerm ul li {
    font-size: 1.2em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.text-containerm ul li i {
    color: #f1780f;
    margin-right: 10px;
}
.card i {
    font-size: 40px;
    color: #2a1471;
    margin-bottom: 10px;
}   
.containerx {
    text-align: center;
    font-family: Arial, sans-serif;
            background-color: #f5e9c9;
            margin: 0;
            padding-top: 80px;
            
            justify-content: center;
            align-items: center;
            height: 80vh;
            border-radius: 8px;
            box-shadow: 0 0 20px #f0ede3;
}
.titlex {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin-bottom: 40px;
}
.featuresx {
    display: flex;
    justify-content: center;
    gap: 50px;
}
.featurex {
    text-align: center;
}
.featurex img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: #fff;
    padding: 20px;
}
.featurex p {
    font-size: 16px;
    color: #000;
    margin-top: 10px;
}



.containers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    margin: 0;
            font-family: 'Roboto', sans-serif;
            background-color: #09162c;
            color: white;
            border-radius: 25px;
}
.text-contents {
    max-width: 50%;
}
.text-contents h1 {
    font-size: 48px;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: white;
}
.text-contents p {
    font-size: 18px;
    margin: 0 0 10px 0;
}
.text-contents .note {
    font-size: 14px;
    color: #A0A0A0;
}
.buttons {
    display: inline-block;
    padding: 15px 30px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 20px;
}
.image-contents {
    max-width: 50%;
}
.image-contents img {
    max-width: 100%;
    border-radius: 10px;
}


.containeraa {
    display: flex;
    width: 100%;
    max-width: 1200px;
    background-color: #E6F0F8;
    color: #2D3E50;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto; /* Center the container */
    flex-wrap: wrap; /* Allow content to wrap on smaller screens */
}

.text-contentaa {
    flex: 60%;
    padding: 40px;
    box-sizing: border-box;
}

.badgeaa {
    display: inline-block;
    background-color: #E6F0F8;
    color: #2D3E50;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 20px;
}

h1 {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
}

p {
    font-size: 16px;
    color: #6B7C93;
    margin: 10px 0 30px;
}

.toggle-buttonsaa {
    display: inline-block;
    background-color: #FFFFFF;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.toggle-buttonsaa button {
    background-color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s;
}

.toggle-buttonsaa .active {
    background-color: #007BFF;
    color: #FFFFFF;
}

.featuresaa {
    text-align: left;
    margin-top: 20px;
}

.featuresaa li {
    list-style: none;
    font-size: 16px;
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.featuresaa li i {
    color: #007BFF;
    margin-right: 10px;
}

.image-content {
    flex: 40%;
    background: url('https://storage.googleapis.com/a1aa/image/xGWDVeeV5Lm0eJ2oZWSyfO0rkVvPhZS1vdix3d4gVbY4eeG9E.jpg') no-repeat center center;
    background-size: cover;
    min-height: 300px; /* Ensure there's enough height for the image */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .containeraa {
        flex-direction: column; /* Stack content vertically */
        padding: 20px;
    }

    .text-contentaa {
        flex: 100%; /* Full width on mobile */
        padding: 20px;
    }

    h1 {
        font-size: 28px; /* Adjust font size for smaller screens */
    }

    p {
        font-size: 14px; /* Adjust paragraph font size */
    }

    .featuresaa li {
        font-size: 14px; /* Adjust feature text size */
    }

    .image-content {
        flex: 100%; /* Full width on mobile */
        min-height: 200px; /* Adjust image height for mobile */
        margin-top: 20px;
    }

    .toggle-buttonsaa button {
        width: 100%; /* Buttons will stack on top of each other */
        margin-bottom: 10px; /* Spacing between buttons */
    }

    .toggle-buttonsaa {
        width: 100%; /* Full width for toggle buttons */
    }
}


/* Apply the animation to the images container */
.imagesq {
    animation: scrollImages 15s linear infinite;
    display: flex;
    gap: 20px;
    will-change: transform;
}

@keyframes scrollImages {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.trusted-by {
    background-color: #f8f9fa;
    color: #333;
    padding: 50px 20px;
    text-align: center;
}

.trusted-by h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #222;
}

.trusted-by p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
}

.trusted-by .logosq {
    overflow: hidden; /* Prevent content overflow */
    position: relative;
    width: 100%;
    background-color: #fff;
    padding: 10px 0;
}

.trusted-by .logosq img {
    max-width: 100px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.trusted-by .logosq img:hover {
    transform: scale(1.2); /* Zoom effect on hover */
}

.trusted-by .logosq .imagesq {
    display: flex;
    animation: scrollImages 20s linear infinite;
    white-space: nowrap;
}

.trusted-by .logosq .imagesq img {
    margin: 0 15px;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .trusted-by h2 {
        font-size: 20px;
    }
    .trusted-by p {
        font-size: 14px;
    }
    .trusted-by .logosq img {
        max-width: 80px;
    }
}
/* Off-canvas mobile menu */
.off-canvas-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Transparent overlay */
    z-index: 999;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
}

/* When active, show the menu */
.off-canvas-wrapper.active {
    display: block;
    transform: translateX(0);
}

/* Hide desktop menu on mobile */
.d-none.d-lg-block {
    display: none;
}

/* Mobile menu button */
.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
}

/* Close button in the mobile menu */
.btn-close-off-canvas {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: white;
}
/* Make the video responsive */
.about-thumb video {
    width: 100%;
    height: auto;
}

/* Adjust for smaller screens */
@media (max-width: 767px) {
    .about-wrapper-area .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .about-wrapper-area .row {
        display: block;
    }

    .about-wrapper-area .col-lg-6, .about-wrapper-area .col-lg-5 {
        margin-bottom: 30px;
    }

    .about-inner h2.title {
        font-size: 24px;
        line-height: 1.4;
    }

    .about-inner h3.subtitle {
        font-size: 16px;
    }

    .btn-all {
        font-size: 14px;
        padding: 10px 20px;
    }
}
@media (max-width: 768px) {
    .headerz {
      flex-direction: column;
      text-align: center;
    }

    .textz h1 {
      font-size: 1.5rem;
    }

    .textz p {
      font-size: 0.875rem;
    }

    .buttonz {
      padding: 8px 16px;
      font-size: 0.875rem;
    }

    .integrationsz {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Smaller mobile view adjustments */
  @media (max-width: 480px) {
    .textz h1 {
      font-size: 1.25rem;
    }

    .textz p {
      font-size: 0.75rem;
    }

    .buttonz {
      padding: 8px 16px;
      font-size: 0.75rem;
    }

    .integration-item img {
      width: 40px;
      height: 40px;
    }

    .integrationsz {
      grid-template-columns: repeat(2, 1fr);
    }
  }
/* Mobile menu styling */
.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu > li {
    border-bottom: 1px solid #ddd;
}

.mobile-menu > li > a {
    padding: 10px;
    text-decoration: none;
    display: block;
    color: #333;
}

/* Overlay background for the off-canvas menu */
.off-canvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Optional: Style the button hover effect */
.cta-button:hover {
    background-color: #3498db;
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
}


.mobile-menu li>a {
    font-size: 16px;
    color: #fff;
    text-transform: capitalize;
    line-height: 18px;
    position: relative;
    display: inline-block;
    padding: 10px 0;
}

.mobile-menu li>a:hover {
    color: #151515;
}

.mobile-menu li ul li {
    border: none;
}

.mobile-menu li ul li a {
    font-size: 14px;
    text-transform: capitalize;
    padding: 10px 0 8px;
}

.mobile-menu li.menu-item-has-children {
    display: block;
    position: relative;
}

.mobile-menu li.menu-item-has-children .dropdown {
    padding-left: 15px;
}

.mobile-menu li.menu-item-has-children .menu-expand {
    line-height: 50;
    top: -5px;
    left: 95%;
    width: 30px;
    position: absolute;
    height: 50px;
    text-align: center;
    cursor: pointer;
}

.mobile-menu li.menu-item-has-children .menu-expand i {
    display: block;
    position: relative;
    width: 10px;
    margin-top: 25px;
    border-bottom: 1px solid #fff;
    -webkit-transition: all 250ms ease-out;
    -o-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
}

.mobile-menu li.menu-item-has-children .menu-expand i:before {
    top: 0;
    width: 100%;
    content: "";
    display: block;
    position: absolute;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    border-bottom: 1px solid #fff;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.mobile-menu li.menu-item-has-children.active>.menu-expand i:before {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}
.containerc {
    text-align: center;
    max-width: 100%;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #f4f4f4; /* Changed to lighter color for better contrast */
    box-sizing: border-box;
}

.headerc {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.subheaderc {
    font-size: 18px; /* Slightly increased for readability */
    font-weight: 400;
    color: #4a4a4a; /* Softer tone for text */
    margin-bottom: 30px;
    line-height: 1.5;
}

.contentc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Added gap for consistent spacing */
}

.image-containerc {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    border-radius: 8px;
    overflow: hidden; /* Ensures rounded corners apply to images */
}

.image-containerc img {
    width: 100%;
    height: auto;
    display: block; /* Ensures no extra space below images */
    border-radius: 8px;
}

.statsc {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    margin: 10px;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Added gap for spacing between stat items */
}

.stat-itemc {
    flex: 1 1 calc(50% - 10px); /* Ensures two items per row with space */
    margin-bottom: 15px;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-itemc span {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #d9534f; /* Consistent primary color */
    margin-bottom: 5px;
}

.stat-itemc p {
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contentc {
        flex-direction: column;
        gap: 20px; /* Ensures consistent spacing */
    }

    .statsc {
        text-align: center;
        gap: 20px; /* Adjust spacing for mobile */
    }

    .stat-itemc {
        flex: 1 1 100%; /* Full width for mobile */
        margin-bottom: 20px;
    }

    .subheaderc {
        font-size: 16px; /* Adjusted for smaller screens */
    }

    .headerc {
        font-size: 28px; /* Adjusted for smaller screens */
    }
}
.containercv {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
    padding-top: 80px;
    
    justify-content: center;
    align-items: center;
    background-color: #da9d9d;
    position: relative;
    height: 90vh; /* Ensure it fills the viewport */
}

.headercv {
    font-size: 2em;
    font-weight: bold;
    color: #1a1a1a;
}

.subheadercv {
    font-size: 1em;
    color: #1d476b;
    margin-bottom: 50px;
}

.imagescv {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.imagescv img {
    width: 300px;
    height: 300px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 20px;
}

.iconcv {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10; /* Ensure it stays on top of other elements */
}

.iconcv img {
    width: 100px;
    height: 100px;
}

/* Media Query for tablets and smaller screens */
@media (max-width: 768px) {
    .containercv {
        padding-top: 40px; /* Reduce padding on small screens */
        flex-direction: column; /* Stack content vertically */
        justify-content: flex-start; /* Align content at the top */
        height: auto; /* Allow container height to adjust */
    }

    .imagescv {
        flex-direction: column;
        gap: 20px; /* Reduce gap between images */
    }

    .imagescv img {
        width: 90%; /* Make images smaller to fit well */
        height: auto; /* Maintain image aspect ratio */
    }

    .iconcv {
        position: relative; /* Move icon below content on smaller screens */
        margin-top: 20px; /* Add margin for spacing */
        width: 60px; /* Smaller icon size */
        height: 60px;
    }

    .iconcv img {
        width: 60px;
        height: 60px;
    }

    .headercv {
        font-size: 1.5em; /* Adjust font size for mobile */
    }

    .subheadercv {
        font-size: 0.9em; /* Adjust subheader font size */
    }
}

/* Further adjustments for very small screens (e.g., mobile) */
@media (max-width: 480px) {
    .headercv {
        font-size: 1.2em; /* Further reduce header size */
    }

    .subheadercv {
        font-size: 0.8em; /* Further reduce subheader size */
    }

    .iconcv img {
        width: 50px;
        height: 50px;
    }
}


.containervv {
    padding: 20px;
    font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #ffffff;
            color: #333333;
            text-align: center;
            max-width: 100%;
}
.headervv {
    margin-bottom: 20px;
}
.headervv h1 {
    font-size: 34px;
    font-weight: 700;
    margin: 0;
}
.headervv p {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    margin: 5px 0 20px;
}
.foundersvv {
    display: flex;
    justify-content: center;
    gap: 120px;
    margin-bottom: 140px;
    margin-top: 100px;
}
.foundervv {
    text-align: center;
}
.foundervv img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
}
.foundervv h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 10px 0 5px;
}
.foundervv p {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    margin: 0;
}
.contentvv {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}
.content-itemvv {
    width: 300px;
    text-align: center;
}
.content-itemvv img {
    width: 100%;
    border-radius: 10px;
}
.content-itemvv p {
    font-size: 26px;
    font-weight: 500;
    margin: 10px 0 0;
}
.ctavv {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 140px;
}
.cta-contentvv {
    display: flex;
    align-items: center;
    gap: 120px;
}
.ctavv img.icon {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
}
.ctavv img.background {
    width: 350px;
    height: auto;
    border-radius: 10px;
}
.ctavv p {
    font-size: 28px;
    font-weight: 500;
    margin: 0 0 10px;
    color:#222;
}
.ctavv a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #27a8c5;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
}
@media (max-width: 768px) {
    .foundersvv {
        flex-direction: column;
        align-items: center;
    }
    .contentvv {
        flex-direction: column;
        align-items: center;
    }
    .cta-contentvv {
        flex-direction: column;
    }
}
/* Responsive Breakpoints */
@media (max-width: 768px) {
    .containerv {
        flex-direction: column;
    }

    .text-sectionv h1 {
        font-size: 20px;
    }

    .text-sectionv h1 span {
        font-size: 18px;
    }

    .text-sectionv p {
        font-size: 14px;
    }
}

/*----- mobile menu end -----*/
/*------ offcanvas widget area start ------*/
.offcanvas-widget-area {
    margin-top: auto;
    padding: 20px;
}

.off-canvas-contact-widget li {
    color: #fff;
    font-size: 15px;
    margin-bottom: 5px;
}

.off-canvas-contact-widget li i {
    width: 20px;
}

.off-canvas-contact-widget li a {
    color: #fff;
}

.off-canvas-contact-widget li a:hover {
    color: #151515;
}

.off-canvas-social-widget {
    margin-top: 20px;
}

.off-canvas-social-widget a {
    color: #fff;
    font-size: 18px;
    display: inline-block;
    margin-right: 15px;
}

.off-canvas-social-widget a:hover {
    color: #151515;
}

/* Responsive Design */
@media (max-width: 768px) {
    .containers {
        flex-direction: column;
        text-align: center;
    }

    .text-contents {
        text-align: center;
    }

    .text-contents h1 {
        font-size: 24px;
    }

    .text-contents p {
        font-size: 14px;
    }

    .text-contents .buttons {
        font-size: 14px;
        padding: 10px 20px;
    }

    .image-contents img {
        max-width: 100%;
        height: auto;
    }
}
/*------ offcanvas widget area end ------*/
.off-canvas-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: 9999;
}

.off-canvas-wrapper.open {
    opacity: 1;
    visibility: visible;
}

.off-canvas-wrapper.open .off-canvas-inner-content {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.off-canvas-wrapper .off-canvas-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    content: '';
    cursor: url("../img/icon/cancel.png"), auto;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.off-canvas-wrapper .off-canvas-inner-content {
    background-color: green;
    width: 300px;
    height: 100%;
    position: relative;
    -webkit-transform: translateX(calc(-100% - 50px));
    -ms-transform: translateX(calc(-100% - 50px));
    transform: translateX(calc(-100% - 50px));
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

@media only screen and (max-width: 479.98px) {
    .off-canvas-wrapper .off-canvas-inner-content {
        width: 270px;
    }
}

.off-canvas-wrapper .btn-close-off-canvas {
    top: 0;
    left: 100%;
    width: 60px;
    height: 60px;
    font-size: 26px;
    color: green;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background-color: #fff;
}

.off-canvas-wrapper .btn-close-off-canvas i {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    display: block;
    line-height: 60px;
}

.off-canvas-wrapper .btn-close-off-canvas:hover i {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.off-canvas-wrapper .off-canvas-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    height: 100%;
}

.search-box-offcanvas form {
    position: relative;
}

.search-box-offcanvas form input {
    color: #666;
    font-size: 13px;
    width: 100%;
    height: 60px;
    border: none;
    padding: 0 40px 0 10px;
    background-color: #f2f2f2;
}

.search-box-offcanvas form .search-btn {
    top: 0;
    right: 0;
    width: 40px;
    height: 60px;
    line-height: 62px;
    font-size: 20px;
    color: green;
    position: absolute;
}

.search-box-offcanvas form .search-btn:hover {
    color: green;
}
/* Responsive Design */
@media (max-width: 768px) {
    .container123 {
        flex-direction: column; /* Stack sections vertically */
    }

    .left-section {
        text-align: center;
        padding: 0; /* Ensures no extra space on mobile */
    }

    .right-section {
        grid-template-columns: 1fr; /* Single column grid for perks */
    }

    .perk {
        justify-content: flex-start; /* Align content left */
        text-align: left; /* Text alignment for readability */
    }
}
/*------- mobile top bar settings start -------*/
.mobile-settings {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #e1e1e1;
}

.mobile-settings li {
    margin-bottom: 5px;
}

.mobile-settings .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-toggle {
    font-size: 14px;
    color: #151515;
    cursor: pointer;
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-toggle i {
    font-size: 12px;
    padding-left: 5px;
    vertical-align: middle;
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-toggle:hover {
    color: green;
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-toggle:after {
    display: none;
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-menu {
    padding: 0;
    border-color: #e1e1e1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-menu.show {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-menu .dropdown-item {
    font-size: 13px;
    color: #151515;
    padding: 6px 15px;
}

/*------- mobile top bar settings end -------*/
/*------- Buttons Style here -------*/
.btn {
    color: #fff;
    line-height: 1;
    border-radius: 0;
    font-family: "Sarabun", sans-serif;
    background-color: green;
    border-radius: 50px;
    font-weight: 500;
}

.btn:hover {
    color: #fff;
    background-color: greenyellow;
}
.button5{
    color: #fff !important;
    line-height: 1;
    margin-right: 30px;
    padding-right: 20px !important;
    background-color: green;
    border-radius: 5px;
    font-weight: 500;
}
.button5:hover{
    color: #fff;
    background-color: greenyellow;    
}
.btn-hero {
    font-size: 20px;
    padding: 13px 24px 15px 24px;
    
}

@media only screen and (max-width: 767.98px) {
    .btn-hero {
        padding: 15px 25px;
    }
}

.btn-all {
    font-size: 18px;
    padding: 14px 24px 15px 24px;
}

/*------- common css start -------*/
.fix {
    overflow: hidden;
}

.section-title {
    max-width: 410px;
    margin: auto;
    margin-bottom: 68px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .section-title {
        margin-bottom: 45px;
    }
}

.section-title .title {
    padding-bottom: 15px;
}

.section-title p {
    padding: 0 15px;
}

.section-title--style_2 {
    max-width: 710px;
}

.section-title--style_2 .title {
    line-height: 1.4;
    margin-top: -15px;
}

@media only screen and (max-width: 767.98px) {
    .section-title--style_2 .title {
        margin-top: -10px;
    }
}

.title {
    font-weight: 800;
    line-height: 1.1;
    margin-top: -9px;
}
.title22 {
    font-weight: 600;
    line-height: 1.0;
    margin-top: 9px;
    font-size:35px;
    font-family: sans-serif;
}

@media only screen and (max-width: 767.98px) {
    .title {
        margin-top: -7px;
        line-height: 1.3;
    }
}

.title span {
    color: green;
}

.subtitle {
    font-weight: 300;
    line-height: 1.3;
    padding: 20px 0;
    font-size: 20px;
}

.theme-bg {
    background-color: green;
}

.gray-bg {
    background-color: #f8f8f8;
}

/*------- common css end -------*/
/*---- choose us style strat ----*/
.choose-item-wrapper .title {
    padding-bottom: 8px;
}

.choose-item-wrapper--style_2 {
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 58.5px 6.5px rgba(28, 71, 193, 0.15);
    box-shadow: 0px 0px 58.5px 6.5px rgba(28, 71, 193, 0.15);
    padding: 83px 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .choose-item-wrapper--style_2 {
        padding: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .choose-item-wrapper--style_2 {
        padding: 65px 30px 53px;
        margin-bottom: 62px;
    }
}

.choose-item-wrapper--style_2 .desc {
    padding: 25px 0 28px;
}

.choose-item {
    margin-top: 35px;
}

@media only screen and (max-width: 767.98px) {
    .choose-item {
        margin-top: 25px;
    }
}

.choose-item-title {
    font-weight: 700;
    padding-bottom: 8px;
}

.choose-list li {
    margin-bottom: 14px;
    position: relative;
}

.choose-list li:last-child {
    margin-bottom: 0;
}

.choose-list li:before {
    width: 21px;
    height: 18px;
    left: 0;
    top: 50%;
    content: '';
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../img/icon/check-tick.png);
}

.choose-list li .choose-item-title {
    padding-left: 36px;
}

/*---- choose us style end ----*/
/*---- call to action start ----*/
.cta-wrapper {
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .cta-wrapper {
        margin-top: 55px;
        padding-bottom: 6px;
    }
}

.cta-wrapper .title {
    line-height: 1.3;
}

.cta-wrapper .call {
    color: green;
    display: inline-block;
    font-size: 36px;
    font-weight: 800;
    padding-top: 23px;
}

@media only screen and (max-width: 767.98px) {
    .cta-wrapper .call {
        font-size: 28px;
    }
}

@media only screen and (max-width: 479.98px) {
    .cta-wrapper .call {
        font-size: 24px;
    }
}

.cta-wrapper .call:hover {
    color: #151515;
}

@media only screen and (max-width: 767.98px) {
    .cta-wrapper img {
        padding-left: 0;
    }
}

/*---- call to action end ----*/
/*---- brand logo section start ----*/
.brand-item img {
    margin: auto;
    opacity: 0.25;
}

.brand-item:hover img {
    opacity: 1;
}

/*---- brand logo section end ----*/
/*------ counter up start ------*/
.counterup-item {
    text-align: center;
}

.counterup-item span {
    color: green;
    font-weight: 800;
    margin-top: -4px;
}

.counterup-item h5 {
    font-weight: 400;
    padding-top: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .counterup-item h5 {
        font-size: 16px;
    }
}

.odometer-inside {
    position: relative;
    margin-left: -22px;
}

.odometer-inside::after {
    top: -7px;
    left: 100%;
    content: '+';
    position: absolute;
}

/*------ counter up end ------*/
/*----- slick arrow style start -----*/
.testimonial-carousel-active.slick-arrow-style button.slick-arrow,
.hero-slider-active.slick-arrow-style button.slick-arrow {
    width: 16px;
    height: 18px;
    bottom: -38px;
    left: 0;
    cursor: pointer;
    position: absolute;
    background-repeat: no-repeat;
}

.testimonial-carousel-active.slick-arrow-style button.slick-arrow.slick-prev,
.hero-slider-active.slick-arrow-style button.slick-arrow.slick-prev {
    background-image: url(../img/icon/arrow-prev.png);
}

.testimonial-carousel-active.slick-arrow-style button.slick-arrow.slick-next,
.hero-slider-active.slick-arrow-style button.slick-arrow.slick-next {
    left: 25px;
    background-image: url(../img/icon/arrow-next.png);
}

.testimonial-carousel-active.slick-arrow-style button.slick-arrow:hover.slick-prev,
.hero-slider-active.slick-arrow-style button.slick-arrow:hover.slick-prev {
    background-image: url(../img/icon/arrow-prev-color.png);
}

.testimonial-carousel-active.slick-arrow-style button.slick-arrow:hover.slick-next,
.hero-slider-active.slick-arrow-style button.slick-arrow:hover.slick-next {
    background-image: url(../img/icon/arrow-next-color.png);
}

.testimonial-carousel-active.slick-arrow-style--testimonial_2,
.hero-slider-active.slick-arrow-style--testimonial_2 {
    margin-top: 35px;
}

.testimonial-carousel-active.slick-arrow-style--testimonial_2 button.slick-arrow,
.hero-slider-active.slick-arrow-style--testimonial_2 button.slick-arrow {
    right: 0;
    left: auto;
    bottom: 60px;
    z-index: 1;
}

.testimonial-carousel-active.slick-arrow-style--testimonial_2 button.slick-arrow.slick-prev,
.hero-slider-active.slick-arrow-style--testimonial_2 button.slick-arrow.slick-prev {
    right: 60px;
}

.testimonial-carousel-active.slick-arrow-style--testimonial_2 button.slick-arrow.slick-next,
.hero-slider-active.slick-arrow-style--testimonial_2 button.slick-arrow.slick-next {
    right: 37px;
    left: auto;
}

.testimonial-carousel-active.slick-arrow-style--testimonial_2 .slick-list,
.hero-slider-active.slick-arrow-style--testimonial_2 .slick-list {
    margin: -30px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {

    .testimonial-carousel-active.slick-arrow-style--testimonial_2 .slick-list,
    .hero-slider-active.slick-arrow-style--testimonial_2 .slick-list {
        margin: -30px -15px;
    }
}

.testimonial-carousel-active.slick-arrow-style--testimonial_2 .slick-list .slick-slide,
.hero-slider-active.slick-arrow-style--testimonial_2 .slick-list .slick-slide {
    padding: 30px;
}

.slick-arrow-style_hero button.slick-arrow {
    bottom: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin: auto;
}

.slick-arrow-style_hero button.slick-arrow.slick-next {
    right: 48%;
    left: auto;
}

.slick-arrow-style_hero button.slick-arrow.slick-prev {
    left: 49%;
}

/*----- slick arrow style end -----*/
/* ----scroll to top css start ----*/
.scroll-top {
    bottom: 50px;
    cursor: pointer;
    height: 50px;
    position: fixed;
    right: 20px;
    text-align: center;
    width: 50px;
    z-index: 9999;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-radius: 50%;
    background-color: green;
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

.scroll-top i {
    line-height: 50px;
    color: #fff;
    font-size: 25px;
}

.scroll-top.not-visible {
    bottom: -50px;
    visibility: hidden;
    opacity: 0;
}

.scroll-top:hover {
    background-color: #151515;
}

/* ----scroll to top css end ----*/
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 40%, 0);
        transform: translate3d(0, 40%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 40%, 0);
        transform: translate3d(0, 40%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-40%, 0, 0);
        transform: translate3d(-40%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-40%, 0, 0);
        transform: translate3d(-40%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(40%, 0, 0);
        transform: translate3d(40%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(40%, 0, 0);
        transform: translate3d(40%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes float-bob {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes float-bob {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.moving-vertical {
    -webkit-animation-name: float-bob;
    animation-name: float-bob;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

/*------ hero slider area css start ------*/
/*-------------------------
01. Slider area
--------------------------*/
.hero-slider-item {
    height: 850px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 88px;
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .hero-slider-item {
        height: 550px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .hero-slider-item {
        height: 400px;
        padding-top: 0;
    }
}

@media only screen and (max-width: 767.98px) {
    .hero-slider-item {
        height: 350px;
        padding-top: 0;
    }
}

@media only screen and (max-width: 575.98px) {
    .hero-slider-item {
        height: 550px;
    }
}

.slider-thumb {
    float: right;
}

@media only screen and (max-width: 575.98px) {
    .slider-thumb {
        float: none;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 575.98px) {
    .hero-slider-content {
        text-align: center;
        padding: 0 20px 50px;
    }
}

@media only screen and (max-width: 479.98px) {
    .hero-slider-content {
        padding: 0 0 50px;
    }
}

.hero-slider-content .slide-title {
    color: #151515;
    font-size: 45px;
    font-weight: 800;
    line-height: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .hero-slider-content .slide-title {
        font-size: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .hero-slider-content .slide-title {
        font-size: 34px;
        line-height: 1.3;
    }
}

@media only screen and (max-width: 767.98px) {
    .hero-slider-content .slide-title {
        font-size: 25px;
        line-height: 1.3;
    }
}

.hero-slider-content .btn-hero {
    margin-top: 55px;
}

@media only screen and (max-width: 767.98px) {
    .hero-slider-content .btn-hero {
        margin-top: 30px;
        padding: 10px 22px 12px;
        font-size: 18px;
    }
}

.hero-transparent-bg {
    height: 890px;
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .hero-transparent-bg {
        height: 550px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .hero-transparent-bg {
        height: 400px;
        padding-top: 0;
    }
}

@media only screen and (max-width: 767.98px) {
    .hero-transparent-bg {
        height: 350px;
        padding-top: 0;
    }
}

@media only screen and (max-width: 575.98px) {
    .hero-transparent-bg {
        height: 550px;
        padding-top: 0;
    }
}

/*------ hero slider area css end ------*/
.slick-active .slider-thumb img {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.slick-active .hero-slider-content .slide-title,
.slick-active .hero-slider-content .btn-hero {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.slick-active .hero-slider-content .btn-hero {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

/*----- about style start -----*/
@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .about-inner {
        margin-top: 65px;
    }
}

.about-inner p {
    margin-bottom: 1px;
    justify-items: center;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .about-inner--style_2 {
        margin-top: 0;
        margin-bottom: 65px;
    }
}

.about-inner--style_2 .subtitle {
    padding-top: 24px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .about-inner--style_2 .subtitle {
        padding-bottom: 5px;
    }
}

.about-inner--style_2 .subtitle span {
    color: green;
    font-weight: 800;
}

.about-inner--style_2 .subtitle-2 {
    padding-top: 3px;
    padding-bottom: 46px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .about-thumb {
        text-align: center;
    }
}

/*----- about style end -----*/


.container5 {
    padding: 50px 0;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    background-color: rgb(121, 235, 121); /* Retain the green background */
    color: white;
    text-align: center;
    max-width: 1200px; /* Center align and limit the width */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
    border-radius: 10px; /* Slightly round the edges */
}

.header {
    margin-bottom: 50px;
    text-align: center;
}

.header h1 {
    font-size: 40px; /* Slightly larger and more impactful */
    margin: 10px 0;
    font-weight: bold; /* Enhance emphasis */
    color: rgb(30, 30, 30); /* Use a darker color for contrast */
}

.header p {
    font-size: 18px;
    margin: 0;
    color: rgb(255, 255, 255); /* White for readability */
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.grid-item {
    background-color: rgb(0, 100, 0); /* Slightly darker green for contrast */
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Add depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add animation */
    cursor: pointer;
}

.grid-item:hover {
    transform: translateY(-5px); /* Subtle movement on hover */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3); /* Enhance shadow on hover */
}

.grid-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    border-radius: 5px; /* Slightly rounded images */
}

.grid-item p {
    font-size: 16px;
    margin: 0;
    color: #fff;
    font-weight: bold;
}

.image2 {
    height: 520px;
    width: 100%;
    object-fit: cover; /* Ensure proper scaling */
    border-radius: 10px;
}
image13{
    height: 420px;
    width: 100%;
    object-fit: cover; /* Ensure proper scaling */
    border-radius: 10px;
}

.features {
    padding-top: 10px;
    display: flex;
    flex-direction: column; /* Stack features vertically */
    
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    max-width: 600px; /* Limit the width */
}

.feature i {
    font-size: 3em;
    margin-right: 20px;
    color: rgb(0, 100, 0); /* Match green tones */
}

.feature p {
    font-size: 1em;
    color: rgb(30, 30, 30); /* Darker text for readability */
    margin: 0;
}
.container9 {
    padding: 20px;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: auto;
}

.header {
    color: #ff4c61;
    font-size: 14px;
    margin-bottom: 10px;
}

.title {
    font-size: 28px;
    margin-bottom: 20px;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.content .card {
    background-color: #ffffff;
    width: 100%;
    max-width: 300px;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 10px;
}

.content img {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

.content .card .user-rights {
    background-color: #ffffff;
    color: #000000;
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
    text-align: left;
}

.content .card .user-rights table {
    width: 100%;
    border-collapse: collapse;
}

.content .card .user-rights table th, 
.content .card .user-rights table td {
    padding: 5px;
    text-align: left;
}

.content .card .user-rights table th {
    font-weight: bold;
}

.content .card .user-rights table td {
    text-align: center;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.footer .section {
    flex: 1 1 calc(50% - 20px);
    max-width: 100%;
    text-align: left;
}

.footer .section h3 {
    color: green;
    font-size: 20px;
    margin-bottom: 10px;
}

.footer .section p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer .section ul {
    list-style: none;
    padding: 0;
}

.footer .section ul li {
    font-size: 14px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.footer .section ul li i {
    color: green;
    margin-right: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .title {
        font-size: 24px;
    }

    .footer {
        flex-direction: column;
    }

    .footer .section {
        flex: 1 1 100%;
    }

    .content {
        flex-direction: column;
        gap: 15px;
    }

    .content .card {
        width: 100%;
    }
}

.container12 {
    text-align: center;
    padding: 50px 0;
    font-family: 'Arial', sans-serif;
            background-color: #f0f8ff;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            padding: 50px;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.container12 h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 40px;
}
.features12 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.feature12 {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
}
.feature12 img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}
.feature12 h3 {
    font-size: 20px;
    color: green;
    margin-bottom: 10px;
}
.feature12 p {
    font-size: 16px;
    color: #666;
}


/*----- service policy start -----*/
.service-policy-item {
    /* @media only screen and (max-width: 767.98px) {
            text-align: center;
            padding: 0 40px;
        }

        @media only screen and (max-width: 479.98px) {
            padding: 0 15px;
        } */
}

.service-policy-item:hover .service-policy-icon img {
    -webkit-transform: scale(0.95) translateX(10px);
    -ms-transform: scale(0.95) translateX(10px);
    transform: scale(0.95) translateX(10px);
}

.service-policy-title {
    font-weight: 700;
    padding: 17px 0 8px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .policy-wrapper-02 {
        margin-top: -45px;
        margin-bottom: 26px;
    }
}

.policy-wrapper-02 .service-policy-item {
    padding: 34px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.policy-wrapper-02 .service-policy-item:hover,
.policy-wrapper-02 .service-policy-item.active {
    -webkit-box-shadow: 0px 0px 58.5px 6.5px rgba(28, 71, 193, 0.15);
    box-shadow: 0px 0px 58.5px 6.5px rgba(28, 71, 193, 0.15);
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .policy-area-02 {
        padding-top: 50px;
    }
}

/*----- service policy  -----*/
/*------ service section start ------*/
.servivce-middle-thumb {
    text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .servivce-middle-thumb {
        margin-top: 60px;
    }
}

.service-item {
    width: 218px;
    text-align: left;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .service-item {
        float: left;
    }
}

@media only screen and (max-width: 767.98px) {
    .service-item {
        width: 100%;
    }
}

.service-item:hover .service-icon img {
    -webkit-transform: scale(0.95) translateX(10px);
    -ms-transform: scale(0.95) translateX(10px);
    transform: scale(0.95) translateX(10px);
}

.service-title {
    font-weight: 700;
    padding: 18px 0 10px;
}

.service-title a {
    color: #151515;
}

.service-title a:hover {
    color: green;
}

.service-list-left .service-item:nth-child(1),
.service-list-left .service-item:nth-child(3) {
    margin-left: 52px;
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px),
only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {

    .service-list-left .service-item:nth-child(1),
    .service-list-left .service-item:nth-child(3) {
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .service-list-left .service-item {
        margin-right: 30px;
    }

    .service-list-left .service-item:last-child {
        margin-right: 0;
    }
}

.service-list-left .service-item:last-child {
    margin-bottom: 0;
}

.service-list-right .service-item:nth-child(2) {
    margin-left: 52px;
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px),
only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .service-list-right .service-item:nth-child(2) {
        margin-left: 0;
    }
}

.service-list-right .service-item:last-child {
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .service-list-right .service-item {
        margin-right: 30px;
    }

    .service-list-right .service-item:last-child {
        margin-right: 0;
    }
}

.service-wrapper--style_2 .section-title {
    text-align: center;
}

.service-wrapper--style_2 .service-item {
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .service-wrapper--style_2 .service-item {
        width: 100%;
    }
}

/*------ service section end ------*/
/*------ service details page start ------*/
@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .service-details-wrapper.pb-125 {
        padding-bottom: 67px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .service-details-widget {
        margin-top: 100px;
    }
}

.service-single-widget {
    padding: 25px;
}

.service-single-widget .service-widget-title {
    font-weight: 700;
    padding-bottom: 20px;
    line-height: 1;
}

.service-single-widget .service-list li a {
    color: #151515;
    display: block;
    margin-bottom: 10px;
    position: relative;
    padding-left: 35px;
}

.service-single-widget .service-list li a:before {
    width: 21px;
    height: 18px;
    left: 0;
    top: 50%;
    content: '';
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../img/icon/check-tick.png);
}

.service-single-widget .service-list li a:hover {
    color: green;
    padding-left: 40px;
}

.service-single-widget .service-list li:last-child a {
    margin-bottom: 0;
}

@media only screen and (min-width: 1600px) {
    .service-details-content {
        padding-right: 30px;
    }
}

.service-details-content h3 {
    font-weight: 700;
    padding-bottom: 10px;
}

/*------ service details page end ------*/

.containeras {
    text-align: left;
    position: relative;
    max-width: 100%;
    font-family: 'Arial', sans-serif;
            
            color: #343a40;
            margin: 10px;
            padding: 10px;
            border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            
            
            
            
}
.titleas {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 0.5em;
}
.subtitleas {
    font-size: 1.2em;
    color: #6c757d;
    margin-bottom: 2em;
}
.handshakeas {
    width: 250px;
    height:250px;
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: -1; /* Ensure the image is behind the text */
}
.logosas {
    display: flex;
    justify-content: center;
    gap: 1em;
}
.logoas {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 1em;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.logoas:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.logoas img {
    max-width: 100%;
    max-height: 100%;
}

.container22 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #ffffff;
            border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.text-content22 {
    max-width: 50%;
}
.text-content22 h1 {
    font-size: 2.5rem;
    color: #1a202c;
    margin: 0;
}
.text-content22 p {
    font-size: 1rem;
    color: #4a5568;
    margin: 1rem 0;
}
.text-content22 button {
    background-color: #c53030;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 0.25rem;
}
.image-content22 img {
    max-width: 100%;
    height: auto;
}


.containerss {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
            
            background-color: #f9f9f9;
            color: #333;
            border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.sectionss {
    margin-bottom: 60px;
}
.sectionss h2 {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #222;
}
.sectionss p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}
.logosss {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.logo-itemss {
    width: calc(25% - 20px);
    background-color: #fff;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.logo-itemss:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.logo-itemss img {
    max-width: 100%;
    max-height: 50px;
}
.image-rightss {
    float: right;
    width: 20%;
    margin-left: 20px;
}
.image-rightss img {
    max-width: 100%;
    border-radius: 10px;
}
@media (max-width: 768px) {
    .image-rightss {
        float: none;
        width: 100%;
        margin: 0 auto 20px;
    }
}


.service-wrapper {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
  }

  .header {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    color: #2c3e50;
  }

  .title3 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
    color: #7f8c8d;
  }

  .content {
    display: flex;
    gap: 20px;
  }

  .sidebar {
    width: 25%;
    background-color: #ffffff;
    border: 1px solid green;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .sidebar-item {
    padding: 15px 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    margin-bottom: 10px;
    color: #2c3e50;
    transition: all 0.3s ease;
  }

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

  .sidebar-item.active,
  .sidebar-item:hover {
    background-color: green;
    color: #fff;
    font-weight: bold;
  }

  .main-content {
    width: 70%;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .main-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
  }

  .main-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #7f8c8d;
  }

  .main-content a {
    display: inline-block;
    padding: 10px 15px;
    background-color: green;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }

  .main-content a:hover {
    background-color: greenyellow;
  }

  .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
  }

  .card {
    flex: 1 1 calc(50% - 10px);
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  .card.red {
    border: 2px solid green;
  }

  .card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #34495e;
  }

  .card img {
    margin-bottom: 15px;
    border-radius: 8px;
    width: 100%;
    height: auto;
  }

  .card p {
    font-size: 14px;
    color: #7f8c8d;
  }

  @media (max-width: 768px) {
    .content {
      flex-direction: column;
    }

    .sidebar,
    .main-content {
      width: 100%;
    }

    .card {
      flex: 1 1 100%;
    }
  }

/*----- testimonial area start -----*/
@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .testimonial-wrapper {
        padding-bottom: 100px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .testimonial-wrapper--style_2 {
        padding-bottom: 68px;
    }
}

.testimonial-inner {
    margin-top: -18px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .testimonial-inner {
        margin-top: 68px;
    }
}

.testimonial-content {
    padding: 1px;
}

.testimonial-content .client-name {
    color: green;
    line-height: 1;
    font-weight: 500;
    padding-bottom: 4px;
}

.testimonial-content .client-desig {
    font-weight: 300;
}

.testimonial-content p {
    padding-top: 37px;
    padding-bottom: 12px;
}

@media only screen and (max-width: 767.98px) {
    .testimonial-content p {
        padding-top: 45px;
    }
}

.testimonial-content p i {
    font-size: 14px;
    line-height: 1;
    padding-right: 5px;
}

.testimonial-content p i:last-child {
    padding-left: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .testimonial-thumb {
        text-align: center;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .testimonial-thumb--style_2 {
        margin-bottom: 68px;
    }
}

.testimonial-item--style_2 .testimonial-content {
    padding: 40px 20px 48px 45px;
    -webkit-box-shadow: 0px 0px 31.5px 3.5px rgba(28, 71, 193, 0.11);
    box-shadow: 0px 0px 31.5px 3.5px rgba(28, 71, 193, 0.11);
}

.testimonial-item--style_2 .testimonial-content p {
    padding-top: 0;
}

/*----- testimonial area end -----*/
/*----- breadcrumb style css start -----*/
.breadcrumb-wrap {
    padding: 95px 0 100px;
    text-align: center;
}

@media only screen and (max-width: 767.98px) {
    .breadcrumb-wrap {
        padding: 50px 0;
    }
}

.breadcrumb-wrap .breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item {
    line-height: 1;
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item a {
    color: #fff;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item a:hover {
    color: green;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item:before {
    color: #fff;
    content: "/";
    font-size: 12px;
    margin: 0 5px;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item:first-child::before {
    display: none;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item.active {
    margin-top: 2px;
    text-transform: capitalize;
}

.breadcrumb-title {
    color: #fff;
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 20px;
}

@media only screen and (max-width: 575.98px) {
    .breadcrumb-title {
        font-size: 24px;
    }
}

/*----- breadcrumb style css end -----*/
/*------ team area style  start ------*/
.team-member {
    position: relative;
    text-align: center;
}

.team-member-info {
    bottom: 0;
    left: 50%;
    position: absolute;
    background-color: #f8f8f8;
    padding: 40px;
    text-align: center;
    white-space: nowrap;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-box-shadow: 0px 0px 58px 6px rgba(28, 71, 193, 0.15);
    box-shadow: 0px 0px 58px 6px rgba(28, 71, 193, 0.15);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .team-member-info {
        padding: 30px;
    }
}

@media only screen and (max-width: 767.98px) {
    .team-member-info {
        padding: 10px;
    }
}

@media only screen and (max-width: 575.98px) {
    .team-member-info {
        padding: 40px;
    }
}

.team-member:hover .team-member-info {
    opacity: 1;
    visibility: visible;
}

.team-member--hover-effect {
    text-align: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px),
only screen and (min-width: 768px) and (max-width: 991.98px) {
    .team-member--hover-effect {
        margin-top: 130px;
    }
}

@media only screen and (max-width: 767.98px) {
    .team-member--hover-effect {
        margin-top: 100px;
    }
}

@media only screen and (max-width: 575.98px) {
    .team-member--hover-effect {
        margin-top: 100px;
    }
}

.team-member--hover-effect:before,
.team-member--hover-effect:after {
    top: 0;
    left: 50%;
    width: 10px;
    height: 10px;
    content: '';
    position: absolute;
    border: 1px solid #b9b9b9;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.team-member--hover-effect:after {
    top: 0;
    left: 55%;
    width: 13px;
    height: 13px;
}

.team-member--hover-effect .team-member-info {
    left: 50%;
    top: -100px;
    content: '';
    position: absolute;
    -webkit-transform: translateX(-6px) scale(0.7);
    -ms-transform: translateX(-6px) scale(0.7);
    transform: translateX(-6px) scale(0.7);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    white-space: nowrap;
    text-align: left;
    padding: 0;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .team-member--hover-effect .team-member-info {
        top: -80px;
    }
}


.containerv {
    display: flex;
    align-items: center;
    max-width: 100%;
    padding: 20px;
    font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #ffffff;
            box-shadow: white;
            border-radius: 10px;
}
.text-sectionv {
    max-width: 500px;
    margin-left: 20px;
}
.text-sectionv h1 {
    font-size: 24px;
    color: #333333;
}
.text-sectionv h1 span {
    color: #d9534f;
}
.text-sectionv p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}
.image-sectionv {
    display: flex;
    align-items: center;
}
.image-sectionv img {
    max-width: 500px;
    height: auto;
    width: 500px;
}
.team-member--hover-effect .team-member-name {
    font-weight: 700;
    padding-bottom: 3px;
}

.team-member--hover-effect .team-member-name a {
    color: #151515;
}

.team-member--hover-effect .team-member-name a:hover {
    color: green;
}

.team-member--hover-effect .team-member-desig {
    font-weight: 400;
}

.team-member--hover-effect:hover:before,
.team-member--hover-effect:hover:after,
.team-member--hover-effect.active:before,
.team-member--hover-effect.active:after,
.team-member--hover-effect.team-open:before,
.team-member--hover-effect.team-open:after {
    opacity: 1;
    visibility: visible;
    top: -23px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {

    .team-member--hover-effect:hover:before,
    .team-member--hover-effect:hover:after,
    .team-member--hover-effect.active:before,
    .team-member--hover-effect.active:after,
    .team-member--hover-effect.team-open:before,
    .team-member--hover-effect.team-open:after {
        top: -15px;
    }
}

.team-member--hover-effect:hover:after,
.team-member--hover-effect.active:after,
.team-member--hover-effect.team-open:after {
    top: -45px;
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {

    .team-member--hover-effect:hover:after,
    .team-member--hover-effect.active:after,
    .team-member--hover-effect.team-open:after {
        top: -30px;
    }
}

.team-member--hover-effect:hover .team-member-info,
.team-member--hover-effect.active .team-member-info,
.team-member--hover-effect.team-open .team-member-info {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
    -webkit-transform: translateX(-6px) scale(1);
    -ms-transform: translateX(-6px) scale(1);
    transform: translateX(-6px) scale(1);
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {

    .team-member--hover-effect:hover .team-member-info,
    .team-member--hover-effect.active .team-member-info,
    .team-member--hover-effect.team-open .team-member-info {
        -webkit-transform: translateX(-6px) scale(1);
        -ms-transform: translateX(-6px) scale(1);
        transform: translateX(-6px) scale(1);
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .team-content.about-inner {
        padding-right: 140px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .team-content.about-inner {
        margin-top: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px),
only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .team-content--style_2 {
        margin-bottom: 65px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px),
only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .team-wrapper.section-padding--pb_120 {
        padding-top: 0;
    }
}

.team-wrapper--style_1 {
    padding-top: 80px;
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px),
only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .team-wrapper--style_1 {
        padding-top: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .team-wrapper [class*="col-"]:last-child .team-member--hover-effect .team-member-info {
        -webkit-transform: translateX(-6px) scale(1);
        -ms-transform: translateX(-6px) scale(1);
        transform: translateX(-6px) scale(1);
        left: auto;
        right: 0;
    }
}

@media only screen and (max-width: 575.98px) {
    .team-wrapper [class*="col-"]:last-child .team-member--hover-effect .team-member-info {
        -webkit-transform: translateX(-6px) scale(1);
        -ms-transform: translateX(-6px) scale(1);
        transform: translateX(-6px) scale(1);
        left: 50%;
    }
}

@media only screen and (max-width: 479.98px) {
    .team-wrapper--style_1 [class*="col-"] {
        max-width: 100%;
        -webkit-box-flex: 100%;
        -webkit-flex: 100%;
        -ms-flex: 100%;
        flex: 100%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .team-wrapper--style_3 .team-member--hover-effect {
        margin-top: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .team-wrapper--style_3 .team-member--hover-effect {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 479.98px) {
    .team-wrapper--style_3 [class*="col-"] {
        max-width: 100%;
        -webkit-box-flex: 100%;
        -webkit-flex: 100%;
        -ms-flex: 100%;
        flex: 100%;
    }
}

@media only screen and (max-width: 575.98px) {
    .team-wrapper--style_3 [class*="col-"] .team-member--hover-effect {
        margin-top: 100px;
    }
}

@media only screen and (max-width: 575.98px) {
    .team-wrapper--style_3 .section-padding--pt_80 {
        padding-top: 0;
    }
}

/*------ team details start ------*/
@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .team-member-details {
        margin-top: 60px;
    }
}

.team-details-widget .quick-contact {
    padding: 25px 25px 18px 25px;
}

.team-details-widget .quick-contact .quick-title {
    font-weight: 700;
    color: green;
    padding-bottom: 20px;
}

.team-details-widget .quick-contact a {
    display: block;
    color: #151515;
    margin-bottom: 10px;
}

.team-details-widget .quick-contact a:hover {
    color: green;
}

.team-details-widget .quick-contact .team-sicial-link a {
    display: inline-block;
    color: #151515;
    font-size: 18px;
    margin-right: 15px;
}

.team-details-widget .quick-contact .team-sicial-link a:hover {
    color: green;
}

.team-details-widget .quick-contact .team-sicial-link a:last-child {
    margin-right: 0;
}

/*-- Single Skill --*/
.single-skill {
    margin-bottom: 30px;
}

.single-skill:last-child {
    margin-bottom: 0;
}

.single-skill span {
    display: block;
    font-size: 14px;
    line-height: 1;
    color: #151515;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.single-skill .skill-bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #dbdbdb;
    padding: 1px;
}

.single-skill .skill-bar .skill-progress {
    display: block;
    height: 100%;
    background-color: green;
    position: relative;
}

.single-skill .skill-bar .skill-progress::before {
    content: attr(data-progress);
    position: absolute;
    right: 0;
    bottom: 15px;
    font-size: 14px;
    line-height: 1;
    color: #151515;
    letter-spacing: 1px;
}

/*------ team details end ------*/
/*------ team area style end ------*/
/*------- pricing table start -------*/
.pricing-item {
    border-radius: 5px;
    padding: 50px 0;
    text-align: center;
    border: 1px solid #e1e1e1;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.pricing-item:hover,
.pricing-item.active {
    -webkit-box-shadow: 0 0 30px 1px rgba(1, 26, 72, 0.12);
    box-shadow: 0 0 30px 1px rgba(1, 26, 72, 0.12);
}

.dolar {
    color: #011a48;
    font-size: 26px;
    font-weight: 600;
    padding-right: 3px;
    vertical-align: super;
}

.price-head {
    background-image: url(../../assets/img/bg/1.png);
    background-position: center;
    background-repeat: no-repeat;
}

.price-head h2 {
    font-size: 60px;
    font-weight: 700;
    display: inline-block;
}

@media only screen and (max-width: 479.98px) {
    .price-head h2 {
        font-size: 36px;
    }
}

.price-head h4 {
    display: inline-block;
}

.pricing-title {
    color: green;
    font-size: 30px;
    display: block;
    padding-top: 15px;
}

.pricing-list {
    margin-bottom: 20px;
    padding: 30px;
}

.pricing-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e1e1e1;
}

.pricing-list li:first-child {
    border-top: 1px solid #e1e1e1;
}

/*------- pricing table end -------*/
/*------ pagination area style start ------*/
.paginatoin-area {
    padding: 20px;
    border: 1px solid #e1e1e1;
}

.paginatoin-area .pagination-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.paginatoin-area .pagination-box li {
    margin-right: 5px;
    display: inline-block;
}

.paginatoin-area .pagination-box li:last-child {
    margin-right: 0;
}

.paginatoin-area .pagination-box li a {
    color: #151515;
    height: 36px;
    width: 36px;
    font-size: 14px;
    display: inline-block;
    text-align: center;
    line-height: 36px;
    background-color: #f5f5f5;
    border-radius: 5px;
}

.paginatoin-area .pagination-box li a i {
    font-size: 22px;
    line-height: 36px;
}

.paginatoin-area .pagination-box li a:hover {
    color: #fff;
    border-color: green;
    background-color: green;
}

.paginatoin-area .pagination-box li.active a {
    color: #fff;
    background-color: green;
}

/*------ pagination area style end ------*/
/*----- blog post item start -----*/
.blog-item:hover .blog-thumb img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.blog-thumb {
    text-align: center;
    background-color: #f5f6f7;
    overflow: hidden;
}

.blog-thumb a {
    display: block;
}

.blog-content {
    padding-top: 18px;
}

.blog-title {
    padding-bottom: 10px;
}

.blog-title a {
    color: #151515;
}

.blog-title a:hover {
    color: green;
}

.blog-meta:hover a {
    color: #151515;
}

.blog-content.blog-details .blog-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}

@media only screen and (max-width: 575.98px) {
    .blog-content.blog-details .blog-title {
        font-size: 24px;
    }
}

.blog-content.blog-details .blog-meta {
    padding-bottom: 20px;
}

.blog-content blockquote {
    border-left: 5px solid green;
    margin: 25px 32px 25px 30px;
    background-color: #f8f8f8;
    padding: 15px;
}

@media only screen and (max-width: 575.98px) {
    .blog-content blockquote {
        margin: 25px 15px 25px 15px;
    }
}

/*----- blog post item end -----*/
/*----- blog sidebar start -------*/
@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .blog-widget-wrapper {
        margin-top: 20px;
    }
}

.blog-widget-title {
    font-weight: 500;
    line-height: 1;
    margin-bottom: 40px;
    position: relative;
}

.blog-widget-title:before,
.blog-widget-title:after {
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    position: absolute;
    background-color: #e1e1e1;
}

.blog-widget-title:after {
    width: 50px;
    background-color: green;
}

.widget-search-form {
    position: relative;
}

.widget-search-form .search-field {
    width: 100%;
    border: none;
    height: 46px;
    line-height: 1;
    font-size: 14px;
    padding: 0 15px;
    padding-right: 55px;
    background-color: #f6f6f6;
}

.widget-search-form .search-btn {
    width: 46px;
    height: 46px;
    background-color: green;
    color: #fff;
    font-size: 18px;
    line-height: 46px;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
}

.widget-search-form .search-btn:hover {
    background-color: #151515;
}

.recent-posts {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
}

.recent-posts-image {
    width: 80px;
}

.recent-posts-body {
    line-height: 1;
    padding-left: 10px;
    width: calc(100% - 80px);
}

.recent-posts-meta {
    display: block;
    font-size: 14px;
    line-height: 1;
    padding-bottom: 10px;
}

.recent-posts-title {
    font-weight: 500;
    line-height: 1.3;
}

.recent-posts-title a {
    color: #151515;
}

.recent-posts-title a:hover {
    color: green;
}

.recent-posts:last-child {
    margin-bottom: 0;
}

.blog-categories li {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 20px;
}

.blog-categories li a {
    color: #151515;
}

.blog-categories li span {
    float: right;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.blog-categories li:last-child {
    margin-bottom: 0;
}

.blog-categories li:hover a {
    color: green;
}

.blog-categories li:hover span {
    color: green;
}

.blog-tag {
    margin-bottom: -5px;
}

.blog-tag a {
    color: #151515;
    font-size: 14px;
    border: 1px solid #e1e1e1;
    line-height: 1;
    padding: 8px 15px;
    display: inline-block;
    margin-bottom: 5px;
}

.blog-tag a:hover {
    color: #fff;
    background-color: green;
    border-color: green;
}

/*----- blog sidebar end -------*/
/*--- blog comment section start ---*/
.comment-section {
    margin-top: -10px;
}

@media only screen and (max-width: 767.98px) {
    .comment-section {
        margin-top: -14px;
    }
}

.comment-section h4 {
    line-height: 1;
    padding-bottom: 15px;
}

.comment-section ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 20px;
    margin-bottom: 30px;
    border: 1px solid #e1e1e1;
}

.comment-section ul li:last-child {
    margin-bottom: 5px;
}

@media only screen and (max-width: 479.98px) {
    .comment-section ul li {
        display: block;
    }
}

.comment-section ul li .author-avatar {
    -webkit-flex-basis: 66px;
    -ms-flex-preferred-size: 66px;
    flex-basis: 66px;
    max-height: 62px;
    margin-right: 10px;
}

@media only screen and (max-width: 479.98px) {
    .comment-section ul li .author-avatar {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 66px;
        height: 62px;
    }
}

.comment-section ul li.comment-children {
    margin-left: 40px;
}

@media only screen and (max-width: 479.98px) {
    .comment-section ul li.comment-children {
        margin-left: 20px;
    }
}

.comment-section ul li .comment-body {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

.comment-section ul li .comment-body h5 {
    font-size: 14px;
    padding-bottom: 5px;
    font-family: "Sarabun", sans-serif;
}

.comment-section ul li .comment-body .comment-post-date {
    font-size: 13px;
    padding-bottom: 10px;
}

.comment-section ul li .comment-body .reply-btn {
    float: right;
}

.comment-section ul li .comment-body .reply-btn a {
    color: #151515;
    font-size: 12px;
    display: inline-block;
    padding: 4px 15px;
    border-radius: 20px;
    text-transform: capitalize;
    border: 1px solid #e1e1e1;
}

.comment-section ul li .comment-body .reply-btn a:hover {
    color: #fff;
    border-color: green;
    background-color: green;
}

/*--- blog comment section end ---*/
/*------ blog comment box start -----*/
.blog-comment-wrapper {
    margin-top: -10px;
}

@media only screen and (max-width: 767.98px) {
    .blog-comment-wrapper {
        margin-top: -14px;
    }
}

.blog-comment-wrapper p {
    padding-top: 10px;
}

.blog-comment-wrapper .comment-post-box label {
    color: #151515;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    text-transform: capitalize;
}

.blog-comment-wrapper .comment-post-box .coment-field {
    background: #f8f8f8;
    border: none;
    color: #151515;
    padding: 8px 10px;
    width: 100%;
    border: 1px solid #e1e1e1;
}

@media only screen and (max-width: 767.98px) {
    .blog-comment-wrapper .comment-post-box .coment-field {
        margin-bottom: 20px;
    }
}

.blog-comment-wrapper .comment-post-box textarea {
    height: 130px;
    margin-bottom: 20px;
    padding: 10px;
    width: 100%;
    background: #f8f8f8;
    border: 1px solid #e1e1e1;
}

.blog-comment-wrapper .comment-post-box .coment-btn {
    margin-top: 30px;
}

@media only screen and (max-width: 767.98px) {
    .blog-comment-wrapper .comment-post-box .coment-btn {
        margin-top: 10px;
    }
}

/*------- blog comment box end --------*/
/*----- Google map area start -----*/
#google-map {
    height: 500px;
    width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    #google-map {
        height: 400px;
    }
}

@media only screen and (max-width: 767.98px) {
    #google-map {
        height: 350px;
    }
}

/*----- Google map area end -----*/
/*------ contact form area start -------*/
.contact-message form input,
.contact-message form textarea {
    width: 100%;
    border: none;
    padding: 10px 10px;
    border-bottom: 3px solid transparent;
    background-color: #f7f7f7;
    margin-bottom: 30px;
}

.contact-message form textarea {
    height: 150px;
}

/*------ contact form area start -------*/
.container1 {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    padding: 20px;
}

.form-image-wrapper {
    display: flex;
    width: 100%;
}

.half-width {
    width: 50%;
}

.form-container {
    padding: 40px;
}

.form-container p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background-color: #f1f5f8;
}

.form-group input:invalid {
    border-color: darkgreen;
}

.form-group input:invalid + .error-message {
    display: block;
    color: green;
    font-size: 14px;
    margin-top: 5px;
}

.form-group .error-message {
    display: none;
}

.form-group.half-width {
    width: 48%;
    display: inline-block;
}

.form-group.half-width:first-child {
    margin-right: 4%;
}

.submit-btn {
    background-color: green;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: darkgreen;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    padding: 20px;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-image-wrapper {
        flex-direction: column;
    }

    .half-width {
        width: 100%;
    }

    .form-group.half-width {
        width: 100%;
        margin-right: 0;
    }
}

/*------ contact info area start -------*/
.contact-information {
    height: 100%;
    padding-left: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .contact-information {
        margin-bottom: 65px;
        padding-left: 0;
    }
}

.contact-information p {
    padding-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .contact-information p {
        padding-bottom: 10px;
    }
}

.contact-information ul li {
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 15px;
    margin-bottom: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 479.98px) {
    .contact-information ul li {
        -webkit-box-align: baseline;
        -webkit-align-items: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
    }
}

.contact-information ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-information ul li i {
    font-size: 18px;
    padding-right: 10px;
}

.contact-title {
    padding-bottom: 35px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .contact-title {
        margin-top: -13px;
        padding-bottom: 20px;
    }
}

/*------ contact info area end -------*/
/*---------- faq style start ----------*/
.faq-inner .card {
    border: none;
    margin-bottom: 30px;
}

.faq-inner .card:last-child {
    margin-bottom: 0;
}

.faq-inner .card .card-body {
    line-height: 1.8;
    border: 1px solid #e1e1e1;
}

.card-header {
    padding: 0;
    border: none;
}

.card-header button {
    color: #151515;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    line-height: 1.2;
    padding: 16px 30px;
    text-align: left;
    text-transform: capitalize;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f8f8f8;
    position: relative;
}

@media only screen and (max-width: 479.98px) {
    .card-header button {
        padding: 12px 10px;
    }
}

.card-header button:hover {
    background-color: green;
    color: #fff;
}

.card-header button i {
    color: green;
    font-size: 20px;
    padding-right: 10px;
}

.card-header button:before {
    top: 50%;
    right: 20px;
    content: "\f107";
    position: absolute;
    font-family: "FontAwesome";
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (max-width: 479.98px) {
    .card-header button:before {
        right: 10px;
    }
}

.faq-inner .card-header .accordio-heading[aria-expanded="false"] {
    background-color: #f8f8f8;
}

.faq-inner .card-header .accordio-heading[aria-expanded="true"] {
    color: #fff;
    background-color: green;
}

.faq-inner .card-header .accordio-heading[aria-expanded="true"] i {
    color: #fff;
}

.faq-inner .card-header .accordio-heading[aria-expanded="true"]:before {
    content: "\f106";
}

/*---------- faq style end ----------*/
.error h1 {
    font-size: 200px;
    font-weight: 900;
    letter-spacing: 1rem;
    line-height: 1;
    margin-top: -44px;
    color: green;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .error h1 {
        font-size: 130px;
        margin-top: -30px;
    }
}

@media only screen and (max-width: 767.98px) {
    .error h1 {
        font-size: 100px;
        margin-top: -23px;
    }
}

.error h2 {
    font-size: 25px;
    padding: 10px 0;
}

@media only screen and (max-width: 479.98px) {
    .error h2 {
        font-size: 20px;
    }
}

.error .searchform {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.error .searchform__input {
    border: 1px solid #e1e1e1;
    height: 45px;
    width: 100%;
    padding-left: 15px;
}

@media only screen and (max-width: 479.98px) {
    .error .searchform__input {
        width: 85%;
    }
}

.error .searchform__submit {
    border: none;
    background-color: green;
    width: 70px;
    color: #fff;
    cursor: pointer;
}

.error .searchform__submit:hover {
    background-color: #151515;
}

.error .btn-all {
    margin-top: 30px;
}

/*----- footer section start -----*/
@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .footer-widget-area.pb-125 {
        padding-bottom: 67px;
    }
}

.widget-logo {
    max-width: 200px;
    margin-bottom: 30px;
}

.widget-title {
    font-weight: 800;
    margin-bottom: 38px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
only screen and (max-width: 767.98px) {
    .widget-title {
        margin: -6px 0 20px;
    }
}

.widget-body .desc {
    color: #151515;
}

.news-subtitle p b {
    font-weight: 600;
    padding-top: 5px;
    padding-bottom: 8px;
}

.contact-info {
    padding-top: 12px;
}

.contact-info li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    line-height: 1.5;
    margin-bottom: 22px;
}

.contact-info li span {
    font-weight: 600;
    padding-right: 5px;
}

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

.useful-link li {
    line-height: 1.7;
    margin-bottom: 20px;
    width: 50%;
    float: left;
}

.useful-link li a {
    color: #151515;
    position: relative;
    padding-left: 18px;
}

.useful-link li a:before {
    top: 50%;
    left: 0;
    content: '\f101';
    position: absolute;
    font-family: "FontAwesome";
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.useful-link li a:hover {
    color: green;
    padding-left: 25px;
}

.useful-link li:last-child {
    margin-bottom: 0;
    clear: both;
}

.twitter-post {
    padding-right: 25px;
}

.twitter-post li:not(:last-child) {
    margin-bottom: 22px;
}

.newsletter-inner {
    margin-top: 15px;
}

.newsletter-inner form {
    position: relative;
}

.newsletter-inner .news-field {
    font-size: 14px;
    width: 100%;
    height: 50px;
    line-height: 1;
    color: #151515;
    padding: 0 25px;
    border: 1px solid #e1e1e1;
    border-radius: 50px;
    margin-bottom: 20px;
}

.newsletter-inner .btn {
    background-color: green;
}

.newsletter-inner .btn:hover {
    background-color: #151515;
}

.footer-bottom {
    padding: 21px 0;
}

.copyright-text p {
    font-weight: 600;
}

.copyright-text p a {
    color: green;
    
    
}
 /* Make the icons black */
.social-links li a i {
    color: green;
    margin-bottom: 25px;
}

/* Optionally, add hover effect */
.social-links li a:hover i {
    color: #555; /* Change to any shade for a subtle effect */
}

@media only screen and (min-width: 1600px) {
    .footer-widget-area [class*="col-"] .footer-single-widget {
        padding-left: 18px;
    }
}

@media only screen and (min-width: 1600px) {
    .footer-widget-area [class*="col-"]:first-child .footer-single-widget {
        padding-left: 0;
    }
}
.containerb {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f8f9fa;
}
.billing-sectionb, .info-sectionb {
    padding: 20px;
}
.billing-sectionb {
    flex: 1;
    border-right: 1px solid #e9ecef;
}
.info-sectionb {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.billing-sectionb h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
.billing-itemb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.billing-itemb input {
    width: 40px;
    text-align: center;
}
.total-payableb {
    font-size: 18px;
    font-weight: 700;
    margin: 20px 0;
}
.payment-methodsb {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.payment-methodsb label {
    display: flex;
    align-items: center;
}
.payment-methodsb input {
    margin-right: 5px;
}
.buttonsb {
    display: flex;
    justify-content: space-between;
}
.buttonsb button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.buttonsb .print-bill {
    background-color: green;
    color: #fff;
}
.buttonsb .kot-print {
    background-color: #fff;
    color: green;
    border: 1px solid green;
}
.info-sectionb h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
.info-sectionb p {
    font-size: 16px;
    margin-bottom: 20px;
}
.info-sectionb .info-itemb {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.info-sectionb .info-itemb i {
    font-size: 20px;
    margin-right: 10px;
}
.info-sectionb .info-itemb p {
    margin: 0;
}
.image-sectionb {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.image-sectionb img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.image-sectionb .menub {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
}
.menu-itemb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.menu-itemb:last-child {
    margin-bottom: 0;
}
.menu-itemb span {
    font-size: 14px;
}
@media (max-width: 768px) {
    .containerb {
        flex-direction: column;
    }
    .billing-sectionb, .info-sectionb {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }
}
.containerww {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.text-sectionww {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
}

.text-sectionww h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.text-sectionww p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.featureww {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 10px;
}

.featureww i {
    font-size: 24px;
    color: rgb(47, 156, 47);
}

.featureww p {
    font-size: 16px;
    color: #333;
}

.image-sectionww {
    flex: 1;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-sectionww img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.tabsww {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tabww {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #f5f5f5;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    flex: 1;
    text-align: center;
}

.tabww.active {
    background-color: #ffe6e6;
    color: green;
}

.tabww i {
    font-size: 20px;
    margin-right: 5px;
}

.tabww span {
    font-size: 16px;
    color: #333;
}

.order-cardww {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.order-cardww:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.headerww {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.headerww img {
    height: 60px;
    width: auto;
}

.deliveryww {
    background-color: #ffcc00;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.detailsww {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
}

.detailsww .priceww {
    font-weight: 700;
}

.actionsww {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.actionsww button {
    background-color: green;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s, transform 0.3s;
}

.actionsww button:hover {
    background-color: greenyellow;
    transform: translateY(-3px);
}

.actionsww button.mark-outww {
    background-color: greenyellow;
    color: #333;
}

@media (max-width: 768px) {
    .containerww {
        flex-direction: column;
    }

    .text-sectionww,
    .image-sectionww {
        width: 100%;
    }

    .text-sectionww h1 {
        font-size: 28px;
    }

    .text-sectionww p {
        font-size: 16px;
        
    }

    .tabsww {
        flex-direction: column;
        gap: 10px;
    }

    .tabww {
        font-size: 14px;
        padding: 10px;
    }

    .actionsww button {
        font-size: 12px;
        padding: 8px 16px;
    }
}

.containernn {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
    
    padding: 10;
    background-color: #f8f9fa;
  }

  .left-sectionnn {
    flex: 1;
    margin-right: 20px;
  }

  .right-sectionnn {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .table-managementnn {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }

  .table-managementnn h2 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 500;
  }

  .tablesnn {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .tablenn {
    padding: 10px 20px;
    border: 2px dashed #ccc;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
  }

  .tablenn.active {
    background-color: #d1e7ff;
    border-color: #0d6efd;
  }

  .tablenn.green {
    background-color: #d4edda;
    border-color: #28a745;
  }

  .tablenn.yellow {
    background-color: #fff3cd;
    border-color: #ffc107;
  }

  .ordersnn {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .ordernn {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
  }

  .ordernn img {
    width: 100px;
    margin-bottom: 30px;
  }

  .order-detailsnn {
    font-size: 14px;
    margin-bottom: 50px;
  }

  .order-detailsnn span {
    display: block;
    margin-bottom: 10px;
  }

  .order-actionsnn {
    display: flex;
    gap: 10px;
  }

  .order-actionsnn button {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
  }

  .order-actionsnn .mark-out-of-stocknn {
    background-color: #dc3545;
    color: #fff;
  }

  .order-actionsnn .acceptnn {
    background-color: #28a745;
    color: #fff;
  }

  .right-sectionnn h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .right-sectionnn p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .right-sectionnn ul {
    list-style: none;
    padding: 0;
  }

  .right-sectionnn ul li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }

  .right-sectionnn ul li i {
    margin-right: 10px;
    color: #0d6efd;
  }

  @media (max-width: 768px) {
    .containernn {
      flex-direction: column;
    }
    .left-sectionnn,
    .right-sectionnn {
      margin-right: 0;
    }
  }

.containerbb {
    padding: 50px;
    text-align: center;
    margin: 0;
        font-family: 'Roboto', sans-serif;
        background-color: #0B1120;
        color: #FFFFFF;
}

.headerbb {
    color: #FF4C61;
    font-size: 24px;
    margin-bottom: 10px;
}

.titlebb {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.contentbb {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

.cardbb {
    background-color: #1A2238;
    border-radius: 10px;
    padding: 20px;
    width: 45%;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

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

.cardbb img {
    width: 100%;
    border-radius: 10px;
}

.card-contentbb {
    text-align: left;
    margin-top: 20px;
}

.card-contentbb h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color:whitesmoke;
}

.card-contentbb p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.icon-listbb {
    list-style: none;
    padding: 0;
}

.icon-listbb li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.icon-listbb li i {
    color: #FF4C61;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .cardbb {
        width: 100%;
    }
}

.container_su2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    font-family: 'Arial', sans-serif;
            margin-left: 100px;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #ffffff;
            max-width: 100%;
}
.text-section_su2 {
    max-width: 400px;
    margin-right: 20px;
}
.text-section_su2 h1 {
    font-size: 36px; /* Reduced font size */
    color: #333333;
    margin: 0;
}
.text-section_su2 h1 span {
    display: block;
    font-size: 40px; /* Reduced font size for span */
}
.text-section_su2 p {
    font-size: 18px;
    color: #666666;
    margin: 10px 0;
}
.text-section_su2 .support_su2 {
    color: #2fa2d3;
    font-weight: bold;
    font-size: 30px;
}
.text-section_su2 .emoji_su2 {
    font-size: 50px;
}
.text-section_su2 .button {
    background-color:#2fa2d3 ;
    color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    margin-top: 30px; /* Added margin-top to move the button down */
}
.image-section_su2 {
    position: relative;
}
.image-section_su2 img {
    max-width: 60%;
    height:  60%;
    margin-left: 100px;
}
.image-section_su2 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
    .container_su2 {
        flex-direction: column;
        text-align: center;
    }
    .text-section_su2 {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
.container_su3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    font-family: Arial, sans-serif;
            background-color: #ffffff;
            color: #333333;
            margin: 0;
            padding: 0;
}
.service_su3 {
    flex: 1 1 30%;
    max-width: 30%;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
}
.service_su3 img {
    width: 50px;
    height: 50px;
}
.service_su3 h3 {
    font-size: 18px;
    margin: 10px 0;
}
.service_su3 p {
    font-size: 14px;
    color: #666666;
}
@media (max-width: 768px) {
    .service_su3 {
        flex: 1 1 45%;
        max-width: 45%;
    }
}
@media (max-width: 480px) {
    .service_su3 {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
.container_su4 {
    text-align: center;
    padding: 20px;
    font-family: Arial, sans-serif;
            background-color: white;
            margin: 0;
            padding: 0;
            width: 100%;
            justify-content: center;
            align-items: center;
            height: 80vh;
}
.header_su4 {
    font-size: 34px;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
}
.contact-options_su4 {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: nowrap;
}
.contact-option_su4 {
    text-align: center;
    flex: 1 1 200px;
    margin: 50px;
}
.contact-option_su4 img {
    width: 80px;
    height: 80px;
}
.contact-option_su4 p {
    margin: 10px 0;
    font-size: 16px;
    color: #333;
}
.contact-option_su4 a {
    color: #007bff;
    text-decoration: none;
}
.contact-option_su4 a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .contact-options_su4 {
        flex-wrap: wrap;
    }
}
.header_su3 {
 
    margin-bottom: 50px;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: #2fa2d3;
}
/*----- footer section end -----*/