/* @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=Roboto:ital,wght@0,100..900;1,100..900&display=swap'); */

*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    
    
}
.logo a img {
  height: 50px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.logo a:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

body {
    background-color: #f9f9f9;
    margin: 0;
    height: 100vh;
   
  }
  h1, h2, h3, h4 {
    font-weight: 600;
  }
  
  .navbar {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    
  }
  
  .logo img {
    margin-top: 5px;
    width: 80px;
  }
  .menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #333;
  }
  
  .nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    transition: max-height 0.4s ease-in-out;
  }
  
  .nav-left,
  .nav-right {
    display: flex;
    gap: 15px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #333;
    padding: 5px;
    font-size: 0.95rem;
    position: relative;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #FF6600;
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  .menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background-color: white;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      padding: 1rem 2rem;
      border-top: 1px solid #eee;
    }
    .nav-links a {
        text-decoration: none;
        color: #333;
        padding: 5px;
        font-size: 0.9rem;
        position: relative;
        display: flex;
        flex-direction: column;
    }
  
    .nav-links.active {
      display: flex;
      flex-direction: column;
    }

    .nav-left, .nav-right{
      display: flex;
      flex-direction: column;
      text-align: center;
    }
  
    .nav-left,
    .nav-right {
     display: flex;
    gap: 15px;
}
  
    .menu-toggle {
      display: block;
    }
  }

  .po-header {
    position: relative;
    height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
  }
  
  .po-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }

  .header-content {
    position: relative;
    z-index: 1;
  }

  .content{
    z-index: 0;
    position: relative;
    padding: 40px 20px;
    text-align: center;
    overflow: visible;
    margin-top: 0;
  }

  .intro-text {
    text-align: center;
    color: var(--neutral-dark);
   
  }
  
  .intro-text h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--purple);
    margin-bottom: 0.5rem;
    margin: 0 90px 2rem 90px
  }

  :root {
    --purple:  #400080


;
    --orange: #fb8c00;
    --neutral-light: #f4f4f4;
    --neutral-dark: #333;
    --white: #ffffff;
  }

  .calculator-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
    gap: 3rem;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    width: 800px;
    margin-left: 25%;
    margin-top: 50px;
    
  }
  .intro-section {
    padding: 40px 0;
    background-color: #f8f9fa;
    text-align: center;
  }
  
  .intro-section .container {
    max-width: 800px;
    margin: auto;
  }
  
  .intro-section h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
  }
  
 
    .form-section h2 {
    color: var(--purple);
  }
  
  label {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
  }
  
  input[type="range"],
  input[type="number"],
  select {
    width: 100%;
    padding: 0.8rem;
    margin-top: 0.5rem;
    font-size: 1rem;
    border: 2px solid var(--purple);
    border-radius: 0.7rem;
    background-color: #fffefc;
  }
  
  input[type="number"] {
    font-weight: bold;
    color: var(--purple);
    text-align: center;
    appearance: none;
    -moz-appearance: textfield;
  }
  
  input[type="number"]::-webkit-inner-spin-button,
  input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  input[type="range"]::-webkit-slider-thumb {
    
    border: 2px solid white;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -6px;
    box-shadow: 0 0 2px rgba(0,0,0,0.5);
  }
  
  input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    
    border-radius: 3px;
  }
  
  input[type="range"]::-moz-range-thumb {
    
    border: 2px solid white;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    cursor: pointer;
  }
  
  input[type="range"]::-moz-range-track {
    height: 6px;
    
    border-radius: 3px;
  }

  .circle {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background-color: #FF6600

;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
  }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
  }
  .step-box p {
    font-size: 0.9rem;
    color: #555;
}
  
  .step-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .step-box:hover {
    transform: translateY(-5px);
  }
  
  
  .result-section {
    background: linear-gradient(145deg, var(--purple), var(--orange));
    color: var(--white);
    border-radius: 2rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
  }
  
  .result-section h3 {
    margin-top: 0;
  }
  
  .highlight {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
  }
  
  @media (max-width: 768px) {
    .calculator-wrapper {
      grid-template-columns: 1fr;
    }
    .result-section {
      transform: none;
      margin-top: 2rem;
    }
  }

  .calculator {
  max-width: 400px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  border-color: #4a007e;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  color: white;
}

label {
  font-size: 1rem;
  color:  #400080


;
}

input[type="range"] {
  width: 100%;
}

.amount-display {
  text-align: center;
  margin: 1rem 0;
  font-size: 1.5rem;
  color: #f57c00; /* Orange */
}

.repayment-buttons button {
  margin: 0.5rem;
  padding: 0.5rem 1rem;
  background-color:  #400080


; /* Purple */
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.repayment-buttons button:hover {
  background-color: #512da8; /* Slightly darker purple */
}

.repayment-details {
  margin-top: 1.5rem;
  padding: 1rem;
  border-top: 1px solid #e0e0e0;
  color: #424242; /* Neutral */
}

.repayment-details h2 {
  color: #f57c00; /* Orange */
}

  .content button{
    margin-top: 25px;
    /* width: 150px; */
    height: 50px;
    border-radius: 25px;
    text-align: center;
    color: white;
    background-color:  #400080


;
    font-weight: 600;
    border-color: white;
  }

  .content button:hover{
    color: black;
    background-color: #FF6600;
    border-color: black;
  }

  .why-choose {
    padding: 0  20px 60px 20px;
    text-align: center;
    background-color: #f9fbfd;
    
  }
  
  .why-choose h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 1rem;
  }
  
  .choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .choose-card {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .choose-card.animate {
    animation: fadeInUp 0.6s ease forwards;
  }
  
  
  .choose-card:nth-child(1) { animation-delay: 0.1s; }
  .choose-card:nth-child(2) { animation-delay: 0.2s; }
  .choose-card:nth-child(3) { animation-delay: 0.3s; }
  .choose-card:nth-child(4) { animation-delay: 0.4s; }
  .choose-card:nth-child(5) { animation-delay: 0.5s; }
  .choose-card:nth-child(6) { animation-delay: 0.6s; }
  
  .choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }
  
  .choose-card .icon {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .choose-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .choose-card p {
    color: #555;
    font-size: 0.95rem;
  }
  
  .icon img{
    width: 30px;
    height: 30px;
  }
  /* Animation Keyframes */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}

.application-requirements{
   margin-left: 580px;
   margin-bottom: 40px;
}

.application-requirements h2{
    font-size: 2rem;
    margin-bottom: 10px;
}

.application-requirements p{
    margin-left: 50px;
}

.loan-form-section {
    background: #fafafa;
    padding: 40px 20px;
    border-radius: 16px;
    max-width: 800px; /* Sets max width */
    width: 100%; /* Ensures form is responsive on smaller screens */
    margin: 0 auto; /* Centers the form horizontally */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    font-family: 'Poppins' , sans-serif;
  }
  
  .loan-form-section h2 {
    font-size: 28px;
    color: #400080;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .loan-form-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .loan-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  
  .loan-form input[type="text"],
  .loan-form input[type="tel"],
  .loan-form input[type="email"],
  .loan-form input[type="number"],
  .loan-form input[type="file"] {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    width: 100%; /* Ensures inputs span the full width */
  }
  
  .loan-form label {
    font-weight: bold;
    color: #333;
  }
  
  .loan-form button {
    background-color: #FF6600;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .loan-form button:hover {
    background-color: #FF6600;
  }
  
  #formMessage {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
  }





.apply-section {
    background: #f4f2f7; /* neutral soft background */
    padding: 40px 20px;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    text-align: center;
    font-family: 'Poppins' , sans-serif;
    margin-top: 20px;
  }
  
  .apply-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #4a007e; /* rich purple */
  }
  
  .apply-section p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
  }
  
  .contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .btn {
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: bold;
    width: 100%;
    max-width: 300px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: white;
  }
  
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  }
  
  /* Brand-based button colors */
  .btn.whatsapp {
    background-color:  #400080


; /* deep purple */
  }
  
  .btn.email {
    background-color: #9e9e9e; /* neutral gray */
  }
  
  .btn.apply {
    background-color: #FF6600; /* vibrant orange */
  }



  .site-footer {
    background-color: #400080;
    color: white;
    padding: 50px 20px 20px;
    font-family: 'Poppins' , sans-serif;
    width: 100vw;
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-col {
    flex: 1 1 220px;
  }
  
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .footer-socials a {
    margin-right: 10px;
    color: white;
    font-size: 18px;
    transition: color 0.3s;
  }
  
  .footer-socials a:hover {
    color: #FF6600;
  }
  
  .footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 10px;
  }
  
  .footer-col ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-col ul li a:hover {
    color: #000;
  }
  
  .subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .subscribe-form input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 100%;
  }
  
  .subscribe-form button {
    padding: 10px;
    background-color: #FF6600;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .subscribe-form button:hover {
    background-color: white;
    color: #000;
  }
  
  .footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 0.9rem;
  }
  
  .footer-links {
    margin-top: 10px;
  }
  
  .footer-links a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .footer-bottom {
      text-align: center;
    }
  }

  
  @media (max-width: 768px) {
    .slide-text {
      font-size: 20px;
      padding: 10px 16px;
      width: 80%;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      top: 50%;
      right: auto !important; /* override desktop right values */
    }
  
    .slide:nth-child(2) .slide-text,
    .slide:nth-child(3) .slide-text {
      width: 90%;
    }
  
    .slider figure img {
      object-fit: cover;
      height: 100vh;
    }
  }

  @media (max-width: 768px) {
    .calculator-wrapper {
      grid-template-columns: 1fr;
      padding: 1.5rem;
      width: 90%;
      margin: 30px auto;
    }
  
    .content button {
      width: 100%;
    }
  }

  @media (max-width: 768px) {
    .why-choose h2 {
      font-size: 1.5rem;
    }
  
    .choose-grid {
      gap: 15px;
      padding: 0 10px;
    }
  }

  @media (max-width: 768px) {
    .application-requirements {
      margin: 40px 20px;
      text-align: center;
    }
  
    .application-requirements p {
      margin-left: 0;
    }
  }

  @media (max-width: 768px) {
    .loan-form-section {
      padding: 20px 10px;
    }
  
    .loan-form-section h2 {
      font-size: 24px;
    }
  }

 /* Responsive */
 @media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
.footer {
    background-color:  #400080


;
    color: #fff;
    padding: 50px 20px 20px;
    font-size: 0.95rem;
  }

  .empowering{
    margin-bottom: 10px;
    font-size: 0.95rem;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    border-bottom: 1px solid #222;
  }
  
  
  .footer-col {
    flex: 1;
    min-width: 220px;
  }
  
  .footer-logo {
    width: 200px;
    margin-bottom: 10px;
  }
  
  .footer-col h4 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #fff;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 8px;
  }
  
  .footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
  }
  
  .footer-col ul li a:hover {
    color: #FF6600

;
    text-decoration: underline;
  }
  
  .subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  
  .subscribe-form input {
    padding: 8px 10px;
    border: none;
    border-radius: 4px;
  }
  
  .subscribe-form button {
    background-color: #FF6600

;
    color: white;
    padding: 8px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
  }
  
  .subscribe-form button:hover {
    background-color: #FF6600
;
  }
  
  .footer-bottom {
    
    display: flex;
    flex-wrap: wrap;
    margin: 10px 10% 0 10%;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
  }
  
  .footer-links a {
    color: #999;
    margin-left: 15px;
    font-size: 0.85rem;
    text-decoration: none;
  }
  
  .footer-links a:hover {
    color:#FF6600

;
    text-decoration: underline;
  }
  
  /* Social Icons */
  .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
  }
  
  .social-icons a {
    color: #ccc;
    font-size: 1.2rem;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #fff;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-col {
      align-items: center;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 10px;
      text-align: center;
      border-top: 1px solid #4a1e64;
    }
  
    .footer-links {
      margin-top: 10px;
    }

   
  
  }
 /* WhatsApp CTA Button */
.whatsapp-cta {
position: fixed;
right: 20px;
bottom: 30px;
z-index: 999;
}

.whatsapp-cta a {
display: flex;
align-items: center;
gap: 10px;
background-color: #25d366;
color: white;
padding: 10px 15px;
border-radius: 30px;
font-size: 14px;
text-decoration: none;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
transition: background 0.3s ease;
}

.whatsapp-cta a:hover {
background-color: #128c7e;
}

.whatsapp-cta i {
font-size: 20px;
}

.bottom-part{
  display: flex;
  flex-direction: row;
  padding-left: 10%;
  background-color: #f4f6f9;
margin-top: 50px;
}

.bottom-part img{
  width: 350px;
  height: 350px;
  border-radius: 25px;
  margin-top: 30px;
}
.faq-section {
  background-color: #f4f6f9;
  padding: 40px 20px;
  text-align: center;
 
  
}

.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
  margin-right: 31%;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-item:hover {
  background-color: #f1f1f1;
}

.faq-question {
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  color: #333;
  font-size: 0.95rem;
  padding-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust depending on answer length */
  opacity: 1;
  padding-top: 10px;
}


@media screen and (max-width: 600px) {
  .faq-section {
    padding: 20px 10px;
  }

  .faq-section h2 {
    font-size: 1.5rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}

@media (max-width: 1000px){
  .bottom-part img{
display: none;
  }
}


.container p{
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin-top: 40px;
}

.container h1{
  margin: 0;
}

.faq-content {
  flex: 2;
}

.faq-image-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.faq-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* Adjust this value to move image up */
}
* popup.css */

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* translucent black */
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.popup-box {
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-family: 'Poppins', sans-serif;
  max-width: 90%;
  width: 400px;
  animation: popup-fade 0.3s ease;
}

.popup-box p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
}

.popup-box button {
  background-color: #ff6600;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.popup-box button:hover {
  background-color: #e65900;
}
@media (max-width: 768px) {
  .bottom-part img{
    display: none;
  }
  
}

@media (min-width:769px) {
  .bottom-part{
    display: flex;
    flex-direction: row;
    padding-left: 10%;
    background-color: #f4f6f9;
   
  }
  
  .bottom-part img{
    width: 350px;
    height: 350px;
    border-radius: 100%;
   
  }
}
.bottom-part{
  display: flex;
  flex-direction: row;
  padding-left: 10%;
  background-color: #f4f6f9;
 
}

 .accreditation{
  margin-top: 50px;
   font-size: 13px;
   color: #999;
  text-align: center;
  
  
  }

.bottom-part img{
  width: 350px;
  height: 350px;
  border-radius: 25px;

}

.application-requirements {
  max-width: 600px;
  margin: 0 auto; /* Centers the box horizontally */
  text-align: center; /* Centers the text inside */
  padding: 20px;
}
