@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Trykker&display=swap");
:root {
  --primary-dark: #87e55e;
  --primary-light: #2d5a87;
  --accent-blue: #00087f;
  --text-dark: #2d3748;
  --text-light: #718096;
  --bg-light: #f6fff2;
  --white: #ffffff;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Trykker", serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/*====== button css======= */
.btn {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 15px;
  text-transform: uppercase;
  border-radius: 5px;
  min-width: 140px;
  line-height: 18px;
  box-shadow: none;
  transition: all 0.2s ease-in;
}
.btn-default,
.btn-default:focus {
  background: var(--primary-dark);
  color: var(--accent-blue);
  border-color: var(--primary-dark);
}

.btn-default:hover,
.btn-default:active,
.btn-default:focus {
  background: #aded91;
  color: var(--accent-blue);
  border-color: #8ce665;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: var(--accent-blue);
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  color: var(--primary-dark);
}
.sec-py {
  padding-block: 60px;
}
.bg-light {
  background-color: var(--bg-light) !important;
}
/* ======header======= */
header {
  background-color: var(--bg-light);
}
.navbar-brand img {
  width: 130px;
  height: 130px;
}
.navbar-nav li a {
  position: relative;
  padding-inline: 24px !important;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
font-family: 'Poppins';
  color: var(--accent-blue);
  text-decoration: none;
}
.navbar-nav li:not(:last-child) a:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-dark);
    border-radius: 10px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-nav li:not(:last-child) a:hover:before {
    width: 100%;
}

.navbar-nav li {
  position: relative;
}

/* Sub-menu base style */
.navbar-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #86e55e;
    list-style: none;
    padding: 20px;
    margin: 0;
    display: none;
    z-index: 99;
    padding-top: 10px;
}
.navbar-nav ul.sub-menu li a {
    font-size: 16px;
    white-space: nowrap;
    margin-top: 10px;
    display: block;
    padding: 0 !important;
}
/* Show submenu on hover */
.navbar-nav li:hover > .sub-menu {
    display: block;
}

/* Submenu item styling */
.navbar-nav .sub-menu li {
    position: relative;
}

/* Sub-submenu (nested submenu) */
.navbar-nav .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-left: 0px;
}

/* Optional: Add arrow for items with children */
.navbar-nav li.menu-item-has-children > a::after {
    content: " ▼";
    font-size: 10px;
    margin-left: 5px;
}

/* Optional: Arrow for right side submenu */
.navbar-nav .sub-menu li.menu-item-has-children > a::after {
    content: " ▶";
    float: right;
    font-size: 10px;
    transform: translate(10px, 5px);
}

/* =====Main section===== */
.hero-section {
  position: relative;
  width: 100%;
}
.hero-section::before {
  position: absolute;
  content: "";
  width: 40%;
  height: 100%;
  background:#003840;
  right: 0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.hero-wrapper {
  position: relative;
}

.hero-content {
  padding-block: 100px 140px;
  height: 100%;
  display: flex;
  flex-flow: column;
  align-items: start;
  justify-content: center;
}
.hero-image {
  position: relative;
  justify-content: end;
  padding-top: 40px;
  height: 100%;
  display: flex;
  align-items: end;
}
.hero-image:before {
  display: none;
  position: absolute;
  content: "";
  width: 100%;
  height: 74px;
  background-color: var(--primary-dark);
}
.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-image img {
  position: static;
  right: 0;
  bottom: 0;
  max-width: 100%;
  max-height: 600px;
}
/* =======about us section======== */
.hero-image-container img {
  width: 100%;
  border-radius: 12px;
}
.content-wrapper {
  position: relative;
  z-index: 9;
}
.content-wrapper h2 {
  font-size: 40px;
  font-weight: 700;
}
/* ============our sevices section========== */

.services__card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  flex: 1 1 calc(33.333% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}
.services__content h4 {
  font-size: 26px;
  font-weight: 700;
}
.services__card:hover {
  transform: translateY(-5px);
}

.services__icon i {
  font-size: 60px;
  margin-bottom: 30px;
  color: var(--primary-dark);
}
.our-service-slider .slick-track {
  display: flex;
  padding-block: 20px;
  gap: 1rem;
}
.our-service-slider li {
  height: auto;
}
/* =======Our Partner section========= */
.our-partner-sec {
  overflow: hidden;
}
.slider-style {
  padding: 0;
  margin: 0;
}
.slider-style li {
  box-shadow: 0 0 10px 3px rgba(114, 255, 121, 0.493);
  border-radius: 22px;
  overflow: hidden;
}
.slider-style .slick-track {
  display: flex;
  padding-block: 20px;
  gap: 1rem;
}
.slider-style li img {
  width: 100%;
  border-radius: 22px;
}

/* =======Our Partner section========= */
/* =========Our client slider======== */

/* =========Our client slider======== */
/* ======statics section======== */

.statics-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.statics-container .static-item:first-child {
  margin-left: 0;
}

.statics-container .static-item {
  border: 1px solid #87e55e47;
  padding: clamp(20px, 4.73vw, 90px) 15px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-left: clamp(-58px, -3.05vw, -28px);
  background: no-repeat center center;
  background-size: cover;
  transition: 0.4s ease;
  flex-shrink: 0;
  width: 25%;
  position: relative;
  z-index: 1;
}
.statics-container .static-item::before {
  position: absolute;
  content: "";
  inset: 0;
  background: var(--bg-image);
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: 0.3s ease;
  z-index: -2;
  border-radius: 50%;
}
.statics-container .static-item:after {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgba(135, 229, 94, 0.7);
  mix-blend-mode: multiply;
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease;
  border-radius: 50%;
}
.statics-container .static-item:hover::after,
.statics-container .static-item:hover::before {
  opacity: 1;
}

.static-item .icon {
  font-size: 50px;
  color: var(--primary-dark);
}
.static-item .number {
  font-size: 40px;
  color: var(--accent-blue);
  font-weight: 700;
}
.static-item .text {
  font-weight: 600;
  font-size: 22px;
}
.statics-container .static-item:hover .icon,
.statics-container .static-item:hover .number,
.statics-container .static-item:hover .text {
  color: #fff;
}
/* ======statics section======== */
/* ========testimonial slider======== */
.testimonial {
  position: relative;
  background: linear-gradient(
    90deg,
    rgba(247, 247, 253, 0.5) 0%,
    #f7f7fd 50.17%,
    rgba(247, 247, 253, 0.5) 100%
  );
  z-index: 9;
}
.testimonial-slide {
  padding: 40px 20px;
}

.testimonial_box-top {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  box-shadow: 5px 5px 20px rgba(114, 255, 121, 0.493);
}

.testimonial_box-icon {
  padding: 10px 0;
}

.testimonial_box-icon i {
  font-size: 25px;
  color: #14213d;
}

.testimonial_box-text {
  padding: 10px 0;
}

.testimonial_box-text p {
  color: #293241;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
}

.testimonial_box-img {
  padding: 20px 0 10px;
  display: flex;
  justify-content: center;
}

.testimonial_box-img img {
  width: 70px;
  height: 70px;
  border-radius: 50px;
  border: 2px solid #e5e5e5;
}

.testimonial_box-name {
  padding-top: 10px;
}

.testimonial_box-name h4 {
  font-size: 20px;
  line-height: 25px;
  color: #293241;
  margin-bottom: 10px;
}

.testimonial_box-job p {
  color: #293241;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 20px;
  font-weight: 300;
  margin-bottom: 0;
}
.testimonial-vectors {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  position: absolute;
  bottom: 0;
  padding-inline: 30px;
  width: 100%;
}
img.testimonial-vector-1 {
  height: 350px;
  object-fit: contain;
  object-position: bottom;
}
img.testimonial-vector-2 {
  height: 300px;
  object-fit: contain;
  object-position: bottom;
}
/* ===========contact us============ */
.conatct-form.home-conatct-form.content-wrapper {
    box-shadow: 0 0 14px 0px rgba(0, 0, 0, 0.2);
    padding: 40px 40px 0px;
    border-radius: 22px;
}
section.contact-sec .text-center img {
  max-width: 100%;
}
.cst-form-wrapper {
    position: relative;
    background-color: var(--white);
    border-radius: 50px 0px 0px 50px;
    padding: 60px 80px;
}
.conatct-form.cst-ct-form.cst-text-from{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  width: 50%;
}
.cst-form-wrapper:before {
    position: absolute;
    content: "";
    width: 120px;
    height: 100%;
    right: 0;
    bottom: 0;
    background-color: var(--primary-dark);
}
.contact-us-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 400px;
    background-color: var(--accent-blue);
    padding: 30px 0px 30px 30px;
    border-radius: 30px 0px 0px 30px;
}
form {
  position: relative;
  z-index: 9;
}
.conatct-form form p > br {
  display: none;
}
.conatct-form label {
    display: block;
    width: 100%;
}
.conatct-form input, .conatct-form textarea {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 4px 8px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}
.conatct-form textarea {
 height: 100px;
}

.conatct-form form .cst-btn {
  background: var(--primary-dark);
    color: var(--accent-blue);
    border-color: var(--primary-dark);
   font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 15px;
    text-transform: uppercase;
    border-radius: 5px;
    min-width: 140px;
    width: auto;
    line-height: 18px;
    box-shadow: none;
    transition: all 0.2s ease-in;
}
/* ==========contact banner========== */
.contact-banner {
  position: relative;
  background-image: url(../images/call-services.jpg);
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.contact-banner::before {
  position: absolute;
  content: "";
  inset: 0;
  background-image: linear-gradient(45deg, #87e55e94, #00087fe3);
  z-index: 0;
}
.contact-banner .content-wrapper h2 {
  color: #fff;
}
.contact-banner .content-wrapper p {
  color: #fff;
}
.contact-banner .btn-groups {
  position: relative;
  z-index: 1;
}
/* ==========contact banner========== */
/* ======conatct page======== */
.contact-form-sec {
  position: relative;
  background-image: url(../images/contact-section-banner.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-form-sec::before {
    position: absolute;
    content: "";
    inset: 0;
   background: linear-gradient(to bottom, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0.15) 100%), radial-gradient(at top center, rgba(255,255,255,0.40) 0%, rgba(0,0,0,0.40) 120%) rgba(0, 0, 0, 0.6);
 background-blend-mode: multiply,multiply;
}
.contact-form-sec .content-wrapper h2,
.contact-form-sec .content-wrapper p,
.contact-form-sec .contact-us-content p {
  color: #fff
}
 .contact-us-content p {
    margin-bottom: 0;
}
.contact-us-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}
.contact-us-list {
    padding: 0;
    margin: 0;
}
ul.contact-us-list li + li {
  margin-top: 10px;
}
ul.contact-us-list li {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1.5rem;
}
ul.contact-us-list li .icon i {
    font-size: 24px;
    color: var(--primary-dark);
}
ul.contact-us-list li h6 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0;
}
.cst-text-from h2 {
  font-size: 38px;
  font-weight: 700;
}
/* ======conatct page======== */
/* ========================================= */
/* ================About us================ */
/* ========================================= */
/* =============our founder=============== */
.about-image-container img {
  width: 100%;
  border-radius: 14px;
}
.founder-list {
  margin-block: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.founder-list li {
  width: calc(50% - 10px);
  position: relative;
  padding-left: 20px;
  list-style: none;
}

.founder-list li::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-dark);
}
.founder-signature img {
  width: 120px;
  margin-bottom: 16px;
}
.founder-info h6 {
  font-weight: 600;
  margin-bottom: 4px;
}
/* =============our founder=============== */
/* ===========Our Experties========== */

.our-experties-image img {
  width: 100%;
}
.progress-container {
  margin-block: 30px;
}
.progress-container .progres + .progres {
  margin-top: 14px;
}
.progress-bar {
  width: 100%;
  height: 18px;
  border: 1px solid var(--primary-dark);
}
.progres span {
  color: var(--accent-blue);
  font-size: 18px;
  font-weight: 800;
}
.current-progress {
  background-color: var(--primary-dark);
  display: block;
  height: 100%;
}
/* ===========Our Experties========== */
/* =======Our team========= */
.our-team-slider {
  padding: 0;
  margin: 0;
  list-style: none;
}
.our-team-slider li {
  margin-inline: 20px;
}
.our-team-slider li .team-member {
  background-color: var(--primary-dark);
  border-bottom: 10px solid var(--accent-blue);
}
.team-member img {
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
  object-position: top;
}
.team-member-info {
  padding: 16px 14px;
}
.team-member-info h6 {
  font-size: 22px;
}
.team-member-info p {
  font-size: 18px;
  margin-bottom: 0;
}
/* =======Our team========= */
/* ========================================= */
/* ================About us================ */
/* ========================================= */
/* ========================================= */
/* ================Services us================ */
/* ========================================= */
/* ========our services======= */
.our-services .content-wrapper {
  margin-bottom: 30px;
}
.service-card {
  position: relative;
  padding: 100px 50px 50px;
  border: 1px solid var(--primary-dark);
  background-color: var(--bg-light);
}
.service-card span {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--accent-blue);
  width: 120px;
  height: 110px;
  padding: 13px;
  color: #fff;
  font-weight: 800;
  font-size: 32px;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.service-card h6 {
  font-size: 24px;
  font-weight: 700;
}
.our-service-blck-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
}
.our-service-blck-image img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 8/5;
}
.our-service-blck-image::after {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.overlay-text {
  position: absolute;
  inset: 0;
  padding: 50px;
  width: 50%;
  z-index: 9;
}

.overlay-text h2 {
  font-size: 48px;
  font-weight: 800;
}
.overlay-text span {
  color: #fff;
}
.overlay-text p {
  font-size: 18px;
  color: #fff;
}
.our-services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 0;
}
.service-contents h2 {
    font-size: 24px;
    font-weight: 500;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 5px;
    display: inline-block;
    margin-bottom: 24px;
}
.our-services-list li {
  position: relative;
  list-style: none;
  padding-left: 30px;
}
.our-services-list li::before {
  position: absolute;
  content: "\f00c"; /* check icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: white;
  background-color: #28a745; /* Green background */
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  border-radius: 50%; /* Makes it a circle */
}
/* =========our working process======== */
.working-steps span {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-dark);
  position: relative;
  margin-bottom: 20px;
}

.working-steps span:after {
  position: absolute;
  content: "";
  width: calc(100% - 51px);
  height: 1px;
  background-color: var(--primary-dark);
  top: 50%;
  left: 34px;
}
.working-steps h4 {
  font-size: 22px;
  font-weight: 700;
}
/* =========our working process======== */
/* ========our services======= */
/* ========================================= */
/* ================Services us================ */
/* ========================================= */
/* ========================================= */
/* ================Case Studies================ */
/* ========================================= */
.image-wrapper img {
  width: 100%;
}
/* ========================================= */
/* ================Case Studies================ */
/* ========================================= */
/* =========sector section======== */
.sector-slider {
  margin-top: 30px;
}
.sector-slider li {
  padding: 10px;
  text-align: center;
}
.sector-slider li img {
  width: 280px;
  aspect-ratio: 16/9;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 13px #87e55e);
  padding: 30px;
}
.sector-slider li h6 {
  font-size: 22px;
  font-weight: 800;
}
/* =========sector section======== */
/* =========footer section========= */
footer {
  padding-block: 60px;
  background-color: var(--accent-blue);
}
.single-footer img {
    width: 50%;
    border: 1px solid var(--primary-dark);
    background-color: #f6fff2;
    border-radius: 8px;
}


.single-footer h4 {
  font-size: 22px;
  color: #fff;
  font-weight: 700;
}
.single-footer ul {
  padding: 0;
  list-style: none;
}
.single-footer ul li a {
  font-family: 'Poppins';
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.single-footer ul li a:hover {
  color: var(--primary-dark);
}
.single-footer .social-link {
  display: flex;
  justify-content: start;
  gap: 20px;
}
.single-footer .social-link li i {
  font-size: 26px;
}

.single-footer .social-link {
  display: flex;
  justify-content: start;
  gap: 10px;
}

.single-footer ul li {
  color: #fff;
}

.single-footer ul li > i {
  margin-right: 10px;
  font-size: 22px;
  color: var(--primary-dark);
}

.single-footer ul li:not(:last-child) {
  margin-bottom: 10px;
}
/* ==========================================
! Large devices (desktops, less than 1200px)
=========================================== */
@media (max-width: 1199.98px) {
  .navbar-nav li a {
    font-size: 14px;
    padding-inline: 16px !important;
  }
  .hero-section::before {
    width: 100%;
  }
  /* =======service page========== */
  .our-service-blck-image img {
    height: 350px;
  }
  .overlay-text {
    width: 100%;
  }
  .overlay-text h2 {
    font-size: 34px;
  }
  .overlay-text p {
    font-size: 16px;
    color: #fff;
  }
}
@media (max-width: 991.98px) {
  header {
    margin-bottom: 20px;
}
.navbar-nav li {
    position: relative;
    margin-bottom: 16px;
    display: block;
    width: 100%;
}
  .navbar-nav .sub-menu {
    position: revert;
}
}
/*==========================================
! Medium devices (tablets, less than 992px)
========================================== */
@media (max-width: 991.98px) {
  .hero-section::before {
    display: none;
    width: 100%;
    height: calc(50% + 12px);
  }
  .hero-image:before {
    display: block;
    position: absolute;
    content: "";
    width: 100%;
    height: 74px;
    background-color: var(--primary-dark);
  }
  .hero-image {
    justify-content: center;
  }
  .hero-content {
    padding-block: 60px;
  }
  /* ======statics section====== */
  .statics-container {
    flex-wrap: wrap;
    gap: 20px;
  }
  .statics-container .static-item {
    width: calc(50% - 10px);
    margin-left: 0;
  }
  .static-item .icon {
    font-size: 38px;
  }
  .static-item .number {
    font-size: 30px;
  }
  .static-item .text {
    font-size: 18px;
  }
  /* =======service page========== */
  .our-service-blck-image img {
    height: 350px;
  }
  .overlay-text {
    width: 100%;
  }
  .overlay-text h2 {
    font-size: 34px;
  }
  .overlay-text p {
    font-size: 16px;
    color: #fff;
  }
  /* ========contact us====== */
  .contact-us-content {
    width: 300px;
}
}
/* =================================================
 ! Small devices (landscape phones, less than 768px)
 ================================================= */
@media (max-width: 767.98px) {
  .content-wrapper h2 {
    font-size: 34px;
    font-weight: 700;
  }

  /* ======hero section===== */

  .hero-section::before {
    width: 100%;
    height: 50%;
    top: calc(0px + 54px);
  }
  .hero-content {
    padding-block: 40px;
  }
  .hero-image {
    justify-content: center;
  }
  /* ======statics section====== */
  .statics-container {
    flex-wrap: wrap;
    gap: 20px;
  }
  .statics-container .static-item {
    width: calc(50% - 10px);
    margin-left: 0;
  }
  .static-item .icon {
    font-size: 38px;
  }
  .static-item .number {
    font-size: 30px;
  }
  .static-item .text {
    font-size: 18px;
  }
  /* =======service page========== */
  .our-service-blck-image img {
    height: 350px;
  }
  .overlay-text {
    width: 100%;
  }
  .overlay-text h2 {
    font-size: 34px;
  }
  .overlay-text p {
    font-size: 16px;
    color: #fff;
  }
  /* =========contact us======== */
  .cst-form-wrapper {
    position: relative;
    background-color: var(--white);
    border-radius: 50px 0px 0px 50px;
    padding: 40px 40px 230px;
}
  .conatct-form {
    width: 100%;
}
 .contact-us-content {
        top: revert;
        bottom: 0;
        left: 0;
        right: 0;
        transform: translateY(0px);
        width: 100%;
        background-color: var(--accent-blue);
        border-radius: 40px 40px 0px 0px;
    }
}
/* ======================================================
 ! Extra small devices (portrait phones, less than 576px)
 ====================================================== */
@media (max-width: 575.98px) {
  /* ======common css===== */
  .sec-py {
    padding-block: 30px;
  }
  .hero-content h1 {
    font-size: 34px;
  }
  .content-wrapper h2 {
    font-size: 32px;
  }
  /* ======common css===== */
  /* ======hero section===== */

  .hero-section::before {
    width: 100%;
    height: 50%;
    top: calc(0px + 54px);
  }
  .hero-content {
    padding-block: 40px;
  }
  .hero-image {
    justify-content: center;
  }

  /* =====testimonial======== */
  img.testimonial-vector-2 {
    display: none;
  }
  /* ======statics sec========= */
  .statics-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .statics-container .static-item {
    width: 100%;
    margin-left: 0;
  }
  .static-item .number {
    font-size: 28px;
  }
  .static-item .text {
    font-size: 18px;
  }
  /* ========contact us========== */
  .contact-sec .text-end img {
    width: 100%;
  }

  .cst-form-wrapper {
    padding: 30px 30px 270px;
}
.cst-form-wrapper:before {
    width: 60px;
}
  /* =======service page========== */
  .our-service-blck-image img {
    height: 300px;
  }
  .overlay-text {
    width: 100%;
  }
  .overlay-text h2 {
    font-size: 24px;
  }
  .overlay-text p {
    font-size: 16px;
    color: #fff;
  }
  /* =======service page========== */

  /* =======Loans we provide======== */
  .our-services-list {
    grid-template-columns: 1fr;
    gap: .8rem;
  }
}
