@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

/* ====================
  Reset Default CSS Start
  ==================== */
:root {
  --primary-font: "Noto Sans Bengali", sans-serif;
  --secondary-font: "Outfit", sans-serif;
  --primary-color: #bf390b;
  --secondary-color: #111111;
  --gardiant: linear-gradient(
    180deg,
    rgba(170, 170, 170, 0.1) 0%,
    #cfcfcf 100%
  );
  --accent-1: #595959;
  --accent-2: #a0a0a0;
  --accent-3: #cdcdcd;
  --accent-4: #ffddd1;
  --accent-5: #ebebeb;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--primary-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

a {
  text-decoration: none !important;
}

ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

button {
  border: none;
  outline: none;
}

input {
  outline: none;
}

body {
  background: var(--white);
}

/*====================
  Reset Default CSS End
  ====================*/

/* our Target */

.target {
  margin-top: 70px;
}

.target .target_wrapper {
  margin: 0 60px;
}

.target svg {
  width: 70px;
  height: 70px;
}

.target .icon {
  margin-bottom: 30px;
}

.target .mission,
.target .vission {
  border: 1px solid var(--accent-2);
  padding: 30px 10px;
  border-radius: 16px;
  text-align: center;
}

.target .mission h2,
.target .vission h2 {
  font-size: 28px;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.target .mission p,
.target .vission p {
  font-size: 16px;
  color: var(--accent-1);
  margin-bottom: 0;
}

@media screen and (max-width: 992px) {
  .target .vission {
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .target .target_wrapper {
    margin: 0px 0px;
  }

  .target .icon {
    margin-bottom: 10px;
  }
  .target .icon svg {
    width: 56px;
    height: 56px;
  }
}

/* our Target */

/* How we Work Start */
.how_we_work {
  margin-top: 70px;
}

.we_work_wrapper {
  margin: 0px 60px;
}

.how_we_work .section_title {
  text-align: center;
  font-size: 48px;
  color: var(--secondary-color);
  font-weight: bold;
  margin-bottom: 20px;
}

.how_we_work .section_subtitle {
  max-width: 48%;
  text-align: center;
  font-size: 16px;
  margin: auto auto 60px auto;
  color: var(--accent-1);
}

.how_we_work .row {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.how_we_work .col-12 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.how_we_work .content_box {
  max-width: 45%;
}

.how_we_work .content_title {
  font-size: 28px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.how_we_work .content_text {
  font-size: 16px;
  color: var(--accent-1);
  line-height: 1.6;
  margin-bottom: 0;
}

.how_we_work .content_img {
  max-width: 45%;
  aspect-ratio: 16 / 12;
  border-radius: 16px;
  object-fit: cover;
  background-size: cover;
  overflow: hidden;
}

.how_we_work .content_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  transition: 0.4s;
}

.how_we_work .content_img:hover img {
  transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .how_we_work .section_subtitle {
    max-width: 100%;
  }

  .how_we_work .section_title {
    font-size: 34px;
  }

  .how_we_work .row {
    gap: 40px;
  }

  .how_we_work .col-12 {
    display: block;
    gap: 0px !important;
    flex-direction: column;
  }

  .how_we_work .content_img {
    order: 1;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .how_we_work .content_box {
    order: 2;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .we_work_wrapper {
    margin: 0px 0px;
  }
}

/* How we Work End */

/* Newslatter Start  */

#newslatter {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -120px;
}

#newslatter .newslatter_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

#newslatter .newslatter_wrapper .content {
  position: relative;
  display: inline-block;
  padding: 80px 180px;
  text-align: center;
  border-radius: 24px;
  background: var(--accent-4);
}

#newslatter .content svg {
  width: 150px;
  height: 150px;
}

#newslatter .content .shape1 {
  position: absolute;
  left: 10px;
  top: -10px;
}

#newslatter .content .shape2 {
  position: absolute;
  right: 10px;
  bottom: -10px;
}

#newslatter .content h1 {
  font-size: 48px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 40px;
}

#newslatter .content .contact_btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 12px;
}

#newslatter .content .contact_btn:hover {
  background: var(--secondary-color);
}

@media screen and (max-width: 992px) {
  #newslatter .newslatter_wrapper .content {
    padding: 60px 100px;
  }

  #newslatter .content h1 {
    font-size: 34px;
  }

  #newslatter .content svg {
    width: 120px;
    height: 120px;
  }
}

@media screen and (max-width: 768px) {
  #newslatter .newslatter_wrapper .content {
    padding: 60px 20px !important;
  }

  #newslatter .content h1 {
    font-size: 34px;
    margin-bottom: 10px;
  }

  #newslatter .content svg {
    width: 80px;
    height: 80px;
  }
}

/* Newslatter End  */
