@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}


.nav{
        height: 3.6rem;
    width: 100%;
    border-bottom: 1px solid #dbe2ea;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3.3rem;

}
.logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo span{
    font-weight: 800;
    letter-spacing: 0.4px;
    font-size: 21px;
    color: #07A5ED;

}
.o{
    display:flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
        height: 43px;
    width: 45px;
    margin-right: 9px;
    background-color: #07A5ED;
}
.o span{
    color: white;
}
.nav_buttons a{
        text-decoration: none;
    margin-right: 2px;
    font-size: 15px;
    color: #64749A;
    letter-spacing: -0.1px;
    margin-right: 7px;
    
}
.nav_buttons button{
    height: 38px;
    width: 114px;
    border-radius: 10px;
    border: none;
    background-color: #07A5ED;
    color: white;
    font-weight: 600;
    letter-spacing: 0.4px;
}

@keyframes buttons {
  from {background-color: #07A5ED;}
  to {background-color: #07a4eda3;}
}

.nav_buttons button:hover{
    background-color: #07a4eda3;
    animation-name: buttons;
  animation-duration: 0.6s;
}
@keyframes anchor {
  from {color: #64749A;}
  to {color: black;}
}

.nav_buttons a:hover{
    color: black;
    animation-name: anchor;
  animation-duration: 0.4s;
}
@media only screen and (max-width: 450px) {
  .nav{
    padding: 0;
  }
}


/* main */



.main{
        height: 91vh;
    width: 100%;
      
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 4%;
    /* overflow-x: hidden; */
}
.left{
    /* height: 100%; */
        width: 48%;
    /* border: 1px solid red; */
    margin-top: 10px;
    display: flex
;
    flex-direction: column;
    gap: 10px;
}
.right{
    height: 100%;
    width: 48%;
    /* border: 1px solid blue; */
}
.left .one{
    color: black;
    font-size: 36px;
}
.left .two{
    color: #07A5ED;
    font-size: 32px;
}
.left p{
    font-size: 17px;
    line-height: 24px;
    padding-right: 5px;
}
.main_buttons{
    height: 42px;
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
    gap: 21px;

}

.main_buttons button:nth-child(1){
    width: 9.8rem;
    background-color: #07A5ED;
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 500;
    letter-spacing: 0.3px;
    height: 100%;
}
.main_buttons button:nth-child(1):hover{
    background-color: #07a4eda3;
    animation-name: buttons;
  animation-duration: 0.6s;

}
.main_buttons button:nth-child(1) i {
  display: inline-block;
  transition: transform 0.3s ease;
  margin-left: 0.4rem;
}

.main_buttons button:nth-child(1):hover i {
    transform: translateX(6px);

}

.main_buttons button:nth-child(2){
    height: 100%;
    width: 6.6rem;
    background-color: white;
    border: 0.2px solid #64749a4d;
    border-radius: 10px;
    color: black;
    font-weight: 500;
    letter-spacing: 0.3px;
}
@keyframes login {
  from {
    background-color: white;
  }
  to {
    background-color: #9A65F2;
    color: white;
  }
}

.main_buttons button:nth-child(2):hover {
  animation-name: login;
  animation-duration: 0.6s;
  animation-fill-mode: forwards; 
  
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.center img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit:fill;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .main {
    flex-direction: column;
    height: auto;
    padding: 2rem 1rem;
  }

  .left, .right {
    width: 100%;
  }

  .left {
    align-items: center;
    text-align: center;
  }

  .main_buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    height: 100px;
  }

.main_buttons button:nth-child(1){
    width: 9.8rem;
    background-color: #07A5ED;
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 500;
    letter-spacing: 0.3px;
    height: 100%;
}
  .center {
    height: auto;
    margin-top: 2rem;
  }

  .center img {
    width: 100%;
    height: auto;
  }
}


/* next 3 */
.prot{
        display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow-x: hidden;
    margin-top: 8rem;
    margin-bottom: 6rem;
      
}
.prot h1{
    font-size: 1.9rem;
    text-align: center;
}
.par {
width: 40%;
  
text-align: center;
}
@media (max-width: 950px) {
    .par {
    width: 50%;
      
    text-align: center;
    }

}
@media (max-width: 780px) {
    .par {
    width: 60%;
      
    text-align: center;
    }

}
@media (max-width: 600px) {
    .par {
    width: 70%;
      
    text-align: center;
    }

}
.main-3 {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;        
  justify-content: center; 
  gap: 3.5rem;             
  padding: 1rem;
  box-sizing: border-box;
}

.main-one {
  height: 12rem;
  width: 25rem;
  border: 1px solid #EAF7FE;
  border-radius: 0.4rem;
  display: flex;
   max-width: 395px;
  justify-content: center;
  align-items: center;
  box-shadow: 1px 2px 14px -10px rgba(0,0,0,0.75);
-webkit-box-shadow: 1px 2px 14px -10px rgba(0,0,0,0.75);
-moz-box-shadow: 1px 2px 14px -10px rgba(0,0,0,0.75);
  transition: box-shadow 0.4s ease;
}

.main-one:hover {
  box-shadow: 1px 2px 24px -10px rgba(0,0,0,0.75);
  -webkit-box-shadow: 1px 2px 24px -10px rgba(0,0,0,0.75);
  -moz-box-shadow: 1px 2px 24px -10px rgba(0,0,0,0.75);
}

.main-main-one{
    height: 80%;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}
.icon{
    height: 2.8rem;
    width: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.2rem;
    background-color: #EAF7FE;
}
.icon svg{
    font-size: 1.2rem;
    color: #07A4ED;
}
.heading h4{
    font-size:1.125rem;
    font-weight: 600;
}
.heading{
    margin-top: 0.7rem;

}
.paragraph h5{
    font-size:1rem;
    font-weight: 400;
    color: #64749A;
    margin-top: 0.4rem;
}
.cta{
    padding: 0 8rem;
}
@media (max-width: 768px) {
  .main-3 {
    flex-direction: column;
    align-items: center;
  }


.main-main-one{
    height: 80%;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1rem;
}

  .heading h4 {
    font-size: 1rem;
  }

  .paragraph h5 {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
.main-one {
  height: 12rem;
  border: 1px solid #EAF7FE;
  border-radius: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 1px 2px 17px -5px rgba(0,0,0,0.75);
  -webkit-box-shadow: 1px 2px 17px -5px rgba(0,0,0,0.75);
  -moz-box-shadow: 1px 2px 17px -5px rgba(0,0,0,0.75);
  transition: box-shadow 0.4s ease;
}
}
/* seconed last */
.cta-section {
  background-color: #07A5ED;
  color: white;
  padding: 3rem 2rem;
  border-radius: 10px;
  text-align: center;
  max-width: 100%;
  margin: 2rem auto;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  max-width: 90%;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.cta-btn {
  background-color: #026e9f;
  color: white;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-btn i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.cta-btn:hover {
  background-color: #026e9f87;
}

.cta-btn:hover i {
  transform: translateX(4px);
}
@media (max-width: 600px) {
  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
  .cta{
    padding: 0rem;
}
}

/* footer */

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem 3rem;
  background-color: #f9fbfc;
  border-top: 1px solid #dbe2ea;
  flex-wrap: wrap;
}

.footer-left .logo {
  display: flex;
  align-items: center;
}

.footer-left .circle {
  background-color: #07A5ED;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  height: 36px;
  width: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  margin-right: 10px;
}

.logo-text {
  color: #07A5ED;
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-right {
  display: flex;
  /* flex-direction: column; */
  align-items: flex-end;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  text-decoration: none;
  color: #3f587e;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #07A5ED;
}

.footer p {
  color: #3f587e;
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 890px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
  }

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.footer-right ul {
    margin-top: 30px;
}
.footer-right ul li{
    height: 40px;
}

  .footer-links {
    flex-direction: column;
    gap: 0.8rem;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal.show {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-content {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  max-width: 400px;
  width: 90%;
  position: relative;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-content h2 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.modal-content p {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  color: #64749A;
}

.modal-content label {
  display: block;
  margin-top: 1rem;
  font-weight: 500;
  font-size: 0.875rem;
}

.modal-content input {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 0.4rem;
  font-size: 1rem;
    font-size: 0.875rem; /* 14px */
  transition: border-color 0.3s ease;
}

.modal-content input:focus {
  outline: none;
  border-color: #07A5ED;
}

.modal-buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
  gap: 1rem;
}

.cancel-btn, .submit-btn {
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 0.4rem;
  font-weight: 600;
  cursor: pointer;
}
.cancel-btn {
  background-color: white;
  border: 1px solid #ccc;
  color: #333;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.cancel-btn:hover {
  background-color: #9A65F2; /* Purple from your image */
  color: white;
  transform: scale(1.03); /* Slight lift effect */
}

.submit-btn {
  background-color: #07A5ED;
  color: white;
}

.close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #000;
  transition: transform 0.3s ease, color 0.3s ease;
}

.close:hover {
  color: #07A5ED;
  transform: scale(1);
}


/* ✅ Responsive for small devices */
@media (max-width: 480px) {
  .modal-content {
    padding: 1.2rem;
  }

  .modal-content h2 {
    font-size: 1.25rem;
  }

  .modal-content p {
    font-size: 0.85rem;
  }

  .modal-buttons {
    flex-direction: column;
    gap: 0.6rem;
  }
  

  .cancel-btn,
  .submit-btn {
    width: 100%;
  }
}
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease-out, transform 0.9s ease-out;
  transition-delay: 0s;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}


/* style toast */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #fff;
  color: #1f2937;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  padding: 16px 20px;
  width: 360px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast-header {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 8px;
}

.toast-close {
  cursor: pointer;
  font-size: 18px;
}

.toast-body {
  font-size: 14px;
  line-height: 1.4;
}
.loginnn:hover a {
  color: white;
}