* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body{
  font-family:'Lato',sans-serif;
}
/* Customizable-Plans-Section Start */
.pricing-section{
  max-width: 1440px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}
.pricing-hr{
  justify-content: center;
  margin: auto;
  width: 50px;
  height: 5px;
  border: 5px;
  background-color: #1F64FF;
  border-radius: 5px;
  margin-top: 15px;
  margin-bottom: 30px;
}

.pricing-section-title{
  font-size: 40px;
  color: #000022;
  margin-bottom:10px;
}

.pricing-section-content{
color: #00002259;
}
.pricing-section-content-two{
  color: #000022BF;
}

.pricing-plan{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
  width: 1200px;
  height: 380px;
  margin: auto;
  margin-bottom: 20px;
}

.plan{
  background-color: white;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
}

.personal-plan{
  background-color: #1F64FF;
  padding: 10px 20px;
  border-radius: 10px;
  width: 390px;
  height: 380px;
  font-size: 16px;
  align-items: center;
  color: white;
  font-weight: 400;
}
.pricing-list{
    list-style-type: none;
    line-height: 20px;
    margin-bottom: 40px; /* Liste ile buton arasında boşluk */
}

.plan-title{
  text-align: center;
  font-weight: 900;
}
.plan-title h2{
  font-size: 24px;
}
.plan-title p{
  font-size: 48px;
  margin-bottom: 10px;
} 
.personal-plan-title{
  text-align: center;
  color: white;
  font-weight: 900;
}
.personal-plan-title h2{
  font-size: 28px;
}
.personal-plan-title p{
  font-size: 48px;
}

.btn-blue{
  background-color: #0057ff;
  color: white;
  border: solid;
  width: 350px;
  height: 45px;
  border-radius:10px;
  cursor: pointer;
  margin: 18px;
}

.personal-btn{
  background-color: white;
  color: #0057ff;
  border: none;
  width: 350px;
  height: 45px;
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;
  font-weight: 700;
}
.toggle-container {
  display: flex;
  background: #6293FF;
  padding: 10px;
  border-radius: 10px;
  width: 350px;
  height: 64px;
  position: relative;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.toggle-btn {
  background-color:#6293FF ;
  border: #6293FF solid;
  color: white;
  font-weight: 400;
  padding: 6px 21px 6px 21px;
  border-radius: 5px ;
  border: 0;
  width: 160px;
  height: 45px;
  cursor: pointer;

}
.toggle-btn-active {
  background-color: white;
  color:#0057ff ;
  font-weight: 400;
  padding: 6px 21px 6px 21px;
  border-radius: 5px ;
  border: 0;
  width: 160px;
  height: 45px;
  gap: 10px;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .pricing-plan {
    width: 100%;
    height: auto;
    padding: 20px;
  }
  .plan,
  .personal-plan {
    width: 390px;
    height: auto;
  }
  .btn-blue,
  .personal-btn {
    width: 100%;
  }
  .btn-blue {
    margin: 0;
  }
}
  @media screen and (max-width:850px) {
    .pricing-plan {
      flex-wrap: wrap;
  }
}

/* Customizable-Plans-Section End */

/* Header Section Css Start */
body {
  font-family: "Lato", sans-serif;
}

.header {
  width: 100%;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

.rateit-logo {
  display: flex;
  align-items: center;
  font-size: 25px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  font-size: 18px;
  font-weight: bold;
}

.nav-links li a {
  text-decoration: none;
  color: black;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.login-button {
  border-radius: 10px;
  border: 2px #1f64ff solid;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
  font-weight: bold;
  color: #1f64ff;
}

.signup-button {
  background-color: #1f64ff;
  border-radius: 10px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
  color: white;
  border: 1px #1f64ff solid;
  font-weight: bold;
}
.menu-content {
  display: none;
  font-size: 20px;
}
@media (max-width: 1110px) {
  .nav-links {
    display: none;
  }
  .menu-content {
    display: flex;
  }
  .nav-buttons {
    display: none;
  }
}
/* Header Section Css End */

/* How It Works Start */

.how-it-works {
  font-family: "Lato", sans-serif;
  width: 100%;
  margin: 80px auto;
  max-width: 1440px;
}

.how-it-works .main-head {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.how-it-works .section-title {
  font-size: 48px;
  font-weight: 900;
  color: #000022;
}

.how-it-works .pricing-hr {
  justify-content: center;
  margin: auto;
  width: 50px;
  height: 5px;
  border: 5px;
  background-color: #1F64FF;
  border-radius: 5px;
  margin-top: 15px;
  margin-bottom: 30px;
}

.how-it-works .card-container {
  justify-content: space-between;
  align-items: center;
  text-align: center;
  display: flex;
  padding: 8% 5%;
}

.how-it-works .card {
  width: 285px;

}

.how-it-works .heads {
  font-size: 24px;
  font-weight: 700;
}

.how-it-works .explanation {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 400;
}

@media (max-width:800px) {
  .how-it-works .card-container {
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
  }

  .how-it-works .card {

    width: 80%;
  }
}

@media (max-width:600px) {
  .how-it-works .card {
    width: 70%;
  }
}


/* How It Works End */


.hero-section{
  max-width: 1440px;
  font-family: "Lato",sans-serif;
  justify-content: center;
  gap: 50px;
  margin: 50px auto;
  display: flex;
  width: 100%;
  align-items: center;
  
}
.left-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 45px;}

.hero-title{
  font-weight: 300;
  font-size: 48px;
  color: rgba(0, 0, 34, 1);}
.fw-900{
  font-weight: 900;}
.hero-explanation{
  font-size: 18px;
  font-weight: 400;
  color: rgba(0, 0, 34, 1);
  margin-top: 1px;}

.hero-btns{
  text-align: center;
  display: flex;
  gap: 10px;
  margin-top:10px;
  }
.btns{
  border-radius: 10px;
  width: 190px;
  padding: 16px 30px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;}
.first-btn{
  border: 2px solid  rgba(31,100,255,1);
  background-color: rgba(31,100,255,1);
  color: white;}
  

.second-btn{
  border: 2px solid  rgba(31,100,255,1);
  color: rgba(31,100,255,1);
  background-color: white ;}

  .hero-img{
      width: 100%;
  }
  @media (max-width:630px) {
      .hero-btns {
          flex-direction: column;
      }
      .btns {
          width: 100%;
      }
  }

  @media (max-width: 1100px){
      .hero-section{
          flex-direction: column;
          gap: 10px;
      }
      
  }
 
  .banner-section {
    padding: 50px 0px;
    font-family: "Lato", sans-serif;
    max-width: 1440px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  
  }
  
  .left-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
  
  }
  
  .banner-exp {
    font-weight: 900;
    font-size: 48px;
    gap: 63px;
  }
  
  .banner-button {
    width: 220px;
    margin-top: 50px;
    display: block;
    padding: 17px 72px;
    border-radius: 10px;
    border: 2px solid rgba(31, 100, 255, 1);
    background-color: rgba(31, 100, 255, 1);
    color: white;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
  }
  
  .right-container img {
    width: 100%;
  }
  




/* [JA-4] - FOOTER CSS */

footer {
  font-family: "Lato", sans-serif;
  display: flex;
  flex-wrap: wrap;
  background-color: #090949;
  width: 100%;
  padding: 60px 10%; /* Padding değerini sadece yatayda bıraktık */
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-left {
  width: 100%;
  max-width: 300px;
}

.footer-left p {
  font-weight: 900;
  font-size: 32px;
  line-height: 1.3;
  color: #ffffff;
}

.social-icons {
  margin-top: 20px;
  margin-left: 40px;
  position: relative;
  display: flex;
  gap: 10px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 6px;
  padding: 5px;
}

.footer-right {
  display: flex;
  flex: 0.8;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 140px;
}

.footer-section h3 {
  color: #ffffff;
  font-size: 18px;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #b3b3b3;
  font-size: 16px;
}

.footer-section ul li a:hover {
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  footer {
    flex-direction: column;
    padding: 40px 5%; /* Mobile için padding'i azalttık */
  }

  .footer-left {
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    white-space: nowrap; /* tek satırda kalmasını sağladık */
  }

  .footer-right {
    display: flex;
    flex-wrap: wrap; /*İçerideki öğelerin sığmadığı durumlarda bir sonraki satıra geçmesini sağlar; yani, elemanlar alt alta gelebilir.*/
    justify-content: space-between;
    width: 100%;
    gap: 0;
  }
}

/* [JA-4] - FOOTER CSS */

/* why important css start */

.why-important-section {
  width: 100%;
  max-width: 1440px;
  font-family: "Lato", sans-serif;
  text-align: center;
  margin: 0 auto;
}

.why-important-section .why-important-top h1 {
  font-weight: 900;
  font-size: 48px;
  text-align: center;
  margin: 30px 0;
  line-height: 57.6px;
  position: relative; /* Pseudo-element için gerekli */
  color: rgba(0, 0, 34, 1);
}

.why-important-section .why-important-top h1::after {
  /* pseudo element olarak geçiyormuş dekorasyon için gerekliymiş. */
  content: "";
  display: block;
  width: 5%;
  height: 5px;
  background-color: rgba(31, 100, 255, 1);
  margin: 10px auto 0;
  border-radius: 10px;
}

.why-important-section .why-important-top p {
  font-weight: 400;
  font-size: 18px;
  line-height: 21.6px;
  letter-spacing: 0;
  text-align: center;
  color: #00002259;
  margin: 30px 0;
}

.why-important-section .topp1 {
  display: block;
  margin-top: 15px;
}

.why-important-section .topspan {
  font-style: italic;
  letter-spacing: 0;
  color: #000022bf;
}

.why-important-section .why_important_img {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.why-important-section .why_important_img img {
  width: 100%;
  height: auto;
}

.why-important-section .why-important-bottom1 {
  font-weight: 400;
  font-size: 18px;
  line-height: 21.6px;
  text-align: center;
  color: rgba(0, 0, 34, 0.35);
}

.why-important-section .why-bottom2 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  line-height: 21.6px;
  letter-spacing: 0;
  text-align: center;
  color: #000022bf;
  display: block;
  margin: 10px auto 40px;
  width: 100%;
  max-width: 800px;
}

.why-important-section .why-bottom2 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  line-height: 21.6px;
  letter-spacing: 0;
  text-align: center;
  color: #000022bf;
  display: block;
  margin: 10px auto 40px;
  width: 100%;
  max-width: 800px;
}

.why-important-section .sign-up-today-button {
  width: 200px;
  height: 52px;
  border-radius: 10px;
  background-color: rgba(31, 100, 255, 1);
  color: white; /* Buton yazısı için */
  font-size: 16px;
  font-weight: bold;
  border: none; /* Kenarlıkları kaldırm */
  cursor: pointer; /* Üzerine gelince el simgesi */
  display: inline-block;
  text-align: center;
  margin-bottom: 10px;
}

/* why important css end */

/* why important section responsive start */

@media screen and (max-width: 768px) {
  .why-important-section .why-important-top h1 {
    white-space: nowrap; /* Tek satırda kalmasını sağla */
    overflow: hidden; /* Taşan kısımları gizle */
    font-size: 32px;
  }

  .why-important-section .why-important-top p {
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    white-space: normal;
    line-height: 21.6px;
    padding: 0 15px;
  }

  .why-important-section .why_important_img {
    flex-direction: column; /* Yatay yerine dikey hizala */
    gap: 20px;
  }

  .why-important-section .why_important_img div {
    width: 100%;
    text-align: center;
  }

  .why-important-section .why_important_img img {
    max-width: 70%;
    height: auto;
  }

  .why-important-section .sign-up-today-button {
    width: 100%;
    max-width: 400px;
    margin: 20px auto; /* Üstten ve alttan boşluk ekledim */
    display: block;
    text-align: center;
  }

  .why-important-section .why-important-bottom1 p {
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    white-space: normal;
    line-height: 21.6px;
    padding: 0 15px;
  }

  .why-important-section .why-bottom2 {
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    white-space: normal;
    line-height: 21.6px;
    padding: 0 15px;
  }

  @media screen and (max-width: 560px) {
    .why-important-section .why_important_img img {
      max-width: 100%;
      width: 100%;
      height: auto;
    }
  }
}
/* why important section responsive end */

/* Contact-Form-Section Css Start */
.contact-form-section {
  display: flex;
  width: 100%;
  background-color: white;
  border-radius: 8px;
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px;
}

.contact-form-section .text-section {
  width: 580px;
  height: 620px;
  background-color: #0066ff;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 76px 40px;
  font-size: 30px;
  font-weight: 900;
  text-align: center;
}
.form-wrapper{
    width: 100%;
    max-width: 730px;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }


.contact-form-section .form-section {
  padding: 80px 0;
  width: 100%;
}

.contact-form-section .form-group {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.contact-form-section .input-box {
  width: 100%;
  max-width: 320px;
}
.contact-form-section .input-box input{
  all:unset;
  border-bottom: 1px solid  #00002259;
  height: 30px;
  width: 100%;
}
.contact-form-section label {
  display: block;
  font-size: 14px;
  color: #00002259;
  margin-bottom: 5px;
}

.contact-form-section input,
.contact-form-section textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.contact-form-section textarea {
  resize: none;
  height: 80px;
  all:unset;
  color:#00002259;
}

.contact-form-section .message-box {
  margin-top: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid  #00002259;
}

.contact-form-section .submit-btn {
  background-color: #0066ff;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
}

.contact-form-section .submit-btn:hover {
  background-color: #0056d6;
}
.contact-form-section .btn-message{
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}

/* Contact Form Section Css End */

/* Contact Form Section Responsive Start */
@media screen and (max-width: 770px){
  .contact-form-section{
    flex-direction: column-reverse;
    align-items: center;
    padding: 30px;
  }
  .contact-form-section .text-section{
    width: 100%;
    height: auto;
    padding: 40px;
    text-align: center;
    font-size: 24px;
  }
  .contact-form-section .form-section {
    padding: 0;
  }
  .contact-form-section .form-group {
    flex-direction: column;
    gap: 20px;
  }
  .contact-form-section .input-box {
    width: 100%;
    max-width: 100%;
  }
  .contact-form-section .input-box input {
    width: 100%;
  }
  .contact-form-section .submit-btn {
    width: 100%;
  }
}

/* Contact Form Responsive End */

.banner-section {
  padding: 50px 0px;
  font-family: "Lato", sans-serif;
  max-width: 1440px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 30px;

}

.left-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;

}

.banner-exp {
  font-weight: 900;
  font-size: 48px;
  gap: 63px;
}

.banner-button {
  width: 220px;
  margin-top: 50px;
  display: block;
  padding: 17px 72px;
  border-radius: 10px;
  border: 2px solid rgba(31, 100, 255, 1);
  background-color: rgba(31, 100, 255, 1);
  color: white;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
}

.right-container img {
  width: 100%;
}

.right-container{
  display: flex;
  justify-content: center;
}

@media (max-width:950px) {
  .banner-section {
  flex-direction: column;
  justify-content: center;
  gap:100px;
  
  }
  .left-container {
  align-items: center;
  }
  .banner-button {
  width: 90%;
  
  }
  .right-container img {
  width: 70%;
  }
}
  @media (max-width:650px) {
  .right-container img {
  width: 100%;
  }
  }

/*about us css start*/
.about-us-section {
  font-family: "Lato", sans-serif;
  padding: 80px 0;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  color: #000000;
}
.about-us-container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.about-us-title {
  width: 100%;
}

.about-us-left {
  flex: 1;
  max-width: 830px;
  margin-left: 40px;
}

.about-us-right {
  display: flex;
  align-items: flex-start;
  padding-top: 60px;
  margin-right: 140px;
}

.about-us-title h1 {
  color: #000022;
  font-weight: 900;
  font-size: 48px;
  line-height: 2;
  margin-left: 42px;
  position: relative;
}

.about-us-title h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3%;
  height: 5px;
  background-color: #1f64ff;
  border-radius: 10px;
}

.about-us-top p {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  margin-top: 40px;
}

.about-us-mid p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  margin-top: 30px;
}
.about-us-mid ul {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  list-style: none;
  padding: 10px;
}

.about-us-mid ul li {
  position: relative;
  padding: 8px;
}
.about-us-mid ul li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: white;
  border-radius: 50%;
  border: 2px solid #1f64ff;
}

.about-us-bottom p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  margin-top: 10px;
}

.about-us-right img {
  width: 188px;
  height: 214px;
}
/*about us css end*/
/*  about us responsive start */
@media screen and (max-width: 768px) {
  .about-us-section {
    padding: 40px 20px;
  }

  .about-us-container {
    flex-direction: column;
    gap: 20px;
  }

  .about-us-title {
    margin-bottom: 20px;
  }

  .about-us-title h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-left: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .about-us-title h1::after {
    width: 15%;
    height: 5px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
  }

  .about-us-left {
    margin-left: 0;
    padding: 0 15px;
  }

  .about-us-right {
    margin-right: 0;
    justify-content: center;
    padding-top: 30px;
  }

  .about-us-right img {
    width: 25%;
    max-width: 300px;
    height: auto;
  }

  .about-us-top p,
  .about-us-mid p,
  .about-us-bottom p {
    font-size: 16px;
    text-align: left;
    line-height: 1;
  }

  .about-us-mid ul {
    padding: 20px;
    line-height: 0.8;
    font-size: 16px;
  }
}

/* about us responsive end */
