html{
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;  /* Prevents horizontal scrolling */
  font-family: Arial, sans-serif;
  }
  
 /* Banner Section */
.banner09 {
    background: url('../images/rd/banner_rd.png') no-repeat center center;
    background-size: cover;
    /* background-attachment: fixed; Parallax effect */
    height: 95vh; /* Full viewport height */
    display: flex;
    align-items: center; /* Center content vertically */
    justify-content: flex-end; /* Align content to the left */
    position: relative;
    color: #fff;
    padding: 0 5%; /* Add padding for content */
  }
  
  /* Overlay for smaller devices only */
  .banner09::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  /* Content Inside Banner */
  .banner09 .content09 {
    position: relative;
    z-index: 2;
    max-width: 500px;
    bottom: -5pc;
    right: -10pc;
  }
  
  .banner09 .content09 h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fcb21c;
  }
  
  .banner09 .content09 h1 .highlight09 {
    color:#2596be;;
  }
  
  .banner09 .content09 p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #000000;
  }
  
  .banner09 .btn09 {
    display: inline-block;
    padding: 12px 30px;
    background-color:#2596be;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .banner09 .btn09:hover {
    background-color:#fcb21c;
    color: #fff;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 1000px) {
    .banner09 {
      justify-content: flex-start; /* Align content to the left */
      padding: 0 5%; /* Reduce padding */
    }
  
    .banner09 .content09 {
      
        max-width: 600px;
        margin-top: 246px;
        right: 2px;
    
    }
  }
  
  @media (max-width: 750px) {
    .banner09 {
      justify-content: flex-start;
      align-items: flex-start; /* Align content to top-left */
      padding: 10% 5%; /* Add spacing at the top */
    }
  
    .banner09::before {
      background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    }
  
    .banner09 .content09 h1 {
      font-size: 2rem;
    }
  
    .banner09 .content09 p {
      font-size: 0.95rem;
      text-align: left; /* Align text to the left */
    }
  
    .banner09 .btn09 {
      font-size: 0.9rem;
      padding: 10px 25px;
    }
  }
  
  @media (max-width: 480px) {
    .banner09 {
      justify-content: flex-start;
      align-items: flex-start; /* Align content to top-left */
      padding: 10% 5%; /* Add spacing at the top */
      margin: auto;
    }
  
    .banner09 .content09 h1 {
      font-size: 1.8rem;
    }
  
    .banner09 .content09 p {
      font-size: 0.85rem;
      text-align: left; /* Align text to the left */
      color: white;
    }
  
    .banner09 .btn09 {
      font-size: 0.85rem;
      padding: 8px 20px;
    }
  }
  
  /* Default .banner .content for larger screens */
  .banner09 .content09 {
    position: relative;
    z-index: 2;
    max-width: 600px;
  }
  
  



  .main-container-3w {
    max-width: 1600px;
    margin: auto;
    /* padding: 20px; */
  }

  .content-container-3w {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e9f5fc;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
  }

  .left-section-3w {
    flex: 1;
    margin-right: 30px;
  }

  .left-section-3w h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
  }

  .features-3w {
    margin-top: 20px;
  }

  .feature-3w {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }

  .feature-3w img {
    width: 32px;
    height: 32px;
    margin-right: 15px;
    border-radius: 5px;
  }

  .feature-3w p {
    font-size: 1rem;
    color: #555;
  }

  .right-section-3w {
    flex: 1;
    text-align: center;
  }

  .right-section-3w img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .cards-background-3w {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: -120px;
    max-width: 1200px;
  }

  .cards-container-3w {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  .card-3w {
    padding: 20px;
    flex: 1;
    max-width: 350px;
    border: solid 1px #ddd;
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .card-3w:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  .card-3w h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
  }

  .card-3w p {
    font-size: 1rem;
    color: #666;
  }

  /* Responsive Media Queries */
  @media (max-width: 1024px) {
    .content-container-3w {
      flex-direction: column;
      text-align: center;
      padding: 20px;
    }

    .left-section-3w {
      margin-right: 0;
    }

    .left-section-3w h1 {
      font-size: 2rem;
    }

    .cards-container-3w {
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }
  }

  @media (max-width: 768px) {
    .left-section-3w h1 {
      font-size: 1.8rem;
    }

    .feature-3w p {
      font-size: 0.9rem;
    }

    .cards-container-3w {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .card-3w {
      max-width: 100%;
      flex: none;
    }
  }

  @media (max-width: 480px) {
    .content-container-3w {
      padding: 15px;
    }

    .left-section-3w h1 {
      font-size: 1.5rem;
    }

    .feature-3w p {
      font-size: 0.85rem;
    }

    .right-section-3w img {
      border-radius: 5px;
    }

    .cards-background-3w {
      padding: 20px;
    }
  }



 
  .class34-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.class34-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background-color: #ffffff;
    margin-bottom: 30px;
}

.class34-hero-text {
    flex: 1;
    max-width: 600px;
    margin-right: 20px;
}

.class34-hero-text h2 {
    color: #333;
    font-size: 36px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.class34-hero-text p {
    color: #009688;;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
}

.class34-hero-text button {
    background-color:#4CAF50;
    color: white;
    border: none;
    padding: 14px 25px;
    font-size: 18px;
    border-radius: 10pc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.class34-hero-text button:hover {
    background-color: #218838;
}

.class34-hero-image {
    flex: 1;
    max-width: 500px;
    text-align: center;
}

.class34-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .class34-hero {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .class34-hero-text {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .class34-hero-text h2 {
        font-size: 28px;
    }

    .class34-hero-text p {
        font-size: 20px;
    }

    .class34-hero-text button {
        font-size: 16px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .class34-hero-text h2 {
        font-size: 24px;
    }

    .class34-hero-text p {
        font-size: 18px;
    }

    
}





.t1-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 20px; */
  align-items: center;
  background: white;
  border-radius: 12px;
  max-width: 1600px;
  width: 90%;
  margin: 20px auto;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.t1-container:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.t1-text-content {
  padding: 20px;
  margin-top: 100px;
}

.t1-text-content h1 {
  color: #333;
  font-size: 2rem;
  margin-bottom: 10px;
  animation: fadeIn 1s ease;
}

.t1-text-content p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  animation: fadeIn 1.2s ease;
}

.t1-image-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.t1-image-content img {
  width: 70%;
  max-width: 600px;
  border-radius: 10px;
  animation: scaleUp 1.2s ease;
}

@media (max-width: 768px) {
  .t1-container {
      grid-template-columns: 1fr;
      /* text-align: center; */
  }

  .t1-image-content {
      margin-top: 15px;
  }

  .t1-text-content h1 {
      font-size: 1.5rem;
  }

  .t1-text-content p {
      font-size: 0.9rem;

  }
}


















       /* Footer General Styles */
       .footer-container {
        background: linear-gradient(305deg, rgba(241, 241, 241, 1) 28%, rgba(187, 255, 252, 1) 58%, rgba(148, 233, 255, 1) 100%);
        color: #333;
        padding: 20px 40px;
        font-family: Arial, sans-serif;
    }
    
    .footer-columns {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
    }
    
    .footer-column {
        flex: 1 1 200px;
        min-width: 200px;
    }
    
    .footer-column h3 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #007BFF;
    }
    
    .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-column ul li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }
    
    .footer-column ul li i {
        margin-right: 8px;
        color: #007BFF;
    }
    
    .footer-column ul li a {
        text-decoration: none;
        color: #333;
        transition: color 0.3s ease;
    }
    
    .footer-column ul li a:hover {
        color: #007BFF;
    }
    
    .footer-column ul li a:visited {
        color: #6c757d;
    }
    
    /* Footer Bottom Styles */
    .footer-bottom {
        margin-top: 20px;
        text-align: center;
        font-size: 14px;
        border-top: 1px solid #ddd;
        padding-top: 10px;
        color: #666;
    }
    
    .footer-bottom a {
        color: #007BFF;
        text-decoration: none;
        margin: 0 5px;
    }
    
    .footer-bottom a:hover {
        text-decoration: underline;
    }
    
    /* Responsive Design */
    @media screen and (max-width: 768px) {
        .footer-columns {
            flex-direction: column;
            align-items: center;
        }
        .footer-column {
            text-align: center;
        }
    }




    .content-wrapper80 {
      display: flex;
      flex-direction: row-reverse; /* Reverse the order of the image and text */
      align-items: center;
      max-width: 1500px;
      width: 100%;
      height: 350px;
      background-color: white;
      overflow: hidden;
  }

  .image-section80 {
      flex: 1;
      height: 70%;
      position: relative; /* Enable positioning for overlay */
      box-shadow: 0 4px 8px rgb(14, 160, 136);
      background: url("../images/rd/rdvsfd.png") no-repeat center;
      background-size: cover;
      border-top-left-radius: 116px; /* Adjust to match reversed layout */
      border-bottom-left-radius: 116px; /* Adjust to match reversed layout */
  }

  .image-section80 h1 {
      position: absolute;
      top: 50%; /* Center vertically */
      left: 31%; /* Center horizontally */
      transform: translate(-50%, -50%); /* Center the text */
      color:#6B6A75;
      font-size: 25px;
      text-align: center;
      font-weight: bold;
      /* background-color: rgba(0, 0, 0, 0.5); Add a semi-transparent background */
      padding: 10px 20px;
      border-radius: 8px;
  }

  .text-section80 {
      flex: 1;
      padding: 50px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: left;
  }

  .text-section80 h180 {
      font-size: 36px;
      color: #5e2dd8;
      margin-bottom: 20px;
  }

  .text-section80 p80 {
      font-size: 16px;
      line-height: 1.6;
      color: #555;
      margin-bottom: 30px;
  }

  .buttons80 {
      display: flex;
      gap: 15px;
  }

  .button80 {
      padding: 12px 20px;
      font-size: 16px;
      border-radius: 25px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      text-align: center;
      transition: background-color 0.3s ease;
  }

  .button-primary80 {
      background-color: #2596be;
      color: white;
  }

  .button-primary80:hover {
      background-color: #3e6f81;
      color: white;
  }

  .button-secondary80 {
      background-color: #f3f3f3;
      /* color: #000000; */
      border: 1px solid #ccc;
  }

  .button-secondary80:hover {
      background-color: #e1e1e1;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .content-wrapper80 {
          flex-direction: column-reverse; /* Reverse for mobile layout */
          height: auto;
          border-radius: 0;
      }

      .image-section80 {
          height: 300px;
      }

      .text-section80 {
          padding: 30px;
      }

      .text-section80 h180 {
          font-size: 28px;
      }

      .text-section80 p80 {
          font-size: 14px;
      }

      .button80 {
          font-size: 14px;
          padding: 10px 15px;
      }
  }
  /* Responsive Design */
@media (max-width: 768px) {
.content-wrapper80 {
  flex-direction: column-reverse; /* Reverse for mobile layout */
  height: auto;
  border-radius: 0;
}

.image-section80 {
  height: 300px;
}

.image-section80 h1 {
  display: none; /* Hide the heading on tablet and mobile */
}

.text-section80 {
  padding: 30px;
}

.text-section80 h180 {
  font-size: 28px;
}

.text-section80 p80 {
  font-size: 14px;
}

.button80 {
  font-size: 14px;
  padding: 10px 15px;
}
}
 



.table-container61 {
  max-width: 1500px;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.table-title61 {
  font-size: 24px; /* Increased font size */
  font-weight: bold;
  margin-bottom: 20px;
  color: #0a0909;
}

.table-wrapper61 {
  overflow-x: auto; /* Enable horizontal scrolling */
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background-color: #00bcd457;
  color: rgb(0, 0, 0);
}

thead th {
  padding: 15px; /* Increased padding */
  text-align: center;
  font-size: 18px; /* Increased font size */
}

tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

tbody td {
  padding: 15px; /* Increased padding */
  text-align: center;
  font-size: 18px; /* Increased font size */
}

tbody tr:hover {
  background-color: #f1f1f1;
}

@media (max-width: 1500px) {
  .table-container61 {
      padding: 15px; /* Adjusted padding for smaller screens */
  }

  table {
      font-size: 16px; /* Adjusted font size for smaller screens */
  }
}





.main-container {
  max-width: 1500px;
  margin: 20px auto;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  line-height: 1.6;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}



.main-container p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.main-container a {
  color: #1a73e8;
  text-decoration: none;
}

.main-container a:hover {
  text-decoration: underline;
}

.comparison-section {
  max-width: 1000px;
  margin: 20px auto;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(19, 156, 111, 0.5);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.comparison-table th, 
.comparison-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.comparison-table th {
  background-color: #f4f4f4;
  color: #333;
  font-weight: bold;
}

.comparison-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.comparison-table tr:hover {
  background-color: #f1f1f1;
}

.comparison-table td {
  color: #555;
}





 /* Container styling */
 .fd-benefits-container {
  display: flex;
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px;
  gap: 30px;
  align-items: center;
}

/* Content section styling */
.fd-benefits-content {
  flex: 1;
}

.fd-benefits-content h3 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  text-align: left;
}

.fd-benefits-content ul {
  list-style: none;
  padding: 0;
}

.fd-benefits-content li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.fd-benefits-content li div {
  font-size: 16px;
  line-height: 1.6;
}

/* Icon styling */
.icon {
  width: 50px;
  height: 50px;
  background-color: #eaf4f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon img {
  width: 24px;
  height: 24px;
}

/* Image section styling with animation */
.fd-benefits-image {
  flex: 1;
  text-align: center;
  animation: float 2s ease-in-out infinite;
}

.fd-benefits-image img {
  max-width: 100%;
  border-radius: 10px;
}

/* Floating animation */
@keyframes float {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-10px);
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .fd-benefits-container {
      gap: 20px;
  }

  .fd-benefits-content h3 {
      font-size: 30px;
  }
}

@media (max-width: 768px) {
  .fd-benefits-container {
      flex-direction: column;
      text-align: center;
  }

  .fd-benefits-content ul {
      text-align: left;
  }
}

@media (max-width: 480px) {
  .fd-benefits-content h3 {
      font-size: 24px;
  }

  .fd-benefits-content li {
      gap: 10px;
  }

  .icon {
      width: 40px;
      height: 40px;
  }

  .icon img {
      width: 20px;
      height: 20px;
  }
}






.class-76-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: left;
  background:#f8f9fa;
  margin-top:5pc;
  margin-bottom: 5pc;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.class-76-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.class-76-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.class-76-link {
  color: #009688;
  text-decoration: none;
}

.class-76-link:hover {
  text-decoration: underline;
}

.class-76-apply-now {
  background-color: #ff9800;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.class-76-apply-now:hover {
  background-color: #e68900;
}

/* /Responsive Design */
@media (max-width: 1024px) {
  .class-76-container {
    padding: 30px;
  }

  .class-76-title {
    font-size: 1.8rem;
  }

  .class-76-description {
    font-size: 1rem;
  }

  .class-76-apply-now {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

@media (max-width: 768px) {
  .class-76-container {
    padding: 20px;
  }

  .class-76-title {
    font-size: 1.6rem;
  }

  .class-76-description {
    font-size: 1rem;
  }

  .class-76-apply-now {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

@media (max-width: 480px) {
  .class-76-container {
    padding: 16px;
  }

  .class-76-title {
    font-size: 1.4rem;
  }

  .class-76-description {
    font-size: 0.95rem;
  }

  .class-76-apply-now {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}




@import url('https://fonts.googleapis.com/css?family=Hind:300,400&display=swap');

/* Global container settings */
.container99S {
  margin: 0 auto;
  padding: 3rem;
  max-width: 1500px;
  width: 100%;
}

/* Accordion structure */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion .accordion-item {
  border-bottom: 1px solid #ddd;
  padding: 0;
  margin: 0;
}

/* Accordion button styling */
.accordion button {
  width: 100%;
  padding: 1.2em 2em;
  font-size: 1.2rem;
  color: #4a4a4a;
  background: #fff;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.accordion button:hover,
.accordion button:focus {
  color: #036fa2;
  background-color: #f4f8fb;
}

.accordion button .accordion-title {
  font-weight: 500;
  margin-right: 35px;
}

.accordion button .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 18px;
  height: 18px;
  border: 2px solid #036fa2;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

.accordion button:hover .icon {
  border-color: #036fa2;
}

.accordion button .icon::before,
.accordion button .icon::after {
  content: '';
  background-color: #036fa2;
  position: absolute;
}

.accordion button .icon::before {
  width: 12px;
  height: 2px;
  transform: rotate(45deg);
}

.accordion button .icon::after {
  width: 2px;
  height: 12px;
  transform: rotate(-45deg);
}

/* Opened state styles */
.accordion button[aria-expanded="true"] {
  color: #036fa2;
  background-color: #f0f8ff;
}

.accordion button[aria-expanded="true"] .icon {
  transform: translateY(-50%) rotate(45deg);
}

.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}

/* Accordion content */
.accordion .accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 2em;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.accordion button[aria-expanded="true"] + .accordion-content {
  max-height: 10em;
  opacity: 1;
  padding-top: 1em;
  padding-bottom: 1em;
}

.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* Responsive design */
@media (max-width: 768px) {
  .accordion button {
    padding: 1.2em 1.5em;
    font-size: 1.1rem;
  }

  .accordion button .icon {
    width: 16px;
    height: 16px;
  }

  .accordion button .accordion-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .accordion button {
    padding: 1em 1.2em;
    font-size: 1rem;
  }

  .accordion button .icon {
    width: 14px;
    height: 14px;
  }

  .accordion button .accordion-title {
    font-size: 1rem;
  }
}

