/*Root*/
:root {
  /*Colors*/
  --primary-color: #26bb74;
  --secondary-color: black;
  --light-gray: #dfe1e7;
  --dark-gray: #6c757d;
  --primary-color: #26bb74;
  --secondary-color: black;
  --light-gray: #dfe1e7;
  --dark-gray: #6c757d;

  /*Font Families*/
  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-text: "Inter", sans-serif;

  /*Font Sizes*/
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-md: 18px;
  --font-size-lg: 20px;
  --font-size-xl: 22px;
  --font-size-2xl: 25px;
  --font-size-3xl: 32px;
  --font-size-4xl: 34px;
  --font-size-5xl: 40px;
  --font-size-6xl: 50px;
}

/* Reset CSS Start */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
}
/* Reset CSS End */

/* pelin / JA-03 - Navbar Section - Start */
header {
  font-family: var(--font-text);
  background-color: var(--secondary-color);
  color: #ffffff;
  width: 100%;
  height: 80px;
}
header .navbar {
  width: 100%;
  max-width: 90em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4em;
  padding-block: 1.25em;
  padding-inline: 1.875em;
  margin: 0 auto;
}
header .navbar .nav-branding {
  color: var(--primary-color);
  font-size: 1.75em;
  font-weight: 800;
  cursor: pointer;
}
header .navbar .nav-menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6.25em;
}
header .navbar .nav-menu .nav-item {
  display: flex;
  align-items: center;
  gap: 3.75em;
}
header .navbar .nav-menu .nav-link {
  position: relative;
  color: #ffffff;
  font-weight: 500;
  cursor: pointer;
  padding-bottom: 5px;
  transition: color 0.3s ease;
  font-size: 1em;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background-color: var(--primary-color);
  animation: underline 0.3s ease;
}
@keyframes underline {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

header .navbar .nav-btn {
  width: 9em;
  height: 3em;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 10px;
  font-weight: 500px;
  font-size: 1em;
}
header .navbar .nav-btn:hover {
  color: var(--primary-color);
  background-color: #ffffff;
  scale: 1.02;
}
.hamburger-menu {
  display: none;
  cursor: pointer;
}
.hamburger-menu .bar {
  display: block;
  width: 25px;
  height: 3px;
  border-radius: 3px;
  margin: 5px auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background-color: var(--primary-color);
}
@media screen and (max-width: 900px) {
  .navbar {
    font-size: var(--font-size-sm);
  }
}
@media screen and (max-width: 768px) {
  .hamburger-menu {
    display: block;
  }
  .hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
    position: fixed;
    left: 100%;
    top: 80px;
    gap: 20px !important;
    flex-direction: column;
    background-color: var(--secondary-color);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding-block-end: 20px;
  }
  .nav-menu .nav-item {
    flex-direction: column;
  }
  .nav-menu.active {
    left: 0;
  }
}
/* pelin / JA-03 - Navbar Section - End */

/* Nehir / JA-01 - Hero Section Start */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  color: white;
  width: 100%;
  height: auto;
  gap: 60px;
  padding: 40px 93px;
}
.hero-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1180px;
  height: auto;
  gap: 50px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}
.hero-start-free-btn {
  font-family: var(--font-text);
  font-size: var(--font-size-base);
  font-weight: 400;
  width: 178px;
  height: 39px;
  border-radius: 30px;
  color: var(--secondary-color);
  background-color: white;
  transition: background 0.3s, color 0.3s;
}
.hero-start-free-btn:hover {
  color: white;
  background-color: var(--primary-color);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-6xl);
  font-weight: 700;
}
.hero-description {
  font-family: var(--font-text);
  font-size: var(--font-size-lg);
  font-weight: 400;
  color: #c0c0c0;
}
.hero-input-section {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  gap: 12px;
}
.hero-input {
  width: 100%;
  max-width: 363px;
  height: 50px;
  font-family: var(--font-text);
  font-size: var(--font-size-base);
  color: var(--dark-gray);
  border-radius: 8px;
  padding-left: 20px;
  border: 1px solid white;
}
.hero-input-btn {
  width: 100%;
  max-width: 134px;
  height: 50px;
  font-family: var(--font-text);
  font-size: var(--font-size-base);
  font-weight: 600;
  background-color: var(--primary-color);
  color: white;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s;
}
.hero-input-btn:hover {
  color: var(--primary-color);
  background-color: white;
}
.hero-img-container {
  display: flex;
  align-items: flex-start;
}
.hero-img-container img {
  border-radius: 8px;
  width: clamp(350px, 100vw, 1180px);
  height: auto;
  object-fit: cover;
}

@media screen and (max-width: 1180px) {
  .hero-section {
    gap: 50px;
  }
  .hero-input-section {
    flex-direction: column;
  }
  .hero-input {
    max-width: none;
  }
  .hero-input-btn {
    max-width: none;
    text-align: center;
  }
  .hero-img-container img {
    padding-left: 24px;
    padding-right: 24px;
    height: clamp(auto, 100vh, 607px);
  }
}
@media (max-width: 992px) {
  .hero-section {
    padding: 50px;
  }
  .hero-title {
    font-size: var(--font-size-4xl);
  }
  .hero-description {
    font-size: var(--font-size-lg);
  }
  .hero-input {
    padding-left: 15px;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 24px;
  }
  .hero-title {
    font-size: var(--font-size-2xl);
  }
  .hero-description {
    font-size: var(--font-size-sm);
  }
  .hero-input {
    padding-left: 10px;
  }
}
/* Nehir / JA-01 - Hero Section End */

/*Pelin / JA-05 Services Section Start*/
.services-section {
  width: 100%;
  max-width: 90em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 auto;
  gap: 2em;
  padding-inline: 1.6em;
  margin-block: 3.2em;
}
.srv-sec-subtitle {
  font-family: var(--font-text);
  font-size: var(--font-size-md);
  font-weight: 500;
  color: var(--primary-color);
}
.srv-sec-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 600;
  color: var(--secondary-color);
}
.srv-sec-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25em;
}
.srv-sec-card {
  height: 300px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
  background-color: var(--light-gray);
  padding-inline: 1.6em;
  padding-block: 1.25em;
  margin: auto;
}
.srv-sec-icon {
  width: 60px;
  height: 60px;
  border-radius: 5em;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.srv-sec-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--font-size-xl);
  color: var(--secondary-color);
}
.srv-sec-card-description {
  font-family: var(--font-text);
  font-weight: 400;
  color: var(--dark-gray);
}

@media screen and (max-width: 1024px) {
  .srv-sec-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .srv-sec-card {
    height: 280px;
  }
}

@media screen and (max-width: 768px) {
  .srv-sec-cards-container {
    font-size: var(--font-size-sm);
  }
  .srv-sec-card-title {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 600px) {
  .srv-sec-cards-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .srv-sec-icon {
    width: 50px;
    height: 50px;
  }
  .srv-sec-card {
    height: 200px;
  }
  .srv-sec-card-title {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 500px) {
  .srv-sec-title {
    font-size: var(--font-size-2xl);
  }
  .srv-sec-card-title {
    font-size: var(--font-size-md);
  }
  .srv-sec-card {
    height: 230px;
  }
}
@media screen and (max-width: 420px) {
  .srv-sec-card {
    height: 250px;
  }
}
@media screen and (max-width: 370px) {
  .srv-sec-card {
    height: 275px;
  }
}

/*Pelin / JA-05 Services Section End*/

/* Nehir / JA-13 - Why Us Section Start */
.why-us-section {
  gap: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.why-us-container {
  max-width: 1025px;
  height: 278px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 40px;
}
.why-us-content {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 21px;
}
.why-us-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.why-us-heading p {
  color: var(--primary-color);
  font-family: var(--font-text);
  font-size: var(--font-size-md);
  font-weight: 500;
  line-height: 21.78px;
}
.why-us-heading h3 {
  color: black;
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 600;
  line-height: 40.32px;
}
.why-us-description {
  font-family: var(--font-text);
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: 30px;
  color: var(--dark-gray);
}
.why-us-numbers {
  max-width: 1025px;
  height: 73px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 160px;
}
.number-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.counter {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: 700;
  line-height: 42.84px;
}
.number-box p {
  color: var(--dark-gray);
  font-family: var(--font-text);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 21.78px;
}
@media (max-width: 1025px) {
  .why-us-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .why-us-container {
    padding-left: 30px;
    padding-right: 30px;
    height: auto;
  }
  .why-us-numbers {
    height: auto;
  }
}
@media (max-width: 768px) {
  .why-us-container {
    padding-left: 30px;
    padding-right: 30px;
  }
  .why-us-heading h3 {
    font-size: 30px;
  }
  .why-us-numbers {
    gap: 50px;
  }
  .counter {
    font-size: 32px;
  }
}

@media (max-width: 500px) {
  .why-us-numbers {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  .number-box {
    width: 45%;
  }
}

@media (max-width: 420px) {
  .why-us-container {
    padding: 30px 30px;
    gap: 30px;
  }
  .why-us-numbers {
    gap: 30px;
  }
  .number-box {
    gap: 3px;
  }
}
@media (max-width: 370px) {
  .why-us-container {
    padding: 30px 30px;
  }
  .why-us-heading h3 {
    font-size: 26px;
  }
  .why-us-numbers {
    gap: 20px;
  }
  .number-box p {
    font-size: 15px;
  }
  .counter {
    font-size: 26px;
  }
}
/* Nehir / JA-13 - Why Us Section End */

/* Nehir / [JA-14] - Features Section Start */
.features-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 36px;
}
.features-container {
  max-width: 1181px;
  width: 100%;
}
.features-text {
  text-align: left;
  margin-bottom: 2rem;
}
.features-title {
  font-family: var(--font-text);
  font-size: var(--font-size-md);
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.features-heading {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 600;
  margin-bottom: 1rem;
}
.features-description {
  font-family: var(--font-text);
  font-size: var(--font-size-md);
  font-weight: 400;
  color: var(--dark-gray);
}
.features-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
.features-image {
  flex: 1 1 50%;
  max-width: 550px;
  display: flex;
  justify-content: center;
  border: none;
}
.features-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/*JavaScriptten gelenler*/
.features-list {
  flex: 1 1 50%;
}
.features-list ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
}
.feature-icon {
  max-width: 60px;
  max-height: 60px;
}
.feature-text {
  display: flex;
  flex-direction: column;
}
.feature-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 1rem;
}
.feature-description {
  font-family: var(--font-text);
  font-size: var(--font-size-base);
  font-weight: 400;
  color: var(--dark-gray);
}

/*Resposive Designs*/
@media (max-width: 1024px) {
  .features-content {
    flex-direction: column-reverse;
  }
  .features-image {
    max-width: unset;
    max-height: clamp(345px, 60vw, 556px);
  }
  .features-list {
    width: 100%;
  }
}

@media (max-width: 468px) {
  .feature-item {
    display: flex;
    gap: 20px;
    flex-direction: column;
    margin-bottom: 10px;
    justify-content: center;
  }
  .feature-title {
    text-align: center;
  }
  .feature-description {
    text-align: center;
  }
}
/* Nehir / [JA-14] - Features Section End */

/* Nehir / [JA-16] - More Features Section Start */
.more-features-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 36px;
}
.more-features-container {
  max-width: 1181px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
}
.more-features-container .image-container {
  flex: 1 1 50%;
  max-width: 554px;
  display: flex;
  justify-content: center;
  border: none;
}
.more-features-container .image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}
.more-features-content {
  max-width: 553px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  gap: 46px;
}
.more-features-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  gap: 20px;
}
.more-features-text .heading {
  color: var(--primary-color);
  font-family: var(--font-text);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: 21.78px;
}
.more-features-text .title {
  color: black;
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 600;
  line-height: 40.32px;
}
.more-features-text .description {
  color: var(--dark-gray);
  font-family: var(--font-text);
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: 28px;
}
.more-features-btn button {
  color: white;
  background-color: var(--primary-color);
  font-family: var(--font-text);
  font-size: var(--font-size-base);
  font-weight: 600;
  line-height: 19.36px;
  border-radius: 8px;
  padding: 15px 28px;
  gap: 10px;
  width: 146px;
  height: 49px;
  transition: background 0.3s, color 0.3s;
}
.more-features-btn button:hover {
  color: var(--primary-color);
  background-color: white;
  border: 1px solid var(--primary-color);
}

@media (max-width: 1024px) {
  .more-features-container {
    flex-direction: column;
    gap: 40px;
  }
  .more-features-container .image-container {
    max-width: unset;
    max-height: clamp(345px, 60vw, 556px);
  }
  .more-features-content {
    text-align: left;
    max-width: 100%;
    gap: 30px;
  }
  .more-features-text .title {
    font-size: var(--font-size-xl);
  }
  .more-features-text .description {
    font-size: var(--font-size-base);
  }
  .more-features-btn button {
    padding: 10px 20px;
    gap: 10px;
    width: 135px;
    height: 49px;
  }
}
/* Nehir / [JA-16] - More Features Section End */

/* nihat / JA-21 Pricing Section - Start */

.header {
  text-align: center;
  margin-top: 50px;
  font-family: var(--font-heading);
}

.header h1 {
  font-size: var(--font-size-sm);
  color: var(--primary-color);
}

.header h2 {
  font-size: var(--font-size-2xl);
  margin-top: 15px;
}

.header h3 {
  font-size: var(--font-size-sm);
  color: var(--dark-gray);
  margin-top: 15px;
}

.pricing-cards {
  display: flex;
  justify-content: space-between;
  height: 290px;

  width: 900px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.pricing-cards .team {
  width: 270px;
  border: 1px solid rgb(221, 217, 217);
  border-radius: 5px;
  display: block;
  text-align: center;
  background-color: #f8f9fb;
  padding: 10px;
}

.team .header1 {
  color: var(--primary-color);
  font-size: var(--font-size-sm);
}

.team .value {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: var(--font-size-lg);
}

.team .description1 {
  font-size: var(--font-size-sm);
  color: var(--dark-gray);
  display: block;
}

.team .description2 {
  font-size: var(--font-size-sm);
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.team .description3 {
  font-size: var(--font-size-sm);
  display: block;
  margin-bottom: 10px;
}

.team .description4 {
  font-size: var(--font-size-sm);
  display: block;
  margin-bottom: 10px;
}

.pricing-cards .agency {
  width: 270px;
  border: 1px solid rgb(221, 217, 217);
  border-radius: 5px;
  display: block;
  text-align: center;
  background-color: #f8f9fb;
  padding: 10px;
}

.agency .header1 {
  color: var(--primary-color);
  font-size: var(--font-size-sm);
}

.agency .value {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: var(--font-size-lg);
}

.agency .description1 {
  font-size: var(--font-size-sm);
  color: var(--dark-gray);
  display: block;
}

.agency .description2 {
  font-size: var(--font-size-sm);
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.agency .description3 {
  font-size: var(--font-size-sm);
  display: block;
  margin-bottom: 10px;
}

.agency .description4 {
  font-size: var(--font-size-sm);
  display: block;
  margin-bottom: 10px;
}

.pricing-cards .enterprise {
  width: 270px;
  border: 1px solid rgb(221, 217, 217);
  border-radius: 5px;
  display: block;
  text-align: center;
  background-color: #f8f9fb;
  padding: 10px;
}

.enterprise .header1 {
  color: var(--primary-color);
  font-size: var(--font-size-sm);
}

.enterprise .value {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: var(--font-size-lg);
}

.enterprise .description1 {
  font-size: var(--font-size-sm);
  color: var(--dark-gray);
  display: block;
}

.enterprise .description2 {
  font-size: var(--font-size-sm);
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.enterprise .description3 {
  font-size: var(--font-size-sm);
  display: block;
  margin-bottom: 10px;
}

.enterprise .description4 {
  font-size: var(--font-size-sm);
  display: block;
  margin-bottom: 10px;
}

.pricing-cards button {
  background-color: var(--primary-color);
  color: white;
  width: 15em;
  height: 2.5em;
  margin-top: 20px;
  border-radius: 5px;
}

.pricing-cards button:hover {
  background-color: #3d6c51;
  color: var(--primary-color);
  scale: 1.02;
  transition: 1s;
}

@media screen and (max-width: 903px) {
  .pricing-cards {
    width: 90%;
    gap: 10px;
  }
}

@media screen and (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

/*nihat / JA-21 Pricing Section - End --> */

/*nihat / JA-19 FAQ Section - Start */

.faq-container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  font-family: var(--font-text);
}

.faq-title {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: var(--font-size-sm);
  font-weight: normal;
}

.subtitle {
  text-align: center;
  margin-bottom: 30px;
  font-size: var(--font-size-lg);
}

.faq-item {
  margin-bottom: 10px;
  border: 1px solid var(--light-gray);
  border-radius: 5px;
  background-color: white;
}

.question {
  padding: 15px;
  background-color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.question:hover {
  background-color: #f0f0f0;
}

.answer {
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .answer {
  max-height: 500px;
  padding: 15px;
}

.arrow {
  font-size: 20px;
  transition: transform 0.3s;
  color: #001635;
}

.faq-item.active .arrow {
  transform: rotate(90deg);
}

@media screen and (max-width: 768px) {
  .faq-container {
    margin-top: 60px;
  }

  .question {
    font-size: smaller;
  }
}
/*nihat / JA-19 FAQ Section - End */

/*nihat / JA-19 Footer Section - Start */
footer {
  max-width: 1200px;
  width: 100%;
  background-color: white;
  color: black;
  margin: 80px auto 0 auto;
  font-family: var(--font-text);
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.company-description {
  max-width: 380px;
  width: 100%;
}

.company-map-link {
  max-width: 540px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.services h3 {
  margin-bottom: 10px;
}
.info h3 {
  margin-bottom: 10px;
}
.contact h3 {
  margin-bottom: 10px;
}

.column h3 {
  font-weight: normal;
}

.services,
.info,
.contact {
  margin-right: 50px;
}

.column ul,
p {
  color: var(--dark-gray);
}

.company-name {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-bottom: 10px;
}

.copyright {
  margin-top: 50px;
  text-align: center;
}

.copyright-symbol {
  color: green;
}

.rights {
  color: var(--dark-gray);
}

.c2022 {
  color: var(--dark-gray) !important;
}

@media screen and (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
  }

  .column {
    margin: 10px 0;
  }
}
/*nihat / JA-19 Footer  Section - End */

/*nihat / JA-44 Blog Section - Start */
h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.container {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.blog-post {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.blog-post:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: #f0f0f0;
}

.blog-content {
  padding: 15px 0;
}

.blog-author {
  display: flex;
  align-items: center;
  color: #4caf50;
  font-size: 14px;
  margin-bottom: 8px;
}

.blog-author span {
  margin: 0 5px;
}

.blog-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.blog-excerpt {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.pagination-buttons {
  display: flex;
  gap: 10px;
}

.pagination-button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f0f0f0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pagination-button.active {
  background-color: #e0f2e0;
  color: #4caf50;
}

.pagination-button:hover:not(.active) {
  background-color: #e0e0e0;
}

.nav-button {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  color: #666;
}

.nav-button:hover {
  color: #4caf50;
}

.arrow-img {
  width: 24px;
  height: 24px;
}

.previous-arrow {
  transform: rotate(180deg);
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
/*nihat / JA-44 Blog Section - End */

/* Nehir / JA-33 - Contact Info Section Start */

.contact-info-section {
  max-width: 1440px;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 80px 120px;
  gap: 70px;
  font-family: var(--font-text);
}
.contact-info-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 20px;
  max-width: 465px;
  height: 274px;
}
.contact-info-title {
  font-size: var(--font-size-md);
  font-weight: 500;
  line-height: 100%;
  color: var(--primary-color);
}
.contact-info-heading {
  font-family: var(--font-heading);
  font-size: var(--font-size-6xl);
  font-weight: 700;
  line-height: 130%;
  color: var(--secondary-color);
  text-align: left;
}
.contact-info-right {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  max-width: 700px;
  height: 274px;
}
.contact-info-email,
.contact-info-number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  gap: 27px;
  max-width: 310px;
  height: auto;
}
.email-title,
.number-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  line-height: 100%;
  display: inline-block;
}

.email-title::after,
.number-title::after {
  content: "";
  display: block;
  width: 27px;
  height: 3px;
  background-color: black;
  margin-top: 10px;
}
.email-content,
.number-content {
  max-width: 246px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  gap: 20px;
}

.number-content-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  line-height: 100%;
}
.email-content-text,
.number-content-text {
  font-size: var(--font-size-lg);
  font-weight: 400;
  line-height: 32px;
}
@media (max-width: 1200px) {
  .contact-info-section {
    flex-direction: column;
    padding: 80px 24px;
  }
  .contact-info-left {
    height: auto;
  }

  .contact-info-right {
    height: auto;
  }
}
@media (max-width: 500px) {
  .contact-info-heading {
    font-size: 40px;
  }
  .email-title,
  .email-content-title,
  .number-title,
  .number-content-title {
    font-size: var(--font-size-md);
  }
  .email-content-text,
  .number-content-text {
    font-size: var(--font-size-md);
  }
}
@media (max-width: 390px) {
  .contact-info-heading {
    font-size: 30px;
  }
  .contact-info-right {
    gap: 15px;
  }

  .email-title,
  .email-content-title,
  .number-title,
  .number-content-title {
    font-size: var(--font-size-base);
    line-height: 32px;
  }
  .email-content-text,
  .number-content-text {
    font-size: var(--font-size-base);
    line-height: 20px;
  }
  .email-content,
  .number-content {
    gap: 10px;
  }

  .email-title::after,
  .number-title::after {
    margin-top: 5px;
  }
}
/* Nehir / JA-33 - Contact Info Secftion End */

/* Nehir / JA-35 - Newsletter Section Start */
.newsletter-section {
  padding: 100px 120px;
  background-color: var(--primary-color);
  color: white;
  font-family: var(--font-text);
}
.newsletter-container {
  margin: 0 auto;
  max-width: 1440px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

.newsletter-text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  max-width: 560px;
  gap: 16px;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-5xl);
  font-weight: 700;
  line-height: 100%;
  width: 100%;
}
.newsletter-text {
  font-size: var(--font-size-lg);
  font-weight: 400;
  line-height: 150%;
  width: 100%;
}

.newsletter-subscribe-container {
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 560px;
  width: 100%;
  border-radius: 20px;
}
.subscribe-input {
  background-color: #ffffff66;

  color: white;
  padding: 27px 32px;
  gap: 10px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border: none;
  min-width: 416px;
  width: 100%;
  height: 84px;
  font-size: var(--font-size-md);
  font-weight: 500;
  line-height: 30px;
}
.subscribe-input::placeholder {
  color: white;
}
.subscribe-btn {
  background-color: white;
  color: var(--primary-color);
  max-width: 144px;
  height: 84px;
  padding: 16px 32px;
  gap: 10px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  font-size: var(--font-size-base);
  font-weight: 700;
  line-height: 100%;
}
@media (max-width: 1440px) {
  .newsletter-text-content {
    max-width: 672px;
  }
  .newsletter-title {
    font-size: var(--font-size-4xl);
  }
  .newsletter-text {
    font-size: var(--font-size-md);
  }
  .newsletter-subscribe-container {
    max-width: 672px;
  }
  .subscribe-input {
    min-width: unset;
  }
}
@media (max-width: 1200px) {
  .newsletter-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 835px) {
  .newsletter-container {
    gap: 60px;
  }
  .newsletter-title {
    font-size: var(--font-size-3xl);
  }
  .newsletter-text {
    font-size: var(--font-size-base);
  }
  .newsletter-section {
    padding: 48px 24px;
  }
  .subscribe-input {
    font-size: var(--font-size-base);
    height: 64px;
  }
  .subscribe-btn {
    font-size: var(--font-size-sm);
    height: 64px;
  }
}
@media (max-width: 520px) {
  .newsletter-container {
    gap: 50px;
  }

  .newsletter-title {
    font-size: var(--font-size-2xl);
  }
  .subscribe-input {
    font-size: var(--font-size-sm);
    height: 54px;
  }
  .subscribe-btn {
    font-size: 12px;
    height: 54px;
  }
}

@media (max-width: 375px) {
  .subscribe-input {
    font-size: 12px;
    height: 44px;
  }
  .subscribe-btn {
    font-size: 10px;
  }
}

/* Nehir / JA-35 - Newsletter Section End */
