* {
    margin: 0;
    background: transparent;
    padding: 0;
    height: auto;
    width: auto;
    box-sizing: border-box;
    border: none;
    /* font-family: Arial, Helvetica, sans-serif; */
   }
  
  nav{
    display: flex;
    width: 100%;
    background: white;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px solid black;
    height: 50px;
    padding-left: 5%;
    padding-right: 5%;
  }
nav .logo{
    color: black;
    font-size: 24px;
    font-family: 'arima madurai';
    font-weight: bold;
    margin-top: 0.5px;
    font-weight: bold;
}
  
  nav ul li a {
    margin: 0;
    padding: 0;
    margin-left: 10px;
    margin-right: 10px;
  }
  
  nav ul li a.active {
    font-weight: 500;
  color: #1155cc;
  }
  
  nav ul li a:hover {
    color: #1c4587;
    transition: 0s;
  }
  
  a.logo{
    text-decoration: none;
    margin-left: 10px;
    margin-right: 10px;
  }
  
  nav ul{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    background: white;
  }
  
  nav ul li a{
    color: black;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    align-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    /* padding: 40px 15px 15px; */
    border-radius: 5px;
    letter-spacing: 1px;
    /* transition: all 0.3s ease; */
    background: white;
    font-family: Arial, Helvetica, sans-serif; 
  }
  nav .menu-btn i{
    color: black;
    font-size: 18px;
    cursor: pointer;
    display: none;
  /*     padding-top: 3px; */
  }
  input[type="checkbox"]{
    display: none;
  }
  
  
    nav ul li a {
      color: black;
      background: white;
      }
  
  
  @media (max-width: 1000px){
    nav{
      padding: 0 30px 0 50px;
      background: white;
    }
  
    tr th{
      background: white;
    }
  
  }
  @media (max-width: 920px) {
    nav .menu-btn i{
      display: block;
    }
    #click:checked ~ .menu-btn i:before{
      content: "\f00d";
    }
    nav ul {
      position: fixed;
      top: 40px; /* Adjust this value as needed */
      left: -100%;
      background: white;
      height: calc(100vh - 50px); /* Adjust this value based on your header height */
      width: 100%;
      text-align: center;
      display: block;
      transition: 0ms;
    }
  
    #click:checked ~ ul{
      left: 0;
      height: 100vh;
      min-height: 100vh;
      position: absolute;
    }
  
  
  
    
    nav ul li{
      width: 100%;
      margin: 30px 0;
    }
    nav ul li a{
      width: 100%;
      margin-left: -100%;
      display: block;
      font-size: 20px;
      transition: 0.6s cubic-bezier(0.68, 0.55, 0.265, 1.55);
      background: white;
    }
    #click:checked ~ ul li a{
      margin-left: 0px;
    }
      nav ul li a {
      color: black;
      background: white;
      }
  
      nav ul li a.active{
        background: white;
  color: #1155cc;
          font-weight: bold;
          border: white;
          background: white;
      }
  
      nav .logo {
      font-size: 20px;
      font-weight: bold;
      padding-top: 1.5px;
      margin-left: -3px;
      background: white;
    }
    nav{
      padding-left: 20px;
      padding-right: 20px;
      padding-top: 0;
      padding-bottom: 0;
      height: 40px;
      position: absolute;
      background: white;
    }
  
    tr th{
      background: white;
    }
  
    nav {
      position: fixed;
      top: 0;
      background-color: white; /* Set the background color of the navigation bar */
      z-index: 1000; /* Ensure navigation bar stays on top */
    }
    
    /* Adjust padding for the content to prevent it from being hidden behind the navigation bar */
    .content-wrapper {
      padding-top: 60px; /* Adjust based on the height of the navigation bar */
    }
  
  }
  .content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: -1;
    width: 100%;
    padding: 0 30px;
    color: #1b1b1b;
  }
  .content div{
    font-size: 40px;
    font-weight: 700;
  }
  
  
  
  /* 
  End of Navigation Bar */
  
  
  /* below item is related to footer */
  html {
    position: relative;
    min-height: 100%;
  }
  
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Set a minimum height of the body to fill the viewport */
    margin: 0;
    padding: 0;
  }
  .footer {
  justify-content: center;
  position: absolute;
  margin-top: 30px;
  top: 100%;
  width: 100%;
  color: #000;
  text-align: left;
  padding-top: 40px;
  display: flex;
  background-color: white;
  flex-wrap: wrap;
  border-top: 1px solid black;
  column-gap: 50px;
  background: #f8f8f8;
}

.copyright {
  text-align: center;
  background-color: #f8f8f8;
  color: #333;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  padding-bottom: 20px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
  width: 86%;
  margin-top: 10px;
}

@media (max-width: 600px) {
  .copyright {
      font-size: 12px;
      padding-top: 10px;
      padding-bottom: 15px;
  }
}
  
  
  .box1, .box2, .box3{
    margin-bottom: 15px;
  }
  
  .box1{
    width: 28.7%;
  }
  
  .box2{
    width: 25.3%;
  }
  
  .box3{
    width: 26.4%;
  }
  
  
  
  .footercontent{
    width: fit-content;
  }
  
  .footerheading{
    width: fit-content;
  
  }
  
  @media only screen and (max-width: 900px) {
  .footer {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    position: static;
    margin-top: auto;
    justify-content: center;
    border-top: 1px solid black;
      align-content: center;
  }
    html {
        position: relative;
        min-height: 100%;
    }
  
    body {
        display: flex;
        flex-direction: column;
        min-height: 100vh; /* Set a minimum height of the body to fill the viewport */
        margin: 0;
        padding: 0;
    }
      
    .icon-container {
      text-align: left; /* Center align the icons for mobile view */
  
    }
    p.footerheading {
        font-size: 16px;
        margin-bottom: 4px;
    }
    p.footercontent {
        font-size: 14px;
        margin-top: 4px;
    }
    a.icon-link{
      font-size: 2rem;
    }
    a.icon-link2{
      font-size: 2rem;
    }
        a.icon-link3{
      font-size: 2rem;
    }
  
    .box1{
      width: 90%;
    }
    
    .box2{
      width: 90%;
    }
    
    .box3{
      width: 90%;
    }
  }
  
  .footerheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    justify-content: left;
    color: black;
    line-height: normal;
    margin-bottom: 8px;
    }
     
  .footercontent {
    font-family: 'inter', sans-serif;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 400;
    text-align: left;
    color: black;
   }
  
   .icon-link, .icon-link2, .icon-link3 {
    font-size: 1rem;
    }
   
  .icon-link, .icon-link2, .icon-link3 {
    /* margin: 5px; */
    color: black;
    text-decoration: none;
    font-size: 2.3rem;
   }

   .icon-link{
     color: #007bff;
   }
     .icon-link2{
      color: green;
   }
        .icon-link3{
      color: black;
      margin-left: -20%;
   }
   
  /* .icon-link:hover {
    color: #007bff;
   }
  
  .icon-link2:hover{
    color: green;
  }    */
   
  .content-wrapper { flex: 1; padding: 0 30px; } 
  
.icon-container{
  text-align: left;
  margin-top: 7px;
  display: flex;
  column-gap: 10px;
  padding-left: 2px;
}
  /*end of header and footer*/
  .hidden {
    display: none;
    }

    .bodybox{
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
        /* max-width:7 00px; */
        margin-bottom: 30px;
    }

    .bodybox1{
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      /* max-width:7 00px; */
      margin-bottom: 30px;
  }

    .bodycontainer{
      width: 100%;
        padding: 40px;
        font-family: 'Inter';
        padding-top: 30px;
        border: 1px solid black;
        margin-top: 50px;
        padding-top: 40px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
        margin-left: 7%;
        margin-right: 7%;
    }

    body .bodycontainer p {
        font-family: 'Inter';
        font-size: 16px;
    }

    h1{
        font-family: 'Inter';
        padding-bottom: 10px;
        margin-bottom: 30px;
        font-size: 25px;
        border-bottom: 2px solid #1c4587;

    }

    h2{
      font-size: 18px;
      margin-bottom: 5px;
    }

    h3{
      font-size: 16px;
      margin-bottom: 5px;
    }

    .jdapplybutton {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1155cc;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    font-size: 16px;
    }


    @media only screen and (max-width: 768px){
    body .bodycontainer p{
        font-size: 14px;
    }
    h1{
        font-size: 18px;
        font-family: Arial, Helvetica, sans-serif;
        padding-bottom: 5px;
        margin-bottom: 18px;
        border-bottom: 2px solid #1c4587;
        margin-top: 20px;
    }

    h2{
      font-size: 16px;
      margin-bottom: 5px;
    }

    h3{
      font-size: 14px;
      margin-bottom: 5px;
    }
    .bodycontainer{
        margin-left: 2%;
        margin-right: 2%;
        margin-bottom: 2%;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 15px;
        border: #fff;
        margin-top: 0;
        box-shadow: none;
    }
    .jdapplybutton {
    display: inline-block;
    padding: 10px 15px;
    background-color: #1155cc;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    font-size: 14px;
    }
    }



  .bodybox1 li{margin-left: 18px;
    font-size: 16px;
    margin-bottom: 5px;
  }

@media only screen and (max-width: 768px){
.bodybox li{
  font-size: 14px
    }
    .bodybox1 li{
      font-size: 14px
        }
}



      
      
@media print {
    nav, .footer, .share, .jdapplybutton {
      display: none;
    }
    
    .bodybox {
      margin: 0; /* Remove margin */
      padding: 0; /* Remove padding */
      width: 100%; /* Set width to 100% */
      max-width: none; /* Remove max-width restriction */
      border: none;
    }
    .bodybox1 {
      margin: 0; /* Remove margin */
      padding: 0; /* Remove padding */
      width: 100%; /* Set width to 100% */
      max-width: none; /* Remove max-width restriction */
      border: none;
    }
    
    .bodycontainer {
      max-width: none; /* Remove max-width restriction */
      margin: 0; /* Center the content horizontally */
      padding: 0;
      border: none;
    }
  }



  @media only screen and (max-width: 768px){

    .share{
      text-decoration: none;
      align-content: right;
      justify-content: center;
      align-items: right;
      text-align: left;
    }

    #whatsappIcon {
      background-color: green;
      color: white;
      padding-left: 5px;
      padding-right: 5px;
      font-size: 13px;
      padding-left: 5px;
      margin-left: 5px;
      margin-right: 5px;
      padding-top: 3px;
      padding-bottom: 2px;
      border-radius: 2px;
    }
    
    #copyLinkIcon{
      background: #FCB5AC;
      color: black;
      padding-left: 5px;
      padding-right: 5px;
      font-size: 13px;
      padding-top: 3px;
      padding-bottom: 2px;
      border-radius: 2px;
    }

  }

  @media only screen and (min-width: 768px){
.share{
  text-decoration: none;
  align-content: right;
  justify-content: center;
  align-items: right;
  text-align: right;
  margin-top: -41px;
}

#whatsappIcon {
  background-color: green;
  color: white;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 13px;
  padding-left: 5px;
  margin-left: 5px;
  margin-right: 5px;
  padding-top: 3px;
  padding-bottom: 2px;
  border-radius: 2px;
}

#copyLinkIcon{
  background: #FCB5AC;
  color: black;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 13px;
  padding-top: 3px;
  padding-bottom: 2px;
  border-radius: 2px;
}
}

@media only screen and (min-width: 768px) {

    .bodybox li{
    margin-left: 18px;
    font-size: 16px;
    margin-bottom: 8px;
    margin-top: 4px;
    line-height: 1.4;
  }


.bodybox p{
  line-height: 1.5;
}

.bodybox1 li{
    margin-left: 18px;
    font-size: 16px;
margin-bottom: 8px;
    margin-top: 4px;
              line-height: 1.4;
  }


.bodybox1 p{
  line-height: 1.5;
}


.note-div {
  background-color: #E7F2F8; /* White background for the note */
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Soft shadow for a subtle 3D effect */
  margin-bottom: 20px; /* Space between the note and the job description */
  width: 361px;
  margin-top: 20px;
}

.note-div h2{
  margin-bottom: 15px;
}

.notification-div {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.whatsapp-button, .linkedin-button {
  display: block;
  width: 300px; /* Adaptive width */
  padding: 12px;
  margin: 10px 0; /* Vertical spacing */
  color: #fff;
  text-decoration: none;
  border-radius: 20px; /* Rounded corners */
  text-align: center;
  font-size: 16px;
}

.whatsapp-button {
  background-color: #25D366; /* WhatsApp green */
}

.linkedin-button {
  background-color: #0077b5; /* LinkedIn blue */
}
}

@media only screen and (max-width: 768px) {
  .note-div {
    background-color: #E7F2F8; /* White background for the note */
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Soft shadow for a subtle 3D effect */

    margin-top: 20px;
  }

  .note-div h2{
    margin-bottom: 15px;
  }
  
  .notification-div {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .whatsapp-button, .linkedin-button {
    display: block;
    width: 300px; /* Adaptive width */
    padding: 12px;
    margin: 10px 0; /* Vertical spacing */
    color: #fff;
    text-decoration: none;
    border-radius: 20px; /* Rounded corners */
    text-align: center;
    font-size: 14px;
  }
  
  .whatsapp-button {
    background-color: #25D366; /* WhatsApp green */
  }
  
  .linkedin-button {
    background-color: #0077b5; /* LinkedIn blue */
  }
  
}

.bodybox1 {
  display: none;
}




 .bodybox li{
    margin-left: 18px;
    margin-bottom: 8px;
    margin-top: 4px;
    line-height: 1.4;
  }


.bodybox p{
  line-height: 1.5;
}

.bodybox1 li{
    margin-left: 18px;

margin-bottom: 8px;
    margin-top: 4px;
              line-height: 1.4;
  }


.bodybox1 p{
  line-height: 1.5;
}


/* css related to cursol */
/* ===== Featured Opportunities Slider (fs-) ===== */
/* ===== Featured Opportunities Slider (fs-) ===== */
/* ===== Featured Opportunities Slider (fs-) ===== */
:root {
  --fs-primary: #104131;
  --fs-highlight: #1c4587;
}

/* Slide animations */
/* Slide animations */
@keyframes fs-bump-left {
  0%   { transform: translateX(0); }
  40%  { transform: translateX(-8px); }
  100% { transform: translateX(0); }
}

@keyframes fs-bump-right {
  0%   { transform: translateX(0); }
  40%  { transform: translateX(8px); }
  100% { transform: translateX(0); }
}

.fs-slide-left {
  animation: fs-bump-left 0.3s ease-out;
}

.fs-slide-right {
  animation: fs-bump-right 0.3s ease-out;
}

.fs-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-family: 'Inter', sans-serif;
  color: #000;
  margin-left: 7%;
  margin-right: 7%;
  /* border: 1px solid black; */
  background: #fff;
  /* border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); */
  /* margin-top: 40px; */
  /* margin-bottom: 30px; */
}
.fs-heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.fs-subtitle {
  color: #555;
  margin-bottom: 1.5rem;
}

.fs-wrapper {
  position: relative;
}
.fs-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  cursor: grab;
  margin-left: 7%;
  margin-right: 7%;
}
.fs-slider:active {
  cursor: grabbing;
}
.fs-slider::-webkit-scrollbar {
  display: none;
}

.fs-card {
  flex: 0 0 260px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  scroll-snap-align: start;
  user-select: none;
  position: relative;
  transition: transform 0.2s ease;
      border: 1px solid #D8D8D8;
}
.fs-card:hover .fs-title {
  color: var(--fs-highlight);
}
.fs-card:hover .fs-open {
  fill: var(--fs-highlight);
}

.fs-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.fs-content {
  padding: 1rem;
}
.fs-tags {
  font-size: 0.75rem;
  color: var(--fs-primary);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.fs-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  /* height: 48px; */
  overflow: hidden;
  transition: color 0.2s;
}
.fs-meta {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  gap: 0.25rem;
  color: #555;
}
.fs-meta svg {
  width: 14px;
  height: 14px;
}

.fs-open {
display: none;
}

.fs-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 2;
}
.fs-nav-btn svg {
  width: 22px;
  height: 22px;
}
.fs-nav-btn svg path {
  fill: #000;
}
.fs-nav-btn:hover {
  background: var(--fs-highlight);
}
.fs-nav-btn:hover svg path {
  fill: #fff;
}
.fs-prev {
  left: 8px;
    background: #f2f2f2;
}
.fs-next {
  right: 8px;
    background: #f2f2f2;
}

@media (max-width: 900px) {
  .fs-card {
    flex: 0 0 80%;
    font-size: 0.85rem;
  }

  .fs-section {
    padding: 0;
    margin-bottom: 40px;
    margin-top: 2%;
    margin-left: 2%;
    margin-right: 2%;
    padding-left: 5%;
    padding-right: 5%;
    box-shadow: none;
    border: none;
  }

  .fs-heading {
    font-size: 1.2rem;
  }

  .fs-subtitle {
    font-size: 0.8rem;
  }

  .fs-slider {
    transition: margin-left 1s ease;
  }

  .fs-card img {
    height: 120px;
  }

  .fs-content {
    padding: 0.75rem;
  }

  .fs-title {
    font-size: 0.9rem;
    /* height: 40px; */
  }

  .fs-tags,
  .fs-meta {
    font-size: 0.58rem;
  }

  .fs-meta svg {
    width: 12px;
    height: 12px;
  }

  .fsopen {
  display: none;
  }

  .fs-nav-btn {
    width: 36px;
    height: 36px;
  }

  .fs-nav-btn svg {
    width: 18px;
    height: 18px;
  }

  .fs-prev {
    left: -15px;
      background: #f2f2f2;
  }

  .fs-next {
    right: -15px;
      background: #f2f2f2;
  }
}


/* ===== Internships Slider (is-) ===== */

/* Re‑use the same keyframes from fs- section.
   If you removed them, copy the fs-bump-left/right @keyframes here. */

.is-section{ 
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-family: 'Inter', sans-serif;
  color: #000;
  margin-left: 7%;
  margin-right: 7%;
  /* border: 1px solid black;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  margin-bottom: 30px; */
}

.is-heading      { font-size:2rem; font-weight:600; margin:0 0 .25rem; }
.is-subtitle     { color:#555; margin:0 0 1.5rem; }

.is-wrapper      { position:relative; }

/* track */
.is-slider{
  display:flex; gap:1rem; overflow-x:auto; padding-bottom:.5rem;
  scroll-behavior:smooth; scroll-snap-type:x mandatory; cursor:grab;
  margin-left:7%; margin-right:7%;                   /* desktop 7 % */
  transition:margin-left .3s ease;
}
.is-slider:active{ cursor:grabbing; }
.is-slider::-webkit-scrollbar{ display:none; }

/* card */
.is-card{
  flex:0 0 260px; background:#fff; border-radius:8px;
  box-shadow:0 1px 4px rgba(0,0,0,.1);
  text-decoration:none; color:inherit; scroll-snap-align:start;
  position:relative; user-select:none;
      border: 1px solid #D8D8D8;
}
.is-card:hover .is-title{ color:var(--fs-highlight); }
.is-card:hover .is-open { fill:var(--fs-highlight); }

.is-card img{ width:100%; height:150px; object-fit:cover; border-radius:8px 8px 0 0; }

.is-content { padding:1rem; }
.is-tags    { font-size:.75rem; color:var(--fs-primary); margin-bottom:.25rem;
              text-transform:uppercase; letter-spacing:.02em; }
.is-title   { font-size:1rem; font-weight:600; margin-bottom:.75rem;
               overflow:hidden; transition:color .2s; }
.is-meta    { display:flex; align-items:center; font-size:.75rem; gap:.25rem; color:#555; }
.is-meta svg{ width:14px; height:14px; }

.is-open{
  display: none;
}

/* nav buttons */
.is-nav-btn{
  position:absolute; top:50%; transform:translateY(-50%);
  border:none; background:#fff; border-radius:50%; width:44px; height:44px;
  box-shadow:0 2px 6px rgba(0,0,0,.15); cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s;
  z-index:2;
}
.is-nav-btn svg{ width:22px; height:22px; }
.is-nav-btn svg path{ fill:#000; }
.is-nav-btn:hover{ background:var(--fs-highlight); }
.is-nav-btn:hover svg path{ fill:#fff; }
.is-prev{ left:8px; background: #f2f2f2;}
.is-next{ right:8px; background: #f2f2f2;}

/* slide‑nudge classes (reuse same keyframes) */
.is-slide-left { animation: fs-bump-left .3s ease-out; }
.is-slide-right{ animation: fs-bump-right .3s ease-out; }

/* 📱 mobile */
@media(max-width:900px){
  .is-card      { flex:0 0 80%; font-size:.85rem; }

  .is-section {
        padding: 0;
    margin-bottom: 40px;
    margin-top: 2%;
    margin-left: 2%;
    margin-right: 2%;
    padding-left: 5%;
    padding-right: 5%;
    box-shadow: none;
    border: none;
  }

  .is-heading   { font-size:1.2rem; }
  .is-subtitle  { font-size:.8rem; }

  .is-slider    { margin-left:30px; margin-right:0; }   /* mobile 30 px */
  .is-card img  { height:120px; }
  .is-content   { padding:.75rem; }
  .is-title     { font-size:.9rem; }
  .is-tags,.is-meta{ font-size:.58rem; }
  .is-meta svg  { width:12px; height:12px; }
  .is-open      { display: none; }

  .is-nav-btn   { width:36px; height:36px; }
  .is-nav-btn svg{ width:18px; height:18px; }
  .is-prev      { left:-15px; background: #f2f2f2;}
  .is-next      { right:-15px; background: #f2f2f2;}
}

/* ===== Jobs Slider (jb-) ===== */

/* re‑uses fs-bump-left / fs-bump-right keyframes already in your file */

.jb-section {
   padding-top: 2rem;
  padding-bottom: 2rem;
  font-family: 'Inter', sans-serif;
  color: #000;
  margin-left: 7%;
  margin-right: 7%;
  /* border: 1px solid black;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  margin-top: 30px;*/
  /* margin-bottom: 30px;  */
}

.jb-heading      { font-size:2rem; font-weight:600; margin:0 0 .25rem; }
.jb-subtitle     { color:#555; margin:0 0 1.5rem; }

.jb-wrapper      { position:relative; }

/* track */
.jb-slider{
  display:flex; gap:1rem; overflow-x:auto; padding-bottom:.5rem;
  scroll-behavior:smooth; scroll-snap-type:x mandatory; cursor:grab;
  margin-left:7%; margin-right:7%;                   /* desktop 7 % */
  transition:margin-left .3s ease;
}
.jb-slider:active{ cursor:grabbing; }
.jb-slider::-webkit-scrollbar{ display:none; }

/* card */
.jb-card{
  flex:0 0 260px; background:#fff; border-radius:8px;
  box-shadow:0 1px 4px rgba(0,0,0,.1);
  text-decoration:none; color:inherit; scroll-snap-align:start;
  position:relative; user-select:none;
      border: 1px solid #D8D8D8;
}
.jb-card:hover .jb-title{ color:var(--fs-highlight); }
.jb-card:hover .jb-open { fill:var(--fs-highlight); }

.jb-card img{ width:100%; height:150px; object-fit:cover; border-radius:8px 8px 0 0; }

.jb-content { padding:1rem; }
.jb-tags    { font-size:.75rem; color:var(--fs-primary); margin-bottom:.25rem;
              text-transform:uppercase; letter-spacing:.02em; }
.jb-title   { font-size:1rem; font-weight:600; margin-bottom:.75rem;
               overflow:hidden; transition:color .2s; }
.jb-meta    { display:flex; align-items:center; font-size:.75rem; gap:.25rem; color:#555; }
.jb-meta svg{ width:14px; height:14px; }

.jb-open{
  display: none;
}

/* nav buttons */
.jb-nav-btn{
  position:absolute; top:50%; transform:translateY(-50%);
  border:none; background:#fff; border-radius:50%; width:44px; height:44px;
  box-shadow:0 2px 6px rgba(0,0,0,.15); cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s;
  z-index:2;
}
.jb-nav-btn svg{ width:22px; height:22px; }
.jb-nav-btn svg path{ fill:#000; }
.jb-nav-btn:hover{ background:var(--fs-highlight); }
.jb-nav-btn:hover svg path{ fill:#fff; }
.jb-prev{ left:8px; background: #f2f2f2;}
.jb-next{ right:8px; background: #f2f2f2;}

/* slide‑nudge */
.jb-slide-left { animation:fs-bump-left .3s ease-out; }
.jb-slide-right{ animation:fs-bump-right .3s ease-out; }

/* 📱 mobile */
@media(max-width:900px){
  .jb-card      { flex:0 0 80%; font-size:.85rem; }
  
  .jb-section {
    padding: 0;
    margin-bottom: 40px;
    margin-top: 2%;
    margin-left: 2%;
    margin-right: 2%;
    padding-left: 5%;
    padding-right: 5%;
    box-shadow: none;
    border: none;
  }
  
  .jb-heading   { font-size:1.2rem; }
  .jb-subtitle  { font-size:.8rem; }

  .jb-slider    { margin-left:30px; margin-right:0; }
  .jb-card img  { height:120px; }
  .jb-content   { padding:.75rem; }
  .jb-title     { font-size:.9rem; }
  .jb-tags,.jb-meta{ font-size:.58rem; }
  .jb-meta svg  { width:12px; height:12px; }
  .jb-open      { display: none; }

  .jb-nav-btn   { width:36px; height:36px; }
  .jb-nav-btn svg{ width:18px; height:18px; }
  .jb-prev      { left:-15px; background: #f2f2f2;}
  .jb-next      { right:-15px; background: #f2f2f2;}
}

/* ===== Competitions Slider (cp-) ===== */

/* Reuses keyframes fs-bump-left and fs-bump-right */

.cp-section {
    padding-top: 2rem;
  padding-bottom: 2rem;
  font-family: 'Inter', sans-serif;
  color: #000;
  margin-left: 7%;
  margin-right: 7%;
}

.cp-heading      { font-size: 2rem; font-weight: 600; margin: 0 0 .25rem; }
.cp-subtitle     { color: #555; margin: 0 0 1.5rem; }

.cp-wrapper      { position: relative; }

.cp-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: .5rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  cursor: grab;
  margin-left: 7%;
  margin-right: 7%;
  transition: margin-left .3s ease;
}
.cp-slider:active { cursor: grabbing; }
.cp-slider::-webkit-scrollbar { display: none; }

.cp-card {
  flex: 0 0 260px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  scroll-snap-align: start;
  position: relative;
  user-select: none;
      border: 1px solid #D8D8D8;
}
.cp-card:hover .cp-title { color: var(--fs-highlight); }
.cp-card:hover .cp-open  { fill: var(--fs-highlight); }

.cp-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.cp-content { padding: 1rem; }
.cp-tags {
  font-size: .75rem;
  color: var(--fs-primary);
  margin-bottom: .25rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.cp-title {
  font-size: 1rem;
  font-weight: 600;
/*   margin-bottom: .75rem; */
  
  overflow: hidden;
  transition: color .2s;
}
.cp-meta {
  display: flex;
  align-items: center;
  font-size: .75rem;
  gap: .25rem;
  color: #555;
}
.cp-meta svg {
  width: 14px;
  height: 14px;
}

.cp-open {
 display: none;
}

.cp-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 2;
}
.cp-nav-btn svg { width: 22px; height: 22px; }
.cp-nav-btn svg path { fill: #000; }
.cp-nav-btn:hover { background: var(--fs-highlight); }
.cp-nav-btn:hover svg path { fill: #fff; }
.cp-prev { left: 8px; background: #f2f2f2;}
.cp-next { right: 8px; background: #f2f2f2;}

.cp-slide-left  { animation: fs-bump-left .3s ease-out; }
.cp-slide-right { animation: fs-bump-right .3s ease-out; }

@media (max-width: 900px) {
  .cp-card      { flex: 0 0 80%; font-size: .85rem; }

  .cp-section {
    padding: 0;
    margin-bottom: 40px;
    margin-top: 2%;
    margin-left: 2%;
    margin-right: 2%;
    padding-left: 5%;
    padding-right: 5%;
    box-shadow: none;
    border: none;
  }

  .cp-heading   { font-size: 1.2rem; }
  .cp-subtitle  { font-size: .8rem; }

  .cp-slider    { margin-left: 30px; margin-right: 0; }
  .cp-card img  { height: 120px; }
  .cp-content   { padding: .75rem; }
  .cp-title     { font-size: .9rem; }
  .cp-tags, .cp-meta { font-size: .58rem; }
  .cp-meta svg  { width: 12px; height: 12px; }
  .cp-open      { display: none; }

  .cp-nav-btn   { width: 36px; height: 36px; }
  .cp-nav-btn svg { width: 18px; height: 18px; }
  .cp-prev      { left: -15px; background: #f2f2f2;}
  .cp-next      { right: -15px; background: #f2f2f2;}
}


/* ===== Competitions Banner & Patterns (cp-) ===== */

.cp-banner {
  width: 100%;
  height: 7px;
  border-radius: 8px 8px 0 0;
  background-size: cover;
  position: relative;
}

/* Unique, formal patterns for competitions */
 .cp-pattern-zigzag {
  background-image:
    repeating-linear-gradient(135deg, #ffffff22 0 10px, transparent 10px 20px),
    linear-gradient(to right, #fdcb6e, #e17055);
}
.cp-pattern-dots {
  background-image:
    radial-gradient(#ffffff26 1px, transparent 1px),
    linear-gradient(to right, #55efc4, #00b894);
  background-size: 18px 18px;
}
.cp-pattern-gridlines {
  background-image:
    linear-gradient(#ffffff20 1px, transparent 1px),
    linear-gradient(90deg, #ffffff20 1px, transparent 1px),
    linear-gradient(to right, #81ecec, #00cec9);
  background-size: 14px 14px, 14px 14px, cover;
}
.cp-pattern-crosshatch {
  background-image:
    repeating-linear-gradient(45deg, #ffffff22 0 5px, transparent 5px 10px),
    repeating-linear-gradient(-45deg, #ffffff22 0 5px, transparent 5px 10px),
    linear-gradient(to right, #fab1a0, #e84393);
}
.cp-pattern-hatchgrid {
  background-image:
    repeating-conic-gradient(from 0deg at 50% 50%, #ffffff1a 0deg 15deg, transparent 15deg 30deg),
    linear-gradient(to right, #ffeaa7, #fd79a8);
} 


/* ===== Internship Banner & Patterns (is-) ===== */

.is-banner{
  width:100%;
  height:7px;
  border-radius:8px 8px 0 0;
  background-size:cover;
  position:relative;
}

/* Pattern variants */
.is-pattern-dots{
  background-image:radial-gradient(#ffffff33 1px,transparent 1px),
                   linear-gradient(45deg,#74b9ff,#0984e3);
  background-size:20px 20px,cover;
}

.is-pattern-diagonal{
  background-image:repeating-linear-gradient(45deg,#dfe6e9 0 5px,transparent 5px 10px),
                   linear-gradient(135deg,#ffeaa7,#fab1a0);
  background-size:cover;
}

.is-pattern-grid{
  background-image:
    linear-gradient(#ffffff1a 1px,transparent 1px),
    linear-gradient(90deg,#ffffff1a 1px,transparent 1px),
    linear-gradient(135deg,#a29bfe,#6c5ce7);
  background-size:12px 12px,12px 12px,cover;
}

.is-pattern-waves{
  background-image:
    repeating-radial-gradient(circle at 0 0,#ffffff22 0 1px,transparent 2px),
    linear-gradient(to right,#81ecec,#00cec9);
  background-size:10px 10px,cover;
}

.is-pattern-hex{
  background-image:
    repeating-linear-gradient(60deg,#ffffff30 0 1px,transparent 1px 10px),
    repeating-linear-gradient(120deg,#ffffff30 0 1px,transparent 1px 10px),
    linear-gradient(120deg,#fdcb6e,#e17055);
  background-size:cover;
}


/* ===== Jobs Banner & Patterns (jb-) ===== */

.jb-banner {
  width: 100%;
  height: 7px;
  border-radius: 8px 8px 0 0;
  background-size: cover;
  position: relative;
}

/* Unique professional patterns for jobs */
.jb-pattern-stripes {
  background-image:
    repeating-linear-gradient(45deg, #ffffff1a 0 4px, transparent 4px 8px),
    linear-gradient(135deg, #ff9ff3, #f368e0);
  background-size: cover;
}
.jb-pattern-squares {
  background-image:
    linear-gradient(#ffffff26 1px, transparent 1px),
    linear-gradient(90deg, #ffffff26 1px, transparent 1px),
    linear-gradient(to right, #00d2d3, #54a0ff);
  background-size: 14px 14px, 14px 14px, cover;
}
.jb-pattern-chevrons {
  background-image:
    repeating-linear-gradient(45deg, #ffffff22 0 5px, transparent 5px 10px),
    repeating-linear-gradient(-45deg, #ffffff22 0 5px, transparent 5px 10px),
    linear-gradient(to bottom right, #feca57, #ff6b6b);
  background-size: cover;
}
.jb-pattern-triangles {
  background-image:
    repeating-conic-gradient(from 0deg at 50% 50%, #ffffff25 0deg 15deg, transparent 15deg 30deg),
    linear-gradient(to right, #a29bfe, #6c5ce7);
  background-size: cover;
}
.jb-pattern-honeycomb {
  background-image:
    repeating-linear-gradient(60deg, #ffffff30 0 1px, transparent 1px 10px),
    repeating-linear-gradient(120deg, #ffffff30 0 1px, transparent 1px 10px),
    linear-gradient(to right, #10ac84, #1dd1a1);
  background-size: cover;
} 

 .ad-container1 {
    margin-top: 2%;
        margin-bottom: 3%;
    margin-left: 10.5%;
    margin-right: 10.5%;
  }
    .ad-container2 {
    margin-top: 2%;
    margin-left: 10.5%;
    margin-right: 10.5%;
  }

   @media (max-width: 600px) {
  .ad-container1 {
    margin-left: 7%;
    margin-right: 7%;
    margin-top: 10px;
    margin-bottom: 5%;
  }
        .ad-container2 {
   margin-left: 7%;
    margin-right: 7%;
    margin-top: 5px;
    margin-bottom: 5%;
  }
}

/* Top notification above job title */
.job-closed-top-note {
  background-color: #f8f9fa;
  padding: 20px 25px;
  margin-bottom: 25px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  border-left: 5px solid #6c757d;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.job-closed-top-note .job-status-message {
  font-size: 16px;
  color: #343a40;
  font-weight: 600;
  margin-bottom: 5px;
}

.job-closed-top-note .job-status-subtext {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

/* View Other Jobs button */
.view-jobs-button {
  background-color: #1c7d5c;
  color: white;
  text-decoration: none;
  padding: 10px 18px;
  font-size: 15px;
  border-radius: 4px;
  display: inline-block;
}

.view-jobs-button:hover {
  background-color: #155f45;
}

/* Bottom Application Closed button */
.closed-button {
  display: inline-block;
  background-color: #6c757d;
  color: white;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 4px;
  margin-top: 25px;
  cursor: default;
  font-family: 'Inter', sans-serif;
}

/* Mobile responsiveness */
@media only screen and (max-width: 768px) {
  .job-closed-top-note {
    padding: 16px 18px;
  }

  .job-closed-top-note .job-status-message {
    font-size: 15px;
  }

  .job-closed-top-note .job-status-subtext {
    font-size: 13px;
  }

  .view-jobs-button,
  .closed-button {
    font-size: 14px;
    padding: 10px 16px;
  }
}

.job-alert-banner {
  background-color: #e7f1ff; /* Very light blue */
  color: #0b3ea9; /* Strong readable blue */
  padding: 16px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin: 0 auto 25px auto;
  width: 100%;
  border-bottom: 1px solid #cddff8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.job-alert-link {
  display: inline-block;
  margin-left: 12px;
  background-color: #1155cc;
  color: #fff;
  padding: 7px 14px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

.job-alert-link:hover {
  background-color: #0b3ea9;
}

@media only screen and (max-width: 600px) {
  .job-alert-banner {
    padding: 14px 16px;
    font-size: 15px;
            margin-top: 5%;
  }

  .job-alert-link {
    display: block;
    margin: 10px auto 0 auto;
    font-size: 14px;
    text-align: center;
    width: fit-content;
  }
}

