/* Reset some basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
}
/* meet our batch */
.sectiona {
  text-align: center;
  margin-bottom: 40px;
}

.section-titlea {
  font-size: 2em;
  color: #000000;
  margin-bottom: 10px;
}

.chart {
  width: 100%;
  height: 250px;  /* Consistent chart size */
}

.card {
  background-color: #ffffff;
  color: #000000;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cards-containera {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.ratio-box, .percentage-box {
  background-color: rgb(1, 74, 142);
  padding: 10px;
  border-radius: 8px;
  margin: 10px 0;
}
/* meet our batch ends */

/* Navbar Styles */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  background-color: #dde6f8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-brand .logo {
  height: 40px;
  width: auto;
}

/* Main Navigation Links */
.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 5rem;
}

.navbar .nav-links li a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  transition: color 0.4s ease;
}

.navbar .nav-links li a:hover {
  color: #3971f3;
  font-weight: 700;
}

/* Recruit Us Button */
.recruit-btn {
  background-color: #f5f0eb;
  border: none;
  padding: 5px 20px;
  border-radius: 30px;
  color: #b48b62;
  font-weight: 600;
  cursor: pointer;
}

.recruit-btn:hover {
  background-color: #e8e1da;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #dde6f8;
  position: absolute;
  top: 70px;
  right: 3%;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}

.mobile-menu a {
  display: block;
  padding: 15px 0;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 1.2rem;
}

.mobile-menu.active {
  display: flex;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger div {
  width: 30px;
  height: 3px;
  background-color: #000;
}


/* Responsive Behavior */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .recruit-btn {
    display: none;
  }
  .recruit-btn {
    display: block;
    margin: 10px 0 10px auto; /* Changed: auto on left, 0 on right for right alignment */
    padding: 6px 12px; /* Reduced padding to make button smaller */
    font-size: 0.8rem; /* Reduced font size */
    text-align: center; /* Center text within the button */
    align-self: flex-end; /* Align to the right in flex container */
  }
}/* Improved responsive layout CSS */
@media (max-width: 768px) {
  /* Overall container adjustments */
  body, html {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  /* Main content container */
  .container, main, section {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .navbar .logo{
    margin-right:20px;
  }
  /* Header section adjustments */
  .digital-product-section {
    text-align: center;
    width: 100%;
    padding: 20px 15px;
    box-sizing: border-box;
  }
  
  /* Program title styling */
  .digital-product-section h1,
  .digital-product-section h2,
  .digital-product-section h3 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin: 10px 0;
  }
  
  /* Program subtitle */
  .digital-product-section .subtitle {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  /* Image adjustments */
  img, .featured-image {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  /* Button styling */
  .action-button, 
  .download-button {
    display: block;
    width: 80%;
    max-width: 300px;
    margin: 10px auto;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
  }
  
  /* Navigation specific adjustments */
  .navbar {
    padding: 15px 35px;
    width: 100%;
    /* margin-left: 10px; */
    box-sizing: border-box;
  }
  
  /* Remove side margins/padding that might cause overflow */
  .row, .col, .column {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
  
  /* Footer adjustments */
  footer {
    width: 100%;
    padding: 15px;
    text-align: center;
  }
}
/* Hero Section Styles */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 10%;
  background-color: #fdfcfa;
}

.hero-text {
  max-width: 60%;
}

.hero-text .h11 {
  font-size: 4rem;
  color: #000000;
  margin-bottom: -10px;
  padding-right: 75px;
  margin-left: -20%;
}
.hero-text .h12 {
  font-size: 4rem;
  color: #1b1b1b;
  margin-bottom: 20px;
  padding-right: 75px;
  margin-left: -40%;
}


.hero-text h3 {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 10px;
  margin-left: -10%;
}

.hero-text p {
  color: #666;
  margin-bottom: 30px;
  margin-left: -10%;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.primary-btn, .secondary-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.primary-btn {
  background-color: rgb(1, 74, 142);
  color: #fff;
}

.primary-btn:hover {
  background-color: #13873b;
}

.secondary-btn {
  background-color: transparent;
  border: 2px solid rgb(1, 74, 142);
  color: #000000;
}

.secondary-btn:hover {
  background-color: #13873b;
  color: #fff;
}

/* Carousel Styles */
.carousel {
  width: 40%;
  position: relative;
}

.carousel img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 
}
/* 
.carousel img:not(.active-slide) {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
} */

@import url('https://fonts.googleapis.com/css?family=Montserrat');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  background-color: rgb(1,81, 154);
  color: #fff;
}

.intro {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  letter-spacing: 0.1rem;
}
.intro-slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transform: scale(1.05); /* Slight zoom-out effect */
}

.intro-slideshow img.active {
  opacity: 1;
  transform: scale(1); /* Zoom to normal size */
}
/* .intro-slideshow img:first-child {
  display: block;
  opacity: 1;
} */
.intro .intro-header {
  border-radius: 0.5rem;
  padding: 2rem 2.5rem;
  background-color: rgba(0,0,0,0.8);
}
.intro h1 {
  font-size: 4rem;
  margin-bottom: 0.75rem;
}
.intro p {
  font-size: 1.75rem;
}


.nav-buttons button {
  position: absolute;
  top: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 50%;
}

#prev-btn { left: 20px; }
#next-btn { right: 20px; }

.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
}

.dot.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .intro { height: 60vh; }
  .hero { flex-direction: column; text-align: center; padding: 40px 5%; }
  .hero-text h1 { font-size: 2.5rem; }
  .hero-text h3 { font-size: 1.2rem; }
  .hero-text p { font-size: 1rem; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .primary-btn, .secondary-btn { width: 100%; padding: 12px; }
  .carousel { width: 100%; margin-top: 20px; }
}

@media (max-width: 480px) {
  .intro { height: 50vh; }
  .hero-text h1 { font-size: 2rem; }

  .hero-text .h11{font-size: 2rem;margin-left: 35px;padding-left: 10px;}
  .hero-text .h12{font-size: 2rem; margin-left: 15px;margin-top: 10px;

  }

  .hero-text h3 { font-size: 1rem; }
  .hero-text p { font-size: 0.9rem; }
  .hero-buttons { gap: 8px; }
  .primary-btn, .secondary-btn { padding: 10px; font-size: 1rem; }
}
@media (max-width: 600px) {
  .intro h1 {
    font-size: 2rem;
  }

  .intro p {
    font-size: 1rem;
  }

  .nav-buttons button {
    padding: 0.5rem;
  }

  .dot {
    width: 8px;
    height: 8px;
  }
}


@media (max-width: 700px) {
  html { font-size: 12px; }
  .intro-header { padding: 1.5rem 2rem; }
  .intro h1 { font-size: 2.5rem; }
  .intro p { font-size: 1.25rem; }
}

/* about section */
.about-program {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.8em;
  font-weight: 700;
  color: #1a202c;
}

.divider2 {
  width: 180px;
  height: 4px;
  background-color: #3182ce;
  margin: 20px auto;
}
.divider3{
  width: 180px;
  height:4px;
  background-color: rgb(254, 254, 254);
  margin: -10px auto;
  margin-bottom: 10px;
}
.section-subtitle {
  font-size: 1.6em;
  font-weight: 600;
  color: #2b6cb0;
  margin-bottom: 30px;
}

.section-description {
  font-size: 1.1em;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto 50px;
}

.stats-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-box {
  background: #fff;
  padding: 25px 35px;
  border-radius: 16px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
  width: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 2.2em;
  font-weight: 700;
  color: #2c5282;
}

.stat-label {
  font-size: 1em;
  color: #4a5568;
}

/* curriculum section */
.curriculum-highlights {
  background: linear-gradient(135deg, rgb(1,71,154), #e2e8f0);
  padding: 80px 20px;
  text-align: center;
}

.highlights-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.highlight-box {
  background: #fff;
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
  width: 240px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
  font-size: 2.5em;
  color: #2c5282;
  margin-bottom: 15px;
}

.highlight-title {
  font-size: 1.4em;
  font-weight: 700;
  color: #2b6cb0;
}

.highlight-description {
  font-size: 1em;
  color: #4a5568;
  margin-top: 10px;
}

/*Past Reruiters  */
.section-header-past {
  text-align: center;
  padding: 40px 20px;
  color: #efefef;
  font-size: 2rem;
  font-weight: bold;
}

.recruiters-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.recruiter-box {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: transform 0.3s ease;
}

.recruiter-box img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.recruiter-box:hover {
  transform: translateY(-5px);
}


/* meet  */
.aa{
 background: linear-gradient(135deg, #ffffff, #c2c7cd);
 padding: 50px;

}
.rec{
  background: linear-gradient(135deg, rgb(1,71,154), #c2c7cd);
  padding: 50px;
}
/* directors messsage */
.directors-message {
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
}

.title {
  font-size: 28px;
  color: #333;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
 
}

.message-card {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.quote {
  font-style: italic;
  color: #b68c5a;
  line-height: 1.8;
  margin-bottom: 30px;
}

.director-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.director-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #003366;
}

.director-name {
  font-size: 18px;
  color: #6b4f32;
  font-weight: 600;
  margin: 0;
}

.director-title {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.dir{
  background: linear-gradient(135deg, #fcfcfc, #c2c7cd);
  padding: 50px;
 }
 
 /* profiles */
 .student-profiles {
  max-width: 1200px;
  margin: auto;
}

.title {
  text-align: center;
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 20px;
  margin-top: 60px;
}

.filters {
  text-align: center;
  margin-bottom: 20px;
}

.filters input {
  padding: 10px 20px;
  width: 60%;
  border-radius: 30px;
  border: 1px solid #130303;
  margin-bottom: 10px;
}

.filters .buttons {
  margin-top: 10px;
}

.filters button {
  padding: 8px 16px;
  margin: 5px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  background-color: #f1f3f7;
  color: #333;
  transition: background-color 0.3s;
}

.filters button.active, .filters button:hover {
  background-color: #5ba5cf;
  color: #fff;
}

.profiles-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 45px;
  padding-bottom: 45px;
}

.profile-card {
  background-color: #fff;
  width: 250px;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.profile-card:hover {
  transform: translateY(-10px);
}

.profile-photo {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.profile-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 3px;
}

.profile-photo::after {
  content: attr(data-description);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(38, 106, 194, 0.8);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  /* text-align: center; */
  font-size: 14px;
  padding: 0px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  /* margin-top: -20px; */
}

.profile-photo:hover::after {
  opacity: 1;
}

.student-name {
  color: rgb(1,71,154);
  font-weight: bold;
  margin: 10px 0;
}

.aspiring-title {
  color: #000000;
  margin-bottom: 10px;
}

.skills span {
  background-color:  rgb(3, 44, 94);
  padding: 5px 10px;
  margin: 3px;
  border-radius: 15px;
  display: inline-block;
  font-size: 12px;
}

.linkedin-link img {
  width: 20px;
  margin-top: 10px;
}
/* profile ends here */


/* galler begin */
.gall{
  background: linear-gradient(135deg, #fcfcfc, #c2c7cd);
  padding: 50px;

}
.wrapper{
  width: 55%;
  margin-inline: auto;
}
.gallery{
  display: grid;
  gap: 1rem;
}
.gallery > *{
  width: 100%;
}

.gallery img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.gallery button{
  cursor: pointer;
  position: relative;
  width: 100%;
  border: none;
  outline: none;
  background: none;
  padding: 0;
  margin: 0;
}
.gallery button::before{
  content: '';
  position: absolute;
  inset: 0rem;
  z-index: -1;
  background-color: rgba(0 0 0 / .25);
  border-radius: inherit;
  transition: inset 300ms ease-in-out;
}
.gallery button:focus-visible::before,
.gallery button:hover::before{
  inset: -.25rem;
}

.gallery > .gallery-main-img{
  position: relative;
  aspect-ratio: 6/4;
  background-color: rgba(from var(--clr-secondary) r g b / .5);
  border-radius: 10px;
}
.gallery > .gallery-thumbs{
  width: 100%;
  overflow: auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 60px;
  justify-content: space-between;
  gap: .5rem;
  padding: .5rem 0 1rem;
  scrollbar-width: thin;
}
.gallery > .gallery-thumbs > button{
  aspect-ratio: 1;
  border-radius: 6px;
}

/* dialog - this holds the slideshow */
dialog[open]{
  
  opacity: 1;
  translate: 0;
  color: var(--clr-txt);
  /*border: 1px solid rgba(from var(--clr-primary) r g b /.25);*/
  border: none;
  background-color: transparent;
  border-radius: 10px;
  /*box-shadow: 5px 5px 15px 5px rgba(0 0 0 / .25);*/
  width: 60%;
  margin-top: 50px;
  margin-left: 300px;
  padding: 0;
  overflow: visible;
  @starting-style {
    opacity: 0;
  }
  transition: opacity 500ms ease-in, translate 500ms cubic-bezier(0.28, -0.55, 0.27, 1.55);
}
/* Backdrop styling */
dialog[open]::backdrop {
  background-color: rgba(0 0 0 / .75); 
  backdrop-filter: blur(3px);
  opacity: 1;
  @starting-style {
    opacity: 0;
  }
  transition: opacity 1000ms ease-in; /* this doesn't appear to be working */
}
dialog[open] .btn-dialog-close{
  position: absolute;
  top: -1.5rem;
  right: 0;
  padding: 0;
  background-color: transparent;
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  transition: rotate 300ms, background-color 300ms ease-in-out;
}
dialog[open] .btn-dialog-close:focus-visible,
dialog[open] .btn-dialog-close:hover{
  rotate: 90deg;
}



.slider-wrapper{
  --slider-width: 100%;
  --border-radius: 10px;
  --duration: 300ms;
  position: relative;
}
.slider-content{
  overflow:hidden;
  border-radius: var(--border-radius);
}
.slider-wrapper > button{
  position: absolute;
  top: 50%;
  background-color: white;
  border: none;
  cursor: pointer;
  font-family: monospace;
  color: rgb(0, 140, 254);
  align-self: center;
  outline: none;
  box-shadow: none;
  padding: 0 .5rem;
  font-size: 2rem;
  border-radius: 50%;
  z-index: 10;
  display: grid;
  place-content: center;
  transition-name: background-color,color;
  transition-duration: 150ms;
  transition-timing-function: ease-in-out;
}
[btn-slider="prev"]{
  grid-area: btn-prev;
  translate: -50% -50%;
  right: 100%;
}
[btn-slider="next"]{
  grid-area: btn-next;
  left: 100%;
  translate: 50% -50%;
}

.slider-wrapper > button:focus-visible,
.slider-wrapper > button:hover{
  background-color: steelblue;
  color: white;
}
.slider{
  display: flex;
  height: var(--slider-width);
}
.slider > div{
  flex: 0 0 var(--slider-width);
  aspect-ratio: 6/4;
  transform-origin: left;
  transition-property: margin,scale;
  transition-duration: var(--duration);
  transition-timing-function: ease-in-out;
}
.slider > div::before{
  content: attr(data-title);
  position: absolute;
  top: calc(100% + .5rem);
  left: .5rem;
  color: white;
  font-size: .8rem;
  z-index: 2;
  opacity: 0;
  translate: 0 -20px;
  transition: var(--duration) ease-in-out ;
}
.slider > div:first-child::before{
  opacity: 1;
  translate: 0;
  transition-delay: var(--duration);
}
.slider img{
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  object-fit: cover;
  
}
.slider div.slider-next{
  margin-left: calc(var(--slider-width)  * -1);
  scale: 0.25;
}
.slider div.slider-prev{
  margin-left: calc(var(--slider-width)  * -1);
  scale: 0.25;
}



/* general styling CSS - not relevant demo */


h1{
  color: var(--clr-secondary);
  font-size: 1.2rem;
  text-align: center;
}
code,
pre {
  display: inline-block;
  color: #38bdf8;
  border: 1px solid hsl(from var(--clr-primary) h s 50% / 0.5);
  padding: 0.5rem 1rem;
  border-radius: 5px;
}
pre {
  white-space: pre-wrap;
}
em {
  font-size: 0.8rem;
}

/* gallery ends */

/* recruit section begins */
/* Recruit section begins */
.rec1 {
  background: linear-gradient(135deg, rgb(1, 71, 154), #e2e8f0);
  padding: 60px 20px;
  text-align: center;
}

.recruit-section {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, rgb(1, 71, 154), #e2e8f0);
  padding: 60px 40px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.recruit-section h2 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.recruit-btn {
  background: #2a5bb5;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.recruit-btn:hover {
  background: #1a9437;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-info {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card {
  background: rgb(235, 241, 248);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  /* width: 10%; */
  min-width: 50px;
  flex-grow: 1;
}

.contact-card h4 {
  color: #003296;
  margin-bottom: 10px;
}

.contact-card p {
  color: #000000;
}

/* Button Icon Animation */
.recruit-btn span {
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}

.recruit-btn:hover span {
  transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .recruit-section {
    padding: 40px 20px;
  }

  .recruit-section h2 {
    font-size: 1.5rem;
  }

  .recruit-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .recruit-section h2 {
    font-size: 1.3rem;
  }

  .recruit-btn {
    width: 100%;
    padding: 10px 15px;
  }

  .contact-card {
    width: 100%;
  }
}


/* footer */
                          
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Luckiest+Guy&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Paytone+One&family=Rammetto+One&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Luckiest+Guy&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Belleza&family=Comic+Neue:wght@400;700&family=Cormorant+Infant&family=Poppins&family=Sahitya:wght@700&family=Ubuntu&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');

/* body
{
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(to top, #accbee 0%, #e7f0fd 100%);
} */
 
.spectacledcoder-footer
{
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-bottom: 0px;
    width: 100%;
    height: 500px;
    background: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='margin:auto;background:rgba(221, 221, 221, 0);display:block;z-index:1;position:relative' width='3000' height='588' preserveAspectRatio='xMidYMid' viewBox='0 0 3000 588'><g transform='translate(1500,294) scale(-1,-1) translate(-1500,-294)'><linearGradient id='lg-0.9997820734103322' x1='0' x2='1' y1='0' y2='0'><stop stop-color='%23ffffff' offset='0'></stop><stop stop-color='%23ffffff' offset='1'></stop></linearGradient><path d='' fill='url(%23lg-0.9997820734103322)' opacity='0.37'><animate attributeName='d' dur='10s' repeatCount='indefinite' keyTimes='0;0.333;0.667;1' calcMode='spline' keySplines='0.5 0 0.5 1;0.5 0 0.5 1;0.5 0 0.5 1' begin='0s' values='M0 0L 0 558.9888918874962Q 300 557.9557135224538  600 520.7201791558826T 1200 493.0888623871913T 1800 448.04775521801616T 2400 442.32786157869174T 3000 400.5000938220193L 3000 0 Z;M0 0L 0 531.8219503412562Q 300 581.2367793971861  600 536.6456794845121T 1200 526.1199153747991T 1800 453.6567543549444T 2400 426.5449945053999T 3000 429.5661867072931L 3000 0 Z;M0 0L 0 572.7600127243211Q 300 599.6891402698932  600 560.6693012791557T 1200 514.6895687962055T 1800 485.3535117451038T 2400 447.8902433799051T 3000 454.9458231426154L 3000 0 Z;M0 0L 0 558.9888918874962Q 300 557.9557135224538  600 520.7201791558826T 1200 493.0888623871913T 1800 448.04775521801616T 2400 442.32786157869174T 3000 400.5000938220193L 3000 0 Z'></animate></path></g></svg>") no-repeat center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;

    
}
.spectacledcoder-footer-heading
{
    height: fit-content;
    font-family: 'Arial Black', cursive;
    margin: auto;
    font-size: 2vw;
}
.spectacledcoder-footer-content
{
    width: 100%;
    height: 80%;
    display: flex;
    margin: auto;
    padding-top: 40px;
}
.spectacledcoder-footer-bottom
{
    margin: auto;
    width: 100%;
    height: 20%;
    display: flex;
    font-family: 'Josefin Sans', sans-serif;
}
.spectacledcoder-footer-bottom-sec
{
    margin: auto;
}
.spectacledcoder-footer-bottom-sec a
{
    text-decoration: none;

    color: #0a0a0a;
}
.spectacledcoder-footer-bottom-sec a:hover
{
    font-weight: 700;
}
.spectacledcoder-footer-section
{
    margin: auto;
}
.d-footer-ul
{
    list-style: none;
    font-family: 'Josefin Sans', sans-serif;
}
.d-footer-li
{
    margin-bottom: 5px;
}
.d-footer-li:hover
{
    cursor: pointer;
    transform: translateX(10px);
    transition: all 0.4s;
    font-weight: 700;
}
.d-footer-li-h
{
    margin-bottom: 10px;
}
.logo
{
    max-width: 120px;
    max-height: 120px;
    display: flex;
    margin: auto;
   margin-top: 10px;
}
.logo-head
{
    font-family: 'Josefin Sans', sans-serif;
    margin: auto;
    display: flex;
}
.logo a
{
    margin: auto;
    max-width: 100%;
}

@media only screen and (max-width: 900px) 
{
    .spectacledcoder-footer
    {
        display: flex;
        flex-direction: column;
        margin: auto;
        margin-bottom: 0px;
        width: 100%;
        height: fit-content;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: bottom;
        background: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='margin:auto;background:rgba(221, 221, 221, 0);display:block;z-index:1;position:relative' width='3000' height='588' preserveAspectRatio='xMidYMid' viewBox='0 0 3000 588'><g transform='translate(1500,294) scale(-1,-1) translate(-1500,-294)'><linearGradient id='lg-0.9997820734103322' x1='0' x2='1' y1='0' y2='0'><stop stop-color='%23ffffff' offset='0'></stop><stop stop-color='%23ffffff' offset='1'></stop></linearGradient><path d='' fill='url(%23lg-0.9997820734103322)' opacity='0.37'><animate attributeName='d' dur='10s' repeatCount='indefinite' keyTimes='0;0.333;0.667;1' calcMode='spline' keySplines='0.5 0 0.5 1;0.5 0 0.5 1;0.5 0 0.5 1' begin='0s' values='M0 0L 0 558.9888918874962Q 300 557.9557135224538  600 520.7201791558826T 1200 493.0888623871913T 1800 448.04775521801616T 2400 442.32786157869174T 3000 400.5000938220193L 3000 0 Z;M0 0L 0 531.8219503412562Q 300 581.2367793971861  600 536.6456794845121T 1200 526.1199153747991T 1800 453.6567543549444T 2400 426.5449945053999T 3000 429.5661867072931L 3000 0 Z;M0 0L 0 572.7600127243211Q 300 599.6891402698932  600 560.6693012791557T 1200 514.6895687962055T 1800 485.3535117451038T 2400 447.8902433799051T 3000 454.9458231426154L 3000 0 Z;M0 0L 0 558.9888918874962Q 300 557.9557135224538  600 520.7201791558826T 1200 493.0888623871913T 1800 448.04775521801616T 2400 442.32786157869174T 3000 400.5000938220193L 3000 0 Z'></animate></path></g></svg>") no-repeat center center;
      
    }
    .spectacledcoder-footer-heading
    {
        height: fit-content;
        font-family: 'Rammetto One', cursive;
        margin: auto;
        font-size: 5vw;
    }
    .spectacledcoder-footer-content
    {
        width: 100%;
        height: 80%;
        display: flex;
        flex-direction: column;
    }
    .spectacledcoder-footer-bottom
    {
        margin: auto;
        margin-bottom: 0px;
        height: 20%;
        display: flex;
        flex-direction: column;
        font-family: 'Josefin Sans', sans-serif;
    }
    .logo-head b
    {
        font-family: 'Josefin Sans', sans-serif;
        margin: auto;
        text-align: center;
    } 
    .d-footer-ul
    {
        list-style: none;
        font-family: 'Josefin Sans', sans-serif;
    }
    .d-footer-li
    {
        margin-bottom: 5px;
        margin-left: -40px;
        text-align: center;
    }
    .d-footer-li-h
    {
        margin-bottom: 10px;
        margin-left: -40px;
        text-align: center;
    }
}

/* Responsive Footer Styles */
@media (max-width: 768px) {
  .spectacledcoder-footer-content {
      display: flex;
      flex-direction: column;
      text-align: center;
      align-items: center;
      padding: 20px;
  }
  
  .spectacledcoder-footer-section {
      margin-bottom: 20px;
  }
  
  .d-footer-ul {
      padding-left: 0;
  }
  
  .d-footer-li {
      margin-bottom: 10px;
  }
  
  .logo {
      display: flex;
      justify-content: center;
      gap: 15px;
  }
  
  .spectacledcoder-footer-bottom {
      text-align: center;
      padding: 10px;
  }
   .spectacledcoder-footer-heading {
      margin-left: 15px;
   }

   .spectacledcoder-footer-section .d-footer-ul .d-footer-li-h{
      margin-left: -35px;
   }
   spectacledcoder-footer-section .d-footer-ul .d-footer-li-h1{
    margin-left: -1px;
 }
}
/* mobile operations for navbar */
/* Mobile Menu Optimizations */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1),
              opacity 0.3s cubic-bezier(0.4, 0.0, 0.2, 1),
              visibility 0s linear 0.3s;
  will-change: transform, opacity;
  overscroll-behavior: contain;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1),
              opacity 0.3s cubic-bezier(0.4, 0.0, 0.2, 1),
              visibility 0s linear;
}

.menu-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.mobile-menu.active .menu-content {
  transform: translateY(0);
}

.menu-content a {
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  will-change: transform;
}

.menu-content a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.menu-content a:hover {
  color: var(--primary-color);
}

.menu-content a:hover::after {
  width: 100%;
}

a {
  text-decoration: none; /* Removes underline */
  color: #ffffff; /* Sets link color */
  /* font-weight: bold; */
  transition: color 0.3s ease-in-out;
}


