 
/*############################ NAVBAR ###################################*/
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body{
    background: #f8f9fc;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /*background: #f8f9fc; /* light color */
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    z-index: 999;
    /*box-shadow: 0 2px 8px rgba(0,0,0,0.1);*/
}

.logo {
    display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text .logo_h {
  font-size: 18px;
  line-height: 1.2;
  font-weight:600;
}

.logo-text .logo_p {
  font-size: 12px;
  color: #9ca3af;
  letter-spacing: 0.5px;
}
#logo_img{
    width: 50px;      /* Adjust logo size */
  height: auto;
  border:1px solid white;border-radius:10px;
}
/* Desktop menu */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links .a_nav {
    text-decoration: none;
    color: gray;
    font-size: 18px;
}

/* CONTACT BUTTON */
#contact-btn {
    background: #1e63ff;
    color: white !important;
    padding: 8px 18px;
    border-radius: 6px;
    transition: 0.3s;
}

#contact-btn:hover {
    background: #003bb8;
}

/* HAMBURGER TOGGLE */
#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    width: 32px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

/* 3 bars */
.menu-icon .span-nav,
.menu-icon .span-nav::before,
.menu-icon .span-nav::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: #1e63ff;
    border-radius: 2px;
    transition: 0.3s ease;
}

.menu-icon .span-nav {
    top: 50%;
    transform: translateY(-50%);
}

.menu-icon .span-nav::before {
    top: -8px;
}

.menu-icon .span-nav::after {
    top: 8px;
}

/* CROSS ANIMATION */
#menu-toggle:checked + .menu-icon .span-nav {
    transform: rotate(45deg);
}

#menu-toggle:checked + .menu-icon .span-nav::before {
    transform: rotate(90deg);
    top: 0;
}

#menu-toggle:checked + .menu-icon .span-nav::after {
    opacity: 0;
    top: 0;
}

/* MOBILE VIEW */
@media (max-width: 768px) {

    .menu-icon {
        display: block;
    }

    /* hide desktop menu */
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #f8f9fc;
        flex-direction: column;
        text-align: left;
        padding: 20px 25px;
        display: none;
        gap: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    /* show menu on toggle */
    #menu-toggle:checked + .menu-icon + .nav-links {
        display: flex;
    }

    #contact-btn {
        width: 100%;
        text-align: center;
    }
}
@media (min-width: 577px) and (max-width: 991px) {
    .menu-icon {
        display: block;
    }
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #f8f9fc;
        flex-direction: column;
        text-align: left;
        padding: 20px 25px;
        display: none;
        gap: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    /* show menu on toggle */
    #menu-toggle:checked + .menu-icon + .nav-links {
        display: flex;
    }

    #contact-btn {
        width: 100%;
        text-align: center;
    }
}
/*########################## IMAGE & TEXT ##########################*/
    /* Section */
    .hero {
      position: relative;
      min-height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
      padding: 20px;
    }

    /* Image + mask */
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.35)),
        url("img/csdt.png") center/cover no-repeat;
      z-index: -1;
    }

    /* Content */
    .content {
      max-width: 600px;
      font-family: 'Fredoka', sans-serif;

    }

    .h1_head {
      font-size: 2.8rem;
      margin-bottom: 15px;

    }

    .p1_head {
      font-size: 1.3rem;
      margin-bottom: 12px;
      line-height: 1.6;
    }
    .p2_head {
      font-size: 1rem;
      margin-bottom: 12px;
      line-height: 1.6;
    }
    .buttons {
      margin-top: 20px;
    }

    .buttons .head_a {
      display: inline-block;
      padding: 10px 18px;
      margin: 5px;
      text-decoration: none;
      color: #fff;
      border: 2px solid #fff;
      border-radius: 4px;
      transition: 0.3s;
    }

    .buttons .head_a:hover {
      background: #fff;
      color: #000;
    }

   
    @media (min-width: 768px) {
      .h1_head {
        font-size: 2.5rem;
      }

      .p1_head {
        font-size: 1.1rem;
      }
      .p2_head {
        font-size: 1.1rem;
      }
      .content {
        max-width: 750px;
      }
    }

   
    @media (min-width: 1024px) {
      .hero {
        text-align: center;
        padding: 50px;
      }

      .content {
        max-width: 1200px;
      }

      .h1_head {
        font-size: 3rem;        
      }

      .p1_head {
        font-size: 1.5rem;
      }
      .p2_head {
        font-size: 1.2rem;
      }
      .buttons .head_a {
        padding: 12px 24px;
      }
    }


/*############################## CARD ####################################*/

.main_headings {
  font-family: 'Poppins', sans-serif;
  font-size: 2.0rem;
  text-align: center;
  font-weight: 700;
  background:black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
  margin-top: 30px;
}

/* Container for 3 cards */
.card-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 40px;
  flex-wrap: wrap; /* makes it responsive */
}

/* Card style */
.card {
  background: #f8f9fc;
  width: 400px;
  height: auto;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: left;
  transition: 0.3s;
}

/* Hover effect */
.card:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.p-card{
    color: #615D5C;
    margin-top: 5%;
}
.h-card{
    margin-top:2%

}
#img-card{
    width:60px;height:60px;
}

/*############### About & Jumbotron ###################*/
.about-para{
    text-align: justify;
    margin-top: 5%;
    margin-left:20%;
    width: 60%;
    font-size: 18px;
    letter-spacing: 2px;
    color: #615D5C;
}

.contr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 5px;
  max-width: 1400px;   /* increase length */
  width: 100%;
  margin: auto;
}

.box {
  padding: 30px 50px;
  background: #E9F7F5;
  /*color: #fff;*/
  text-align: left;
  border-radius: 10px;
  /*font-size: 22px;*/
}
.jumbo-head {
    color: black;
  font-size: 2rem;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.jumbo-p1 {
  
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;                /* light black */
  letter-spacing: 0.2px;
}
.jumbo-p2 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;                /* light black */
  letter-spacing: 0.2px;
}

/* Small screens */
@media (max-width: 600px) {
  .contr {
    grid-template-columns: 1fr;
  }
}

.list{
    background: #ffffff;
    max-width: 600px;
    margin: auto;
    padding: 25px;
    /*border-radius: 8px;*/
    /*box-shadow: 0 4px 15px rgba(0,0,0,0.1);*/
    /*border-left: 5px solid #2b7cff;*/
}
#img-jumbo{
    width:30px;height:30px;
}


/*############################### LIST ####################################3333333*/
.cont {
  width: 90%;
  max-width: 800px;
  margin: 20px auto;
  color: #615D5C;
}

.two-column {
  list-style: none;
  padding: 0;
  columns: 2;       /* split into 2 columns on large screens */
  column-gap: 40px;  /* gap between columns */
}

.two-column li {
  margin-bottom: 10px;
}

/* Responsive: stack items on smaller screens */
@media (max-width: 600px) {
  .two-column {
    columns: 1;  /* single column on small screens */
    column-gap: 0;
  }
}

/*################################ CORE TEAM ####################################*/

.team-row {
    display: flex;
    justify-content: center;
    gap: 10%;
    flex-wrap: wrap;
}

.employee {
    text-align: center;
}

.employee img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.employee h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.employee p {
    margin: 3px 0;
    color: #777;
    font-size: 14px;
}

/*##################################### TRAINING PROGRAMS ############################*/

.train-p{
    text-align: center;
    width:50%;
    margin-left:25%;
    margin-top: 1%;
    color: #615D5C;
}

.programs-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1400px;
    /*margin: auto;*/
}

.program-card {
    background:  #f8f9fc;
    padding: 25px;
    border-radius: 10px;
    width: 420px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: 0.3s ease;

}

/* Colored line on top */
.program-card::before {
    content: "";
    width: 90%;
    height: 7px;
    border-radius: 10px 10px 0 0;
    position: absolute;
    top: 10%;
    left: 0;
    margin-left:5%;
}

/* Individual top colors */
.color1::before {
    background: #ff6b6b;
}

.color2::before {
    background: #3ec1d3;
}

.color3::before {
    background: #6c5ce7;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.program-card .program-head {
    text-align: left;
    font-size: 20px;
    /*color: #203a74;*/
    color: #242120;
    margin-top: 30px;
    margin-bottom: 20px;
}
.program-fa{
    text-align: left;color:#857E7B;font-weight:200;
    font-size: 14px;word-spacing: 5px;letter-spacing: 1px;margin-bottom: 5%;
}
#fa{
    color:#857E7B;font-size:15px;
}
.card-ul{

list-style: none;        /* Remove bullets */
padding: 0;
margin: 0;
display: flex;           /* Display in row */
flex-wrap: wrap;         /* Wrap to next line if needed */
/*gap: 10px;               */
gap: 8px;
justify-content:left;       

}

/* Each list item */
.card-li {
  
flex: 1 1 40%;         /* Minimum width 200px, grow if more space */
background: #f1f7fc;
padding: 1px;font-size:12px;font-weight: 600;
text-align: center;
border-radius: 10px;
box-sizing: border-box;
}

/* Optional: responsive adjustment for small screens */
@media (max-width: 500px) {
     .card-li{
        flex: 1 1 40%; /* Full width on small screens */
    }
}

/*################################### Our Facilities ##################################*/

/* Facility Cards */
.facilities-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 40px 20px;
}

.facility-card {
    width: calc(33.33% - 20px); /* 3 per row */
    background: #f8f9fc;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    text-align: left;
    transition: 0.1s;
}

.facility-card .facility-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.facility-card .facility-head {
    margin: 15px 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: #242120;
}

.facility-card .facility-p {
    font-size: 14px;
    line-height: 1.5;
    color: #615D5C;
    letter-spacing: 1px;
    font-weight: 400;
}

.facility-card:hover {
    transform: translateY(1px);
    box-shadow: 0 10px 18px rgba(0,0,0,0.15);
}

/* Responsive Design */
@media (max-width: 900px) {
    .facility-card {
        width: calc(50% - 20px); /* 2 per row */
    }
}

@media (max-width: 600px) {
    .facility-card {
        width: 100%; /* 1 per row */
    }
}

/*############################ Upcoming Training Sessions ###########################*/
.train-cont{
    background:  #003bb8;
    border-radius: 10px;
    margin: 2%;
    text-align: center;padding:3%;
}
.beautiful-heading-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 700;
  background:white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
  margin-top: 30px;
}
.train-para{
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: white;font-weight: 300;
     -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
  margin-top: 20px;
}
.white-btn {    
    background: #ffffff;              /* white background */
    color: #1e63ff;                   /* text color (blue) */
    padding: 12px 25px;
    border: 2px solid #ffffff;        /* white border */
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Hover effect: transparent white */
.white-btn:hover {
    background: rgba(255, 255, 255, 0.2); /* transparent white */
    backdrop-filter: blur(2px);
    color: #ffffff;                       /* change text to white */
    border-color: rgba(255,255,255,0.5);
}
/*############################ CONTACT US ###########################*/

.row-container {
    width: 90%;
    margin: 40px auto;
    display: flex;
    gap: 20px;
}
#section1 {
    flex: 1;
    padding: 25px;
    /*border-radius: 10px;*/
    /*background: #fff;*/
    border: none;
    /*box-shadow: 0 0 10px rgba(0,0,0,0.1);*/
}
#section2 {
    flex: 1;
    padding: 25px;
    border-radius: 10px;
    background: #f8f9fc;    
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.contact-h2 {
    margin-bottom: 15px;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

/*.label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}*/

.input, .textarea {
    width: 90%;
    padding: 10px;
    background: #f8f9fc;
    border: 1px solid lightgray;
    border-radius: 5px;resize: none;
    overflow: auto;
}

.textarea {
    height: 120px;
}

.button {
    padding: 10px 20px;
    background: #007BFF;
    border: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.button:hover {
    background: #0056b3;
}

.address-section p {
    margin: 8px 0;
    color: #444;
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
    .row-container {
        flex-direction: column;
    }
}


/*#######################################  MEMBERS ######################################*/


.memb_section {
  display: flex;
  justify-content: center;
  align-items: center;
  /*min-height: 100vh;*/
  background: #f8f9fc;
}

.team-carousel-container {
  position: relative;
  width: 100%;
  /*max-width: 1000px;*/
  overflow: hidden;
  background: #f8f9fc;
  border-radius: 10px;
  padding: 20px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 20px;
}

.team-card {
  min-width: 220px;  /* slightly wider than image */
  height: 300px;     /* enough height for image + text */
  background: #f8f9fc;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.team-card:hover {
  transform: scale(1.05);
}

.team-card .memb-img {
  width: 200px;       /* bigger width */
  height: 200px;      /* bigger height */
  border-radius: 10px; /* optional rounded corners */
  object-fit: cover;  /* fills the square without distortion */
  margin-bottom: 10px;
}

.team-card .memb-h3 {
  font-size: 1.1em;
  margin-bottom: 5px;
}

.team-card .memb-p {
  color: #555;
  font-size: 0.9em;
}

.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  z-index: 1;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

@media (max-width: 768px) {
  .prev-btn, .next-btn {
    display: none;
  }
}
/* Hide scrollbar but keep scroll functionality */
.team-carousel {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

.team-carousel::-webkit-scrollbar {
  display: none;             /* Chrome, Safari, Opera */
}

/*##################################### EXECUTIVES ########################################*/

 #exe {
    max-width: 900px;
    margin: 40px auto;
    padding: 10px;
    text-align: center;
}

/* Top card – force center */
.top-card {
    margin: 0 auto 40px auto; /* centers horizontally */
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Bottom cards – ALWAYS two columns */
.bottom-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-items: center;
}

/* Card */
.card-exe {
    width: 100%;
    max-width: 240px;
}

/* Image */
.card-exe .exe-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius:5px;
}

/* Text */
.name {
    margin-top: 12px;
    font-size: 1.05rem;
    font-weight: 600;
}

.designation {
    margin-top: 4px;
    font-size: 0.95rem;
    color: #333;
}

/* Mobile – SAME AS DESKTOP (only image size smaller) */
@media (max-width: 600px) {

    .container-exe {
        margin: 20px auto;
    }

    .bottom-cards {
        grid-template-columns: repeat(2, 1fr); /* still 2 columns */
        gap: 20px;
    }

    .card-exe {
        max-width: 150px;
    }

    .card-exe .exe-img {
        height: 200px;
    }
}
/*################### NOTIFICATION #################################*/
/* Right side container */
.notify-wrapper {
  margin: 40px 30px 0 0;
  right: 30px;
  top: 25%;
  width: 360px;          /* BIGGER */
  height: 200px;         /* BIGGER */
  overflow: hidden;
  background: #f9f9f9;   /* LIGHT BACKGROUND */
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border: 1px solid #e0e0e0;
}

/* Scrolling track */
.notify-track {
  animation: autoScroll 10s infinite ease-in-out;
}

/* Individual notification */
.notify {
  padding: 22px;
  font-size: 18px;       /* BIG TEXT */
  color: #333;
  border-bottom: 1px solid #ddd;
  background: #fff;
}

/* Smooth up & down auto scroll */
@keyframes autoScroll {
  0%   { transform: translateY(0); }
  25%  { transform: translateY(-70px); }
  50%  { transform: translateY(-140px); }
  75%  { transform: translateY(-70px); }
  100% { transform: translateY(0); }
}
@media (max-width: 768px) {
  
  .notify-wrapper {
    width: calc(100% - 40px);
    height: 160px;
    margin: 20px;
    order: -1; /* show on top */
  }

  .notify {
    font-size: 16px;
    padding: 18px;
  }
}


/*########################## REGFORM #################################################*/

.reg_body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /*background: linear-gradient(135deg, #667eea, #764ba2);*/
  padding: 20px;
}

.reg_container {
  display: flex;
  max-width: 900px;
  width: 100%;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  margin-top:5%;
}

/* Left Panel */
.left-panel {
  flex: 1;
  background: linear-gradient(135deg, #764ba2, #667eea);
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left-panel .left_h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.left-panel .left_p {
  font-size: 15px;
  opacity: 0.9;
}

/* Right Panel */
.right-panel {
  flex: 1;
  padding: 40px;
}

.right-panel .right_h2 {
  margin-bottom: 20px;
  text-align: center;
}

.input-group2 {
  position: relative;
  margin-bottom: 20px;
}

.input-group2 .reg_input {
  width: 100%;
  padding: 12px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  font-size: 14px;color: #333;
}

.input-group2 .reg_label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 14px;
  color: #777;
  transition: 0.3s;
  pointer-events: none;
  background: white;
  padding: 0 5px;
}

.input-group2 .reg_input:focus + .reg_label,
.input-group2 .reg_input:valid + .reg_label {
  top: -8px;
  left: 8px;
  font-size: 12px;
  color: #667eea;
}

.reg_btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  background: #667eea;
  color: white;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.reg_btn:hover {
  background: #5a67d8;
}
.input-group3 {
  position: relative;
  margin-bottom: 20px;
}

/* Select box */
.input-group3 .reg_select {
  width: 100%;
  padding: 12px 40px 12px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  background: white;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
}

/* Purple border on focus */
.input-group3 .reg_select:focus {
  border-color: #667eea;
}

/* Label default (inside border) */
.input-group3 .select_label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 14px;
  color: #777;
  background: white;
  padding: 0 5px;
  transition: 0.3s;
  pointer-events: none;
}

/* FLOAT EFFECT */
.input-group3 .reg_select:focus + .select_label,
.input-group3 .reg_select:not([value=""]) + .select_label {
  top: -8px;
  left: 8px;
  font-size: 12px;
  color: #667eea;
}

/* Custom dropdown arrow */
.input-group3::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #667eea;
  border-bottom: 2px solid #667eea;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.input-group3 .reg_select {
  color: #777; /* light gray placeholder look */
}

/* When user selects a value */
.input-group3 .reg_select:valid {
  color: #333; /* light black */
}

/* Responsive Design */
@media (max-width: 768px) {
  .reg_container {
    flex-direction: column;
    margin-top:50%;
  }

  .left-panel {
    text-align: center;
    padding: 25px;
  }

  .right-panel {
    padding: 25px;
  }
}


