
body {
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #ffffff;
}
.navbar {
  padding: 2rem 4rem;
  background: linear-gradient(to right, #1573FF, #1B45B4); 
}


.navbar .nav-link {
color: rgba(255, 255, 255, 0.7) !important; 
}

.navbar .nav-link.active {
color: white !important; 
}

.navbar .nav-link:hover {
color: white!important; 
}
.navbar .btn{
color: white;
border: none;
}
.navbar-collapse {
  transition: transform 0.3s ease-in-out;
}

/* Small Screens (Right Slide-in Navbar) */
@media (min-width: 768px) and (max-width: 992px) , (max-width: 768px){
  .navbar-collapse {
      position: fixed;
      top: 0;
      right: 0;
      width: 70%; 
      height: 100%;
      background: linear-gradient(to right, #4E9BFF, #1573FF); 
      transform: translateX(100%); 
      z-index: 1050;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
      overflow-y: auto;
      padding: 2.5rem;
  }
  .navbar .btn{
    padding-left:0% ;
    padding-right: 0%;
    padding-top: 20px;
  }
  .navbar-collapse.show {
      transform: translateX(0); 
  }

  .navbar-toggler {
      position: relative;
      z-index: 1100;
  }

  .navbar-nav {
    margin-top: 50px;
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;

  }

  .nav-item a {
      color: white;
      font-size: 1rem;
      text-decoration: none;
  }

  .dropdown-menu {
      background-color: #444;
      border: none;
  }

  .dropdown-item {
      color: white;
  }
  .navbar {
    padding: 2rem 2rem;
}
}

/* Split Screen */
.split-screen {
    display: flex;
    
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
}

/* Left Section */
.left-section {
    flex: 1;
    background-image: url(images/Hero_Background.svg);
    color: white;
    text-align: center;
   padding: 50px;
    
}

.left-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.left-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.left-section img {
    width: 65%; 
    height: auto;
    margin-top: 20px;
}

/* Right Section */
.right-section {
    flex: 1;
    background-color: white;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 20px;
    padding-top: 20px;
    overflow: hidden;
   
}


.form-card {
    margin-top: 20px;
}

.form-card input,
.form-card select,
.form-card textarea {
    border-radius: 0px;
   /* padding: 15px;*/
    margin-bottom: 20px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
    font-size: 1rem;
}
.form-card h3, .form-card p{
color: #1C2792;
}
.form-card button:hover {
    background-color: #0056b3;
}

.submit-container {
display: flex;
justify-content: center;
margin-top: 20px; 
}

.submit-container button {
padding: 12px 24px; 
font-size: 1.1rem;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease;
}

.form-card .input-group {
  display: flex;
  justify-content: space-between;
  gap: 20px; 
}

.form-card .input-group input,
.form-card .input-group select {
  width: 48%; 
  border-radius: 0;
}



@media (max-width: 768px) {
  .split-screen {
      flex-direction: column;
      align-items: center; 
  }

  .left-section {
      padding: 30px;
      text-align: center; 
  }

  .left-section h1 {
      font-size: 2.5rem; 
  }

  .left-section p {
      font-size: 1.1rem; 
  }

  .left-section img {
      width: 80%; 
      margin-top: 20px;
  }

  .right-section {
      padding: 30px;
      margin-top: 20px; 
  }

  .form-card .input-group {
      flex-direction: column; 
  }

  .form-card .input-group input,
  .form-card .input-group select {
      width: 100%; 
      border-radius: 0;
  }

  .submit-container {
      display: flex;
      justify-content: center;
      margin-top: 20px;
  }
}


@media (max-width: 480px) {
  .left-section h1 {
      font-size: 2rem; 
  }

  .left-section p {
      font-size: 1rem; 
  }

  .left-section img {
      width: 90%; 
  }
}
@media (min-width: 767px) and (max-width: 1160px) {
  .split-screen {
      flex-direction: column; 
      align-items: center; 
  }

  .left-section {
      padding: 30px; 
      text-align: center; 
  }

  .left-section h1 {
      font-size: 2.5rem; 
  }

  .left-section p {
      font-size: 1.2rem; 
  }

  .left-section img {
      width: 80%;
      margin-top: 20px;
  }

  .right-section {
      padding: 30px; 
      margin-top: 20px; 
      text-align: center; 
  }

  .form-card .input-group {
      flex-direction: column; 
  }

  .form-card .input-group input,
  .form-card .input-group select {
      width: 100%; 
      border-radius: 0;
      box-sizing: border-box;
      min-width: 0;
  }
}




.footer {
    position: relative;
    background: linear-gradient(90deg, #1B45B4, #1C2792);
    color: white;
    padding: 50px 0;
    box-shadow: 0px -5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
  }
  
  .footer-description {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .footer-social .social-icon {
    font-size: 26px;
    color: white;
    transition: color 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2); 
  }
  
  .footer-social .social-icon:hover {
    color: #2196f3; 
    background: rgba(255, 255, 255, 0.4);
  }
  
  .footer-links,
  .footer-right {
    margin-top: 20px;
  }
  
  .footer-links h4, .footer-right h4, .footer-cert-column h4 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
  }
  
  .footer-links ul,
  .footer-right ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  .footer-links ul li,
  .footer-right ul li {
    margin-bottom: 12px;
  }
  
  .footer-links ul li a,
  .footer-right ul li {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  .footer-links ul li a:hover,
  .footer-right ul li:hover {
    color: #70a9ff;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #aaa;
  }
  
  .footer-bottom hr {
    border-color: #1573FF;
    width: 90%;
    margin: 20px auto;
  }
  
  .footer-bottom p {
    margin-top: 10px;
    font-size: 14px;
  }
  /* Mobile Responsive Design */
  @media (max-width: 767px) {
    .footer .row {
      text-align: center;
    }
  
    .footer-left, .footer-links, .footer-right {
      margin-bottom: 40px;
    }
  
    .footer-logo {
      max-width: 140px;
    }
  
    .footer-description {
      font-size: 15px;
      margin-bottom: 20px;
    }
  
    .footer-social .social-icon {
      font-size: 22px;
      margin: 0 12px;
    
    }
  
    .footer-links ul li,
    .footer-right ul li {
      font-size: 14px;
    }
  
    .footer-bottom p {
      font-size: 12px;
    }
    .footer-social {
      justify-content: center; 
      display: flex;            
      gap: 15px;               
      margin-top: 20px;
    }
  }
  
  .footer-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px; /* Set the width of the shape */
    height: 150px; /* Set the height of the shape */
    background: url('images/shape_2.svg') no-repeat center center;
    background-size: cover; /* Ensures that the shape image fits correctly */
    z-index: 1; /* Ensures it's above the background image */
  }
  
  .footer-cert-column {
  margin-top: 20px;
}

.logo-box {
  width: 170px;
  height: 65px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  overflow: hidden;
}

.cert-logo {
  width: 100%;
  height: 100%;
  object-fit: cover; /* force logo to fill box equally */
}

.cert-logo-link {
  text-decoration: none;
  color: white;
}

.cert-number {
  font-size: 14px;
  margin-top: 6px;
  font-weight: 500;
  color: #fff;
}