 body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #f4f6f9;
      overflow-x: hidden;
    }

    /* Hero Section (Slider) */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 300%; /* 3 slides => 300% */
  height: 100%;
  transition: transform 1s ease-in-out;
}

.slide {
  
  width: 100%;
  
  flex-shrink: 0;
  position: relative;
  height: 100%;
  background-size: contain;
  object-fit: contain;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.slide h1 {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 3rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}


    /* Text overlay */
    .hero-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
      background: rgba(0,0,0,0.5);
      padding: 20px 30px;
      border-radius: 10px;
    }
    .hero-text h1 {
      font-size: 3rem;
      margin: 0;
    }
    .hero-text p {
      font-size: 1.5rem;
      margin-top: 10px;
    }

    /* Navigation buttons */
    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      color: #fff;
      border: none;
      font-size: 2rem;
      cursor: pointer;
      padding: 10px 15px;
      border-radius: 50%;
    }
    .prev {
      left: 20px;
    }
    .next {
      right: 20px;
    }
    .read, .readquiz, .explore-btn, .back-btn {
  display: block;
  width: fit-content;
  margin: 15px auto; /* center horizontally */
  padding: 10px 20px;
  background: #007BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  transition: background 0.3s;
}

    /* Cards Section */
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      padding: 40px;
      max-width: 1200px;
      margin: auto;
    }
    .card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: 0.3s;
    }
    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .card h3 {
      margin: 15px;
      font-size: 1.4rem;
      text-align: center;
    }
    .card p {
      margin: 0 15px 20px;
      font-size: 1rem;
      text-align: center;
 
      font-weight: 500;
      
      color: #555;
     
    }
    .card:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }
    
   .read {
  display: block;
  width: fit-content;
  margin: 15px auto;
  padding: 10px 20px;
  background: #007BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  transition: background 0.3s;
}

.read:hover {
  background: #0056b3;   /* dark blue on hover */
}

    /* Quiz Card Style - match with other cards */
.cards .card img {
    height: 150px; /* slightly bigger if needed */
    object-fit: contain;
}

.cards .card h3 {
    font-size: 1.5rem;
    text-align: center;
    margin: 15px 0 10px;
}

.cards .card p {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin: 0 15px 15px;
}

.readquiz {
  display: block;            /* block banav */
  width: fit-content;        /* content evdha width */
  margin: 15px auto;         /* horizontally center */
  padding: 10px 20px;
  background: #007BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  transition: background 0.3s;
}
.readquiz:hover {
  background: #0056b3;
}


/* Optional: smaller button on mobile */
@media (max-width: 480px) {
    .cards .card .readquiz {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

    

    /* Responsive */
    @media (max-width: 768px) {
      .hero-text h1 {
        font-size: 2rem;
      }
      .hero-text p {
        font-size: 1rem;
      }
    }

    /* Additional Styles for Cards Section Pages */
    .cards-section {
      max-width: 1200px;
      margin: 50px auto;    
      padding: 0 20px;
      text-align: center;
    }
    .cards-section h2 {
      font-size: 2.5rem;
      margin-bottom: 30px;
      color: #007bff;
    }
    .card-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }
    .card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: 0.3s;
    }
    .card:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }
    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .card-content {
      padding: 15px;
    }
    .card-content h3 {
      margin: 10px 0;
      font-size: 1.5rem;
      color: #333;
    }
    .card-content p {
      font-size: 14px;
      color: #555;
    }
    .explore-btn {
      display: flex;

      justify-content: center;
      align-items: center;
      margin: 0 70px 15px;
      padding: 10px 20px;
      background: #007BFF;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      transition: background 0.3s;
    }
    .explore-btn:hover {
      background-color: #0056b3;
    }
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #f8f9fa;
      color: #333;
    }

    /* Hero Slider */
    .hero {
      position: relative;
      width: 100%;
      height: 65vh;
      overflow: hidden;
    }

    .slides {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 1s ease-in-out;
    }

    .slide {
      width: 100%;
      flex-shrink: 0;
      height: 100%;
      position: relative;
      background-size: contain;
     
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .slide h1 {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      font-size: 3rem;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    }

    /* Slider Buttons */
    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      color: #fff;
      border: none;
      padding: 10px 15px;
      cursor: pointer;
      font-size: 18px;
      border-radius: 5px;
    }
    .prev { left: 20px; }
    .next { right: 20px; }

    /* Slider Dots */
    .dots {
      text-align: center;
      position: absolute;
      bottom: 15px;
      width: 100%;
    }
    .dots span {
      display: inline-block;
      width: 12px;
      height: 12px;
      margin: 0 5px;
      background: #bbb;
      border-radius: 50%;
      cursor: pointer;
    }
    .dots .active { background: #333; }

    /* Cards Section */
    .cards-section {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
      text-align: center;
    }

    .cards-section h2 {
      font-size: 2.5rem;
      margin-bottom: 30px;
      color: #007bff;
    }

    .card-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: 0.3s;
    }

    .card:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .card-content {
      padding: 15px;
    }

    .card-content h3 {
      margin: 10px 0;
      font-size: 1.5rem;
      color: #333;
    }

    .card-content p {
      font-size: 14px;
      color: #555;
    }

    .explore-btn {
     display: flex;

      justify-content: center;
      align-items: center;
      margin: 0 70px 15px;
      padding: 10px 20px;
      background: #007BFF;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      transition: background 0.3s;
    }
    .explore-btn:hover {
      background-color: #0056b3;
    }

    /* Details Section */
.details {
  display: none;
  padding: 40px;
  background: #f4f6f9;
  text-align: left;
}

.details-box {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

.details h2 {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}

.details-content ul {
  list-style: none;
  padding: 0;
}

.details-content ul li {
  background: #ecf0f1;
  margin-bottom: 12px;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.back-btn {
  display: block;
  width: fit-content;
  margin: 20px auto;          /* center align */
  padding: 10px 20px;
  background: #007BFF;        /* blue theme */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  font-size: 1rem;
  transition: background 0.3s;
  cursor: pointer;
}

.back-btn:hover {
  background: #0056b3;        /* darker blue on hover */
}


      /* Additional Styles for Cards Section Pages */
      .cards-section {
        max-width: 1200px;
        margin: 50px auto;
        padding: 0 20px;
        text-align: center;
      }
      .cards-section h2 {
        font-size: 2.5rem;
        margin-bottom: 30px;
        color: #007bff;
      }
      .card-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
      }
      .card {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: 0.3s;
      }
      .card:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      }
      .card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
      }
      .card-content {
        padding: 15px;
      }
      .card-content h3 {
        margin: 10px 0;
        font-size: 1.5rem;
        color: #333;
      }
      .card-content p {
        font-size: 14px;
        color: #555;
      }
      .explore-btn {
        display: inline-block;
        margin-top: 10px;
        padding: 8px 15px;
        background-color: #007bff;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        transition: background 0.3s;
      }
      .explore-btn:hover {
        background-color: #0056b3;
      }
      /* Responsive for Tablets */
@media (max-width: 768px) {
  .details-box {
    padding: 20px;
  }

  .details-box h2 {
    font-size: 22px;
  }

  .details-content ul li {
    font-size: 15px;
    padding: 10px 12px;
  }

  .back-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/* Responsive for Mobile */
@media (max-width: 480px) {
  .details {
    padding: 15px;
  }

  .details-box {
    padding: 15px;
  }

  .details-box h2 {
    font-size: 20px;
  }

  .details-content ul li {
    font-size: 14px;
    line-height: 1.4;
    padding: 8px 10px;
  }

  .back-btn {
    font-size: 13px;
    padding: 7px 14px;
  }
}
.career-header{
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
   background: linear-gradient(90deg, blue, purple, red, orange);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color:transparent;
}
.career-header h1{
    background: linear-gradient(90deg, blue, purple, red, orange);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color:transparent;
    font-size: 40px;

}

.nav-bar {
    display: flex;
    flex-direction: row;
    align-items: center;             
    justify-content: space-around;   
    width: 100%;
    height: 75px;
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(30px);
    z-index: 1000;
    padding: 0 20px;
    background-color: #f3f3f3;
}
.logo img {
    height: 100px;
    width: 200px;
    object-fit: contain;
    margin-left: 0px;
}
.nav-search {
    display: flex;
    align-items: center;
    background-color: pink;
    height: 36px;
    border-radius: 4px;
    border: none;
    width: 30%; 
    overflow: hidden;
}
.search-select {
    background-color: rgb(194, 188, 188);
    width: 60px;
    height: 100%;
    text-align: center;
    border: none;
    outline: none;
    font-size: 0.9rem;
}
.search-input {
    width: 100%;
    font-size: 1rem;
    border: none;
    outline: none;
    padding: 0 8px;
    background-color: pink;
}
.search-icon {
    width: 45px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    background-color: #febd68;
    cursor: pointer;
}
.nav-search:hover {
    border: 2px solid orange;
}
.content1 {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    text-align: center;
    
}
.content1 a {
    text-decoration: none;
    font-size: 18px;
    color: black;
    font-weight: 500;
    padding: 8px;
    transition: color 0.2s;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(90deg, blue, purple, red, orange);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.content1 li{
    list-style: none;
}
.content1 a:hover {
    color: orange;
}
.icon {
    height: 15px;
    width: 15px;
}
.space {
    line-height: 12px;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.content3 {
    position: fixed;
    top: 70px;  
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 69px;
    padding: 10px;
    background: #f3f3f3;
    height: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 999;
    align-items: center;
}
.content3 a {
    text-decoration: none;
    font-size: 17px;
    color: rgb(79, 10, 129);
    font-weight: 700;
    justify-content: space-evenly;
    display: flex;
    box-shadow: 0 2px 59px rgba(0,0,0,0.2);
    font-family: 'Times New Roman', Times, serif;
    align-items: center;
    padding-bottom: 4px;
     background: #f3f3f3;
}
.content3 a:hover {
    color: rgb(186, 91, 32);
}
/* hamburger */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 50px;
    width: 200px;
    z-index: 99999;
    background-color: rgba(255,255,255,0.8);
    box-shadow: -10px 0 10px rgb(101, 97, 97);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    backdrop-filter: blur(10px);
    display: none;  
}
.sidebar ul{
    width: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    z-index: 299;
    margin-top: 0;
    margin-left: -20%;
}
.sidebar li{
    height: 50px;
    list-style: none;
    background-color: white; 
}
.sidebar a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    color: blue;    
}
.sidebar a:hover{
    background-color: rgb(218, 175, 34);
}
.sidebar li:first-child{
    margin-right: auto;
}

.sidebar li{
    width: 100%;
}
.sidebar a{
    width: 100%;
}
.menu-btn{
    display: none;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&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&display=swap'); 
@media  (max-width: 640px) {
    .item{
        height: 80%;
        width: 100%;
    }
    .nav-bar{
        width: 100%;
        flex-wrap: wrap;
        margin: 0;
        box-sizing: border-box;
    }
    .logo img{
        height: 60px;
        width: 90px;
    }
    .hideOnMobile{
       display:none; 
    }
    .menu-btn{
        display: block;
    }
    .search-icon{
        display: none;
    }
    .search-input{
        width: 80px;
    }
    .search-select{
         width: 20px;
    }
    .nav-search{
        width: 100px;
        border: none;
    }
    .content3{
        display:none;
    }
    .list{
        width: 100%;
    }
    .list .item{
        width: 100%;
        height: 300px; 
    }
    header{
      width: 100%;
    }
    .nav-bar{
      width: 100%;
      overflow-x: hidden;
      margin-left: 0px;
      margin-right: 0px;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .search-select{
        display: none;
    }
    .hideOnMobile{
       display:none;
    }
    .menu-btn{
        display: block;
    }
    .career-header{
      margin-top: 15%;
    }
}

.footer {
    height: auto;
    width: 100%;
    border: none;
    margin-top: 40px;
    font-weight: bolder;
    font-size: 30px;
    background-color: #f3f3f3;
    list-style: none;
    border: 2px solid #f3f3f3;
    margin: auto;
}

.footerPart1 {
    height:auto;
    width: 100%;
    border: none;
    display: flex;
    flex-direction: row;
}

.list00 {
    height:auto;
    display: flex;
    justify-content: space-evenly;
    width: 350px;
    border: none;
    flex-wrap: wrap;
    list-style: none;
    flex: 1 1 200px;
}
.list00 li {
    list-style: none;
}
.list00 li a {
    position: relative;
    text-decoration: none;
    font-size: 19px;
    color: black;
    font-weight: bold;
    line-height: 40px;
}
.list00 li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: black;  
    transition: width 0.3s ease;
}
.list00 li a:hover::after {
    width: 100%;
}
.list00 .footerFont {
    color: black;
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
}

.font2 {
    font-size: 25px;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(90deg, blue, purple, red, orange);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color:transparent;
    margin-top: 20px;
    margin-bottom: 10px;
    box-sizing: border-box;
}
.footerPart2 {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    line-height: 30px;
    display: flex;
}
.footerPart2 .section2{
    padding-left: 20px;
     padding-right: 20px;
     height: auto;

}
.list2 {
    height:auto;
    display: flex;
    justify-content: space-evenly;
    width: 450px;
    border: none;
    flex-wrap: wrap;
    list-style: none;
    flex: 1 1 250px;
    line-height: 45px;
}
.list2 li {
    list-style: none;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
}
.list2 li a {
    text-decoration: none;
    color: black;
    font-size: 15px;
}
.list2 .adjust {
    padding-left: 18%;
    font-size: 25px;
}
.list2 p {
    font-size: 15px;
}
.footerPart2 .row {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.row img {
    margin-top: 20px;
}
.list2 .add {
    margin-left: 20%;
}
.footerPart2 .contact-info {
    font-size: 20px;
}
.footerPart2 .section1{
  display: flex;
  align-items: start;
  justify-content: start;
}

.footer hr {
    border: none;
    height: 3px;
    background-color: #a9a1a1;
    margin: 20px 0;
    width: 100%;
}

.footerPart3 {
    font-size: 20px;
    font-weight: bolder;
    margin-top: -5%;
    margin-left: 15%;
}
@media (min-width: 700px) and (max-width: 1024px) {
    footer{
      height:auto;
      width: 100%;
      border: none;
    }
    .footerPart1{
      height: auto;
      width: 100%;
      border:none;
    }
      .footerPart2{
      height:auto;
      width: 100%;
      border: none;
      background-color: #f3f3f3;
      margin-top: -10%;
    }
    hr{
      display: none;
    }
    .list2 .size1{
        border:none;
    }
}
.Copyright{
  color: rgb(3, 20, 77);
  font-weight: 200;
  font-size:25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2%;
  padding-bottom: none;

}
.list2 .size{
    font-size: 20px;
    line-height: 30px;
}
@media  (max-width: 640px) {
    .footerPart1{
      display: none;
    }
     .footerPart1{
      display: none;
    }
    .add{
      display: none;
    }
    .Copyright{
      font-size: 20px;
      padding-top: 30px;
      padding-bottom: 20px;
    }
    .size{
      padding-left: 20px;
      padding-right: 20px;
    }
    .footerPart2 .font2{
        font-size: 30px;
    }
    .invisible{
        display: none;
    }
    .list2 {
        line-height:40px;
    }
    .section1{
        line-height: 50px;
        font-size: 20px;
    }
    .career-header{
      margin-top: 20%;
      padding-left: 10px;
    }
    .career-header{
    width: 100%;
    height: 100px;
    }
    .career-header h1{
    font-size: 30px;

}

}
.row li a img {
  transition: transform 0.3s ease; 
}

.row li a img:hover {
  transform: scale(1.2);
}
a {
  display: flex;
  align-items: center; 
  text-decoration: none;
  color: inherit;
}

a img {
  margin-right:8px;
}

.content3 a {
     background:rgb(240, 239, 239);
}
.career-header{
 margin-top: 7%;
}
@media  (max-width: 640px) {
  .career-header{
   display: none;
  }
  .footerPart2{
    margin-left: -10%;
  }
}