.top-section {
  padding: 30px 20px;
  align-items: center;
}

.contents {
  display: flex; 
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
}

/* Apply this only for desktops/laptops */
@media (min-width: 1024px) {
  .contents {
    padding-top: 12%;
    padding-bottom: 10%;
    height: auto;
  }
}

.contents h1 {
  font-size: 32px;
  font-weight: bold;
  color: #1323b2;
  margin-bottom: 20px;
  text-align: center;
}

.contents p {
  font-size: 16px;
  color: #1d1d1d;
  margin-bottom: 30px;
  text-align: center;
}

/* Login Card */
.login-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.dont-have-account {
  color: #1323b2;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.dont-have-account:hover {
  color: #000;
  font-weight: 600;
}

.button-container {
  display: flex;
  align-items: center; /* Aligns items vertically in the center */
  justify-content: flex-start; /* Aligns items to the left */
  gap: 10px; /* Space between buttons */
}

.login-button {
  background-color: #1323b2;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 17px;
  cursor: pointer;
}

.login-button:hover {
  font-weight: bold;
}

.resend-button {
  background-color: #1323b2;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 17px;
  cursor: pointer;
  margin-left: 40%;
}

.resend-button:hover {
  font-weight: bold;
}

.resend-button.disabled, .resend-button:disabled {
  opacity: 0.65;
}

.google-login-button {
  display: inline-flex;
  align-items: center;
  height: auto;
  padding: 10px;
  background-color: #1323b2;
  border-radius: 5px;
  border: 1px solid #dcdcdc;
}

.google-login-button {
  font-weight: bold;
}

.g_id_signin {
  margin: 0;
}



.resend-button {
  background-color: #1323b2;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 17px;
  cursor: pointer;
  right: 20px;
}

.resend-button:hover {
  font-weight: bold;
}

.benefits-section {
  background-color: #ebf6fe;
  padding: 30px 20px;
  text-align: center;
}



.benefits-title {
  font-size: 28px;
  color: #002e8a;
  font-weight: bold;
  margin-bottom: 10px;
}

.benefits-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.benefits-grid {
  display: grid;
  gap: 25px 0px;
}

.benefit-card {
  background-color: #fff;
  padding: 40px 20px;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  font-size: 40px;
  color: #0036ff;
  margin-bottom: 15px;
}

.benefit-heading {
  font-size: 20px;
  font-weight: bold;
  color: #002e8a;
  margin-bottom: 10px;
}

.benefit-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.faq-section {
  padding: 30px 20px;
  background-color: #fff;
  text-align: center;
}

.faq-title {
  font-size: 28px;
  font-weight: bold;
  color: #002e8a;
  margin-bottom: 30px;
}

.faq-item {
  background-color: #ebf6fe;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 15px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #002e8a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f0f8ff;
}

.faq-icon {
  font-size: 20px;
  font-weight: bold;
  color: #1323b2;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 15px 30px;
  background-color: #f9f9f9;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  text-align: left;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.icon-slider-section {
  padding: 40px 20px;
  background-color: #ebf6fe;
  text-align: center;
  color: #1323b2;
}

.slider-title {
  font-size: 28px;
  font-weight: bold;
  color: #1323b2;
  margin-bottom: 20px;
}

.icon-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
  position: relative;
  align-items: center;
  padding: 10px;
}

.icon-slide {
  min-width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #1323b2;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-slider {
  display: flex;
  gap: 20px;
  overflow-x: scroll;
  scroll-behavior: smooth; /* Smooth scrolling */
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
}

.icon-slider::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari, and Edge */
}
.icon-slide img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.icon-slide:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Quick Response Section */
.quick-response {
  background-color: #fff; /* Light blue background */
  padding: 50px 20px;
  text-align: center;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.small-heading {
  font-size: 18px;
  color: #1323b2;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.main-heading {
  font-size: 32px;
  font-weight: bold;
  color: #1323b2;
  margin-bottom: 20px;
}

.description {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #1323b2;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  font-weight: bold;
}

/* Stats Section */
.stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap; /* Makes stats responsive */
}

.stat {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 250px;
  max-width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.icon {
  font-size: 40px;
  color: #0036ff;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 24px;
  font-weight: bold;
  color: #1c1c1c;
  margin-bottom: 5px;
}

.stat-text {
  font-size: 14px;
  color: #555;
}

.blogs-saction {
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.blog-list {
    gap: 20px 0;
    justify-content: center;
}

.blog-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 100%;
    min-height: 250px;  
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
}


.blog-item .blog-title {
    font-size: 24px;
    color: #002e8a;
    margin-bottom: 10px;
}

.blog-item .blog-content {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.blog-item .toggle-desc {
    display: inline-block;
    font-size: 14px;
    color: #002e8a;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #002e8a;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.blog-item .toggle-desc:hover {
    background: #002e8a;
    color: #fff;
}

.slider-container {
    max-width: 1000px;
    margin: 20px;
    overflow: hidden;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 30px 50px;
    text-align: center;
    color: #333;
    display: flex; /* Use flexbox for alignment */
    flex-direction: column; /* Align content vertically */
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    min-height: 200px; /* Set a fixed height for consistent layout */
}

.slide h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1323b2;
}

.slide p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #7f8c8d;
    margin: 0; /* Remove default margin */
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.control-btn {
    background-color: #1323b2;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px; /* Increased size */
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Added shadow */
    font-size: 1.4rem; /* Slightly bigger icon */
    transition: all 0.3s ease;
    margin: 5px;
}

.control-btn:hover {
    background-color: #1323b2; /* Changed hover color */
    transform: scale(1.1); /* Added scale effect */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}


.slider-nav {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.nav-dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav-dot.active {
    background-color: #2c3e50;
}



























