*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
}
:root {
    --main-color: #1C6047;
}


/* Remove Bootstrap default button styles */
button,
input[type="button"],
input[type="submit"] {
    background: none;
    border: none;
    box-shadow: none;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

/* Remove Bootstrap default focus styles */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: none !important;
}

/* Remove Bootstrap default input styles */
input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
    border-radius: 0;
    box-shadow: none;
    outline: none;
}

/* Remove default hover effects */
button:hover,
input:hover,
textarea:hover,
select:hover {
    box-shadow: none;
}

/* Remove focus, hover, and click effects on search fields */
input[type="search"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    box-shadow: none;
}

input[type="search"]:focus,
input[type="search"]:hover {
    box-shadow: none;
    outline: none;
}



/* Common Typography */
/* common typography */
h1{
    font-size: 64px;
    font-weight: 700;
}

h3{
    font-size: 36px;
    font-weight: 700;
}

h4{
    font-size: 36px;
    font-weight: 500;
}

h5{
    font-size: 28px;
    font-weight: 700;
}

h6{
    font-size: 24px;
    font-weight: 500;
}

p{
    font-size: 24px;
    font-weight: 400;
}
span{
    font-size: 24px;
    font-weight: 700;
}
a{
    font-size: 24px;
    font-weight: 500;
}



/* Navbar Styling */
.sulspap-navbar {
    border-bottom: 1px solid #e0e0e0;
}

.sulspap-navbar .nav-link {
    color: var(--main-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin-right: 10px;
}

.sulspap-navbar .nav-link:hover {
    color: var(--main-color);
}
.sulspap-navbar .nav-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.sulspap-navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 0;
    height: 2px;
    background-color: var(--main-color);
    transition: width 0.4s ease-in-out;
}

.sulspap-navbar .nav-link:hover::after {
    width: 100%;
}


/* Hero Section Styling */
.hero-section {
    background-image: url('images/heo4.png'); /* Background image */
    background-size: cover;
    background-position: center;
    min-height: calc(100vh - 80px); /* Adjust for the height of the navbar (approx. 80px) *//
    text-align: center;
}

.hero-title {
    padding-top: 100px;
    color: #ffffff;
}

.hero-subtitle {
    color: #ffffff;
}

/* site description */
.site-description{
    padding: 80px 0;
}



/* site discover */

.site-discover{
    background-color:#CEF9DF;
}

.discover-info{
    padding: 100px 0;
}

.discover-image img{
    height: 100%;
}



/* Digital Services */
/* Digital Services Section */
.digital-services-section {
    padding: 60px 0;
    background-color: #fff;
}

.digital-services-section .section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.digital-services-section .section-title::before,
.digital-services-section .section-title::after {
    content: '';
    display: inline-block;
    width: 80px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 50%;
}

.digital-services-section .section-title::before {
    left: -100px;
}

.digital-services-section .section-title::after {
    right: -100px;
}

.digital-services-section .services-row {
    margin-top: 40px;
}

.digital-services-section .service-item {
    margin-bottom: 40px;
}

.digital-services-section .service-title {
    margin-bottom: 15px;
}

.digital-services-section .service-description {
    line-height: 1.6;
}






/* CTA section */
/* Call to Action Section */
.cta-section {
    background-color: #CEF9DF;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    background: url('images/ctaImage.png') no-repeat center center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3; /* You can adjust opacity to match the design */
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section .cta-text {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #333;
}

.cta-section .cta-buttons {
    display: inline-flex;
    gap: 20px;
}

.cta-section .btn {
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-section .open-account-btn {
    background-color: #1C6047;
    color: #fff;
    border: 1px solid #1C6047;
}

.cta-section .open-account-btn:hover {
    background-color: #174c3a;
    border-color: #174c3a;
}

.cta-section .learn-more-btn {
    background-color: transparent;
    color: #1C6047;
    border: 1px solid #1C6047;
}

.cta-section .learn-more-btn:hover {
    background-color: #1C6047;
    color: #fff;
    border-color: #1C6047;
}







/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: #F9FFF9;
}

.faq-section .faq-title {
    margin-bottom: 30px;
}

.faq-section .faq-item {
    margin-bottom: 20px;
    border: 1px solid #1C6047;
    border-radius: 8px;
    overflow: hidden;
}

.faq-section .faq-question {
    width: 100%; /* Ensures all FAQ buttons have the same width */
    text-align: left;
    padding: 15px 20px;
    background-color: transparent;
    border: none;
    color: #1C6047;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease; /* Smooth hover effect */
    font-size: 28px;
}

.faq-section .faq-question:hover {
    background-color: #CEF9DF;
}

.faq-section .faq-answer {
    padding: 0 20px;
    color: #333;
    max-height: 0; /* Initially hidden */
    overflow: hidden; /* Hide content until expanded */
    transition: max-height 0.5s ease; /* Smooth dropdown transition */
}

.faq-section .faq-answer p {
    margin: 0;
    padding-top: 20px;
}

.faq-section .faq-image img {
    max-width: 100%;
    border-radius: 8px;
}









/* Career Section */
.career-section {
    padding: 60px 0;
    background-color: #F0FFDB; /* Light green background */
}

.career-section .section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.career-section .section-title::before,
.career-section .section-title::after {
    content: '';
    display: inline-block;
    width: 80px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 50%;
}

.career-section .section-title::before {
    left: -100px;
}

.career-section .section-title::after {
    right: -100px;
}

.career-section .section-subtitle {
    color: #333;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.career-section .career-positions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center; /* Vertical alignment */
}

.career-section .position-btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    font-size: 36px;
    font-weight: 800px
    ;
}

/* Specific Button Styles */
.position-marketer {
    background-color: #FFDADA;
    color: #000;
}

.position-head-operations {
    background-color: #DADAFF;
    color: #000;
}

.position-hr-manager {
    background-color: #FFECCC;
    color: #000;
    padding: 15px 50px; /* Larger padding to increase size without going full width */
}

/* Hover Effects */
.position-btn:hover {
    opacity: 0.8;
    transform: translateY(-5px);
}










/* Account Section */
.account-section {
    padding: 60px 0;
    background-color: #1C6047; /* Dark green background */
    color: #fff;
}

.account-section .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.account-section .account-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    color: #fff;
}

.account-section .account-title::before,
.account-section .account-title::after {
    content: '';
    display: inline-block;
    width: 80px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
}

.account-section .account-title::before {
    left: -100px;
}

.account-section .account-title::after {
    right: -100px;
}

.account-section .account-subtitle {
    margin-top: 15px;
}

.account-section .account-description {
    line-height: 1.8;
}

.account-section .get-started-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #fff;
    color: #1C6047;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.account-section .get-started-btn:hover {
    background-color: #f5f5f5;
    color: #1C6047;
}

.account-section .account-image img {
    border-radius: 10px; /* Rounded corners for the image */
}






/* Footer Section */
.footer-section {
    padding: 40px 0;
    background-color: #fff; /* White background */
    border-top: 1px solid #e0e0e0; /* Thin border on top */
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-nav .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px; /* Space between menu items */
}

.footer-nav .footer-menu li {
    display: inline-block;
}

.footer-nav .footer-menu li a {
    text-decoration: none;
    color: #1C6047;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav .footer-menu li a:hover {
    color: #174c3a; /* Darker green on hover */
}

.footer-social {
    margin-top: 20px;
}

.footer-social .social-icon {
    font-size: 24px;
    margin: 0 10px;
    color: #1C6047;
    transition: color 0.3s ease;
}

.footer-social .social-icon:hover {
    color: #174c3a;
}










/* .......................... */
/* about us page */
/* .............................. */
/* About Section */
.about-section {
    padding: 60px 0;
}

.about-text p {
    line-height: 1.8;
    color: #333;
}

.about-text strong {
    font-weight: 700;
}

.about-image {

    text-align: right;
}




/* Vision and Mission Section */
.vision-mission-section {
    padding: 60px 0;
    background-color: #1C6047; /* Dark green background */
    color: #fff;
}

.vision-mission-section h4 {
    margin-bottom: 15px;
}


.vision-text,
.mission-text {
    margin-bottom: 40px;
}

/* Core Values Section */
.core-values h4 {
    margin-bottom: 30px;
    color: #fff;
}

.value-box {
    margin-bottom: 40px;
}

.value-item {
    background-color: #8FC549; /* Light green background for the value boxes */
    padding: 20px;
    border-radius: 10px;
    color: #000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 250px;
}
.value-item h4 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}
.value-item h5 {
    margin-bottom: 10px;
}

/* .......................... */
/* about us page */
/* .............................. */







/* ...............product and serbice................... */

/* Digital Banking Section */
.digitalBanking {
    padding: 80px;
}

.digitalBanking .btn {
    font-size: 25px;
    padding: 10px 15px;
    font-weight: 700;
    border-radius: 10px;
    margin-right: 10px;
}

.chk-balance-btn {
    background-color: #E6FACD;
}

.bills-pay-btn,
.transfer-btn {
    background-color: #CDD4FA;
}

.apply-loan-btn {
    background-color: #FACDCE;
}

.access-trxn-btn {
    background-color: #FAEACD;
}

.banking-login-btn {
    font-size: 24px;
    padding: 3px 10px;
    font-weight: 400;
    border-radius: 8px;
    background-color: #1C6047;
    color: #ffffff;
    margin-right: 0;
}




/* Section Styling */
.vutepay-section {
    background-color: #d2f5cc;
    padding: 50px 0;
  }
  
  .vutepay-title {
    font-size: 3rem;
    font-weight: 700;
    color: #244c3d;
    margin-bottom: 20px;
    text-align: left;
  }
  
  .vutepay-description {
    font-size: 1.25rem;
    color: #244c3d;
    margin-bottom: 20px;
  }
  
  .vutepay-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
  }
  
  .vutepay-list li {
    font-size: 1.2rem;
    color: #244c3d;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
  }
  
  .vutepay-list li::before {
    content: "●";
    font-size: 1.2rem;
    color: #000;
    position: absolute;
    left: 0;
  }
  
  .vutepay-btn {
    font-size: 1.25rem;
    background-color: #1C6047;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
  }
  
  .vutepay-btn:hover {
    background-color: #144f38;
  }
  
  .vutepay-image {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: cover;
  }


  /* POS Section Styling */
.pos-section {
    background-color: #f5f5f5;
    padding: 50px 0;
}

.pos-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #244c3d;
    margin-bottom: 20px;
    text-align: left;
}

.pos-description {
    font-size: 1.2rem;
    color: #244c3d;
    margin-bottom: 20px;
}

.pos-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.pos-list li {
    font-size: 1.2rem;
    color: #244c3d;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.pos-list li::before {
    content: "●";
    font-size: 1.2rem;
    color: #000;
    position: absolute;
    left: 0;
}

.pos-btn {
    font-size: 1.25rem;
    background-color: #1C6047;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
}

.pos-btn:hover {
    background-color: #144f38;
}

.pos-image {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
}


/* Savings Products Section */
.savings-section {
    background-color: #2c6e49;
    padding: 50px 0;
    color: #fff;
}

.savings-title {
    font-size: 2.5rem;
    font-weight: 700;
    color:#8FC549;
    margin-bottom: 20px;
}

.savings-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
    color: #fff;
}

.savings-list li {
    font-size: 1.2rem;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.savings-list li::before {
    content: "●";
    font-size: 1.2rem;
    color: #d3e3c4;
    position: absolute;
    left: 0;
}

.savings-btn {
    font-size: 1.25rem;
    background-color: #d3e3c4;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
}

.savings-btn:hover {
    background-color: #c5d6b4;
}

.savings-image {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}



/* Loan Products Section */
.loan-section {
    background-color: #ffffff;
    padding: 50px 0;
    color: #2e2e2e;
}

.loan-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2e2e2e;
    margin-bottom: 20px;
}

.loan-description {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.loan-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
    color: #2e2e2e;
}

.loan-list li {
    font-size: 1.2rem;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.loan-list li::before {
    content: "●";
    font-size: 1.2rem;
    color: #000000;
    position: absolute;
    left: 0;
}

.loan-btn {
    font-size: 1.2rem;
    background-color: #2c6e49;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
}

.loan-btn:hover {
    background-color: #255a3d;
}

/* ...............product and service................... */




/* ...........blog .................................*/
.blog{
    padding: 80px 0;
}

.blog button{
    background-color: #144f38;
    color: #ffffff;
    padding: 5px 10px ;
    border-radius: 5px;
}

.article{
    padding: 40px;
}




/* ..............contact.................. */

/* We're Here to Help Section */
.help-section {
    background-color: #ffffff;
    padding: 50px 0;
}

.help-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2e2e2e;
    margin-bottom: 15px;
}

.help-description {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 80px;
    line-height: 1.5;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1.1rem;
    color: #ffffff;
    background-color: #d1e7dd; /* Light background with content-specific area */
}

.phone {
    background-color:#E6FACD;
    ; /* Green background for phone */
}

.email {
    background-color:#FAEACD;
}

.contact-item i {
    margin-right: 10px;
    font-size: 1.2rem;
    color:#1C6047;
}

.contact-item a {
    color: #000000;
    text-decoration: none;
}

.address-info {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:#CDD4FA;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1.1rem;
    color: #842029;
    margin-bottom: 30px;
    max-width: 800px;
    margin: auto;
}

.address-info i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.map-container {
    text-align: center;
    margin-top: 50px;
    height: 500px;
}
.gmap_canvas{
    height: 100%;
    border-radius: 20px;
}

.gmap_canvas iframe{
    border-radius: 20px;
}


/* Responsive Styles */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }

    .help-title {
        font-size: 1.8rem;
    }

    .help-description {
        font-size: 1.1rem;
    }

    .map-container iframe {
        max-width: 100%;
    }
}












@media (min-width: 1024px) {

    /* product and service */
    .digitalBanking {
        padding: 80px; /* Larger padding for desktops */
    }

    .digitalBanking .btn {
        font-size: 25px; /* Larger button font size for desktop */
    }

    .buttonWrapper {
        justify-content: space-between; /* Space between buttons on larger screens */
    }
}




/* Media Queries for smaller devices */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem; /* 48px */
    }
    
    h2 {
        font-size: 2.5rem; /* 40px */
    }

    h3, h4 {
        font-size: 2rem; /* 32px */
    }

    h5 {
        font-size: 1.5rem; /* 24px */
    }

    h6 {
        font-size: 1.25rem; /* 20px */
    }

    p, span, a {
        font-size: 1.25rem; /* 20px */
    }
    .digital-services-section .section-title::before,
    .digital-services-section .section-title::after {
        width: 50px;
        left: -70px;
        right: -70px;
    }


    /* product and services */
    .pos-title {
        font-size: 2rem;
    }

    .pos-description {
        font-size: 1.1rem;
    }

    .pos-btn {
        font-size: 1.1rem;
        padding: 8px 16px;
    }

    .pos-list li {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem; /* 40px */
    }

    h2 {
        font-size: 2rem; /* 32px */
    }

    h3, h4 {
        font-size: 1.75rem; /* 28px */
    }

    h5 {
        font-size: 1.25rem; /* 20px */
    }

    h6 {
        font-size: 1.125rem; /* 18px */
    }

    p, span, a {
        font-size: 1.125rem; /* 18px */
    }



    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .site-description {
        padding: 50px 0;
    }
    .discover-info {
        padding: 50px 15px;
    }
    .digital-services-section .section-title::before,
    .digital-services-section .section-title::after {
        width: 40px;
        left: -50px;
        right: -50px;
    }

    .cta-section .cta-text {
        font-size: 18px;
    }

    .cta-section .btn {
        font-size: 14px;
        padding: 10px 15px;
    }
    .faq-section .faq-title {
        font-size: 24px;
    }

    .faq-section .faq-question {
        font-size: 16px;
    }

    .faq-section .faq-answer {
        font-size: 14px;
    }



    .career-section .section-title::before,
    .career-section .section-title::after {
        width: 50px;
        left: -70px;
        right: -70px;
    }



    .career-section .section-subtitle {
        max-width: 100%;
    }

    .career-section .position-btn {
        padding: 12px 20px;
        font-size: 16px;
    }

    .career-section .career-positions {
        flex-direction: column;
        gap: 15px;
    }



    .account-section .container {
        flex-direction: column;
    }
    .account-section .account-title::before,
    .account-section .account-title::after {
        width: 50px;
        left: -70px;
        right: -70px;
    }
    .account-section .get-started-btn {

        padding: 10px 15px;
    }
    .account-section .account-image {
        margin-top: 20px;
    }
    .account-section .account-image img {
        width: 100%;
    }



    .footer-nav .footer-menu {
        flex-direction: column;
        gap: 15px; /* Smaller gap for mobile */
    }

    .footer-social .social-icon {
        font-size: 20px;
        margin: 0 5px;
    }



    /* ......about us ......... */
    .value-item {
        padding: 15px;
    }
    .value-item {
        height: 150px;
    }



    /* product and service */
    .digitalBanking {
        padding: 60px;
    }

    .digitalBanking .btn {
        font-size: 20px; /* Slightly larger font size for tablets */
        padding: 10px 15px;
        width: auto; /* Auto width for buttons on larger screens */
    }
    
    .buttonWrapper {
        display: flex;
        justify-content: center; /* Align buttons horizontally */
    }

    .vutepay-title {
        font-size: 2.5rem;
      }
    
      .vutepay-description, 
      .vutepay-list li {
        font-size: 1.1rem;
      }
    
      .vutepay-btn {
        font-size: 1.1rem;
        padding: 8px 16px;
      }

      .pos-title {
        text-align: center;
    }

    .pos-description {
        text-align: center;
    }

    .pos-btn {
        display: block;
        margin: 0 auto;
    }

    .pos-image {
        margin-bottom: 20px;
    }

    .savings-title {
        text-align: center;
    }

    .savings-list li {
        font-size: 1.1rem;
    }

    .savings-btn {
        display: block;
        margin: 0 auto;
    }

    .savings-image {
        margin-top: 20px;
    }
    .loan-title {
        font-size: 2rem;
    }

    .loan-description {
        font-size: 1.1rem;
    }

    .loan-list li {
        font-size: 1.1rem;
    }

    .loan-btn {
        display: block;
        margin: 0 auto;
        padding: 10px 20px;
    }
}



@media (max-width: 576px) {
    h1 {
        font-size: 2rem; /* 32px */
    }

    h2 {
        font-size: 1.75rem; /* 28px */
    }

    h3, h4 {
        font-size: 1.5rem; /* 24px */
    }

    h5 {
        font-size: 1.125rem; /* 18px */
    }

    h6 {
        font-size: 1rem; /* 16px */
    }

    p, span, a {
        font-size: 1rem; /* 16px */
    }
    .digital-services-section .section-title::before,
    .digital-services-section .section-title::after {
        width: 30px;
        left: -40px;
        right: -40px;
    }

    .cta-section .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-section .btn {
        width: 100%;
    }


    .career-section .career-positions {
        flex-direction: column;
        gap: 15px;
    }

    .career-section .position-btn {
        width: 100%;
        text-align: center;
    }



    .account-section .account-title {
        font-size: 20px;
    }
    .account-section .account-subtitle {
        font-size: 16px;
    }
    .account-section .get-started-btn {
        font-size: 14px;
        padding: 10px;
    }
    .account-section .account-description {
        font-size: 14px;
    }






    /* ........about us........ */
    .about-section {
        text-align: center;
    }
    .about-image {
        margin-top: 20px;
        text-align: center;
    }
    .value-box {
        margin-bottom: 20px;
    }

    .value-item {
        padding: 10px;
    }



    /* product and service */
    .vutepay-title {
        font-size: 2rem;
      }
    
      .vutepay-description, 
      .vutepay-list li {
        font-size: 1rem;
      }
      .vutepay-btn {
        font-size: 1rem;
        padding: 6px 12px;
      }
}

