:root {
    --primary-color: #0d6efd;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Navbar Styles */



.navbar {

    background-color: rgba(13, 110, 253, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

/* Outcomes Section */
#outcomes {
  padding: 4rem 0;
  text-align: center;
  background-color: var(--light-color);
  position: relative;
}

#outcomes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/DSCASC\ LOGO.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.3;
  z-index: 0;
  filter: contrast(1.2) brightness(1.1);
}

#outcomes .container {
  position: relative;
  z-index: 1;
}

/* About section styling */
#about p {
  text-align: justify;
  text-justify: inter-word;
}

/* About section image styling */
.about-slideshow {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.about-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-slideshow:hover img {
  transform: scale(1.05);
}

.card.bg-gradient {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.text-primary {
  color: var(--primary-color) !important;
}

.table-hover tbody tr:hover {
  background-color: rgba(13, 110, 253, 0.05);
  transition: background-color 0.3s ease;
}

/* Campus Section */
.campus-section {
  padding: 4rem 0;
  text-align: center;
  background-color: var(--light-color);
}

.campus-section h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  text-transform: uppercase;
}

.campus-section h2:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.campus-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}

.campus-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.campus-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .campus-section h2 {
    font-size: 2rem;
  }
  
  .campus-gallery {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
}

/* Slideshow container */
.about-slideshow {
  position: relative;
  margin: 2rem auto;
  max-width: 300px;
}

@media (max-width: 768px) {
  .about-slideshow {
    margin: 1rem auto;
  }
}

@media (max-width: 992px) {
  .row.align-items-center {
    flex-direction: column;
  }
  .col-lg-6 {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.navbar-brand {
    margin-right: 2rem;
}

.navbar-nav {
    gap: 1rem;
}

.navbar-nav .nav-link {
    color: #000000;
    transition: color 0.3s ease;
    cursor: pointer;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
    color: rgba(0, 0, 0, 0.7);
    transform: scale(1.05);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background-color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-top: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    color: var(--dark-color);
    padding: 0.5rem 1.5rem;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(13, 109, 253, 0), rgba(13, 110, 253, 0.7)), url('../images/hero.jpg') center/cover fixed;
    color: white;
    padding-top: 160px;
    padding-bottom: 80px;
    margin-top: 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.paper-submission-btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    background: white;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.paper-submission-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .paper-submission-btn {
        padding: 0.8rem 1.6rem;
        font-size: 1.1rem;
    }
}

/* Committee Section Styles */
.committee-section {
    padding: 4rem 0;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.committee-section h3 {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
}

.committee-section h3:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.committee-role {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.committee-role:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.committee-role h4 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid var(--light-color);
    text-align: center;
}

.committee-role p {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.committee-role ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.committee-role ul li {
    color: var(--dark-color);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.2rem;
    line-height: 1.6;
}

.committee-role ul li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Theme Cards */
.theme-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.theme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.15);
    border-color: rgba(13, 110, 253, 0.2);
}

.theme-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(13, 110, 253, 0.1);
}

.theme-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.theme-card ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #495057;
}

.theme-card ul li:last-child {
    margin-bottom: 0;
}

.theme-card ul li:before {
    content: '→';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .theme-card {
        padding: 20px;
    }
    
    .theme-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .theme-card ul li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
}

/* Objectives List */
.objectives-list {
    list-style: none;
    padding-left: 0;
}

.objectives-list li {
    background: var(--light-color);
    margin-bottom: 1rem;
    padding: 15px 20px;
    border-radius: 5px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.objectives-list li:hover {
    transform: translateX(10px);
    background: var(--primary-color);
    color: white;
}

/* Outcome Cards */
.outcome-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.outcome-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(13, 110, 253, 0.15);
    border-color: rgba(13, 110, 253, 0.2);
}

.outcome-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.outcome-card h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.outcome-card p {
    color: var(--dark-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Publication Section Styles */
.publication-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.publication-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(13, 110, 253, 0.15);
    border-color: rgba(13, 110, 253, 0.2);
}

.publication-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    position: relative;
}

.publication-card .description {
    color: var(--dark-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.publication-card .details-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.publication-card .details-list li {
    color: var(--dark-color);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.publication-card .details-list li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-brand img {
        max-height: 30px;
    }
    .navbar-brand.me-2 {
        margin-right: 0.5rem !important;
    }
    .dropdown-menu {
        background-color: rgba(52, 58, 64, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        padding: 0.5rem 0;
        position: static;
        float: none;
        width: 100%;
    }
    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section h2 {
        font-size: 1.4rem;
    }
}

html {
    scroll-behavior: smooth;
}


@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* R&D Cell Event Section */
.rd-slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.rd-slide-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.rd-slides {
  display: none;
  animation: fade 1.5s ease;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background: rgba(0,0,0,0.3);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.rd-dots {
  margin-top: 20px;
}

.rd-dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .rd-dot:hover {
  background-color: var(--primary-color);
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media (max-width: 768px) {
  .rd-slide-img {
    height: 300px;
  }
  
  .prev, .next {
    padding: 8px;
    font-size: 18px;
  }
  
  .rd-dot {
    height: 8px;
    width: 8px;
    margin: 0 3px;
  }
}

/* Contact Section */
.contact-section {
  padding: 2rem 0;
  color: var(--dark-color);
  margin: 1rem auto;
  max-width: 800px;
}

.contact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-color);
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  padding: 0.5rem 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-card p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-card a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .contact-section {
    margin: 0.25rem;
    padding: 0.75rem;
  }
}

.objectives-image {
    display: block;
    width: 100%;
    height: auto;
    animation: wave 2s infinite ease-in-out;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .objectives-image {
        margin: 0 auto 2rem;
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* R&D Cell Event Section */
.rd-slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.rd-slide-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.rd-slides {
  display: none;
  animation: fade 1.5s ease;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background: rgba(0,0,0,0.3);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.rd-dots {
  margin-top: 20px;
}

.rd-dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .rd-dot:hover {
  background-color: var(--primary-color);
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media (max-width: 768px) {
  .rd-slide-img {
    height: 300px;
  }
  
  .prev, .next {
    padding: 8px;
    font-size: 18px;
  }
  
  .rd-dot {
    height: 8px;
    width: 8px;
    margin: 0 3px;
  }
}

/* Contact Section */
.contact-section {
  padding: 2rem 0;
  color: var(--dark-color);
  margin: 1rem auto;
  max-width: 800px;
}

.contact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-color);
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  padding: 0.5rem 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-card p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-card a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .contact-section {
    margin: 0.25rem;
    padding: 0.75rem;
  }
}

.objectives-image {
    display: block;
    width: 100%;
    height: auto;
    animation: wave 2s infinite ease-in-out;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .objectives-image {
        margin: 0 auto 2rem;
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* R&D Cell Event Section */
.rd-slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.rd-slide-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.rd-slides {
  display: none;
  animation: fade 1.5s ease;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background: rgba(0,0,0,0.3);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.rd-dots {
  margin-top: 20px;
}

.rd-dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .rd-dot:hover {
  background-color: var(--primary-color);
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media (max-width: 768px) {
  .rd-slide-img {
    height: 300px;
  }
  
  .prev, .next {
    padding: 8px;
    font-size: 18px;
  }
  
  .rd-dot {
    height: 8px;
    width: 8px;
    margin: 0 3px;
  }
}

/* Contact Section */
.contact-section {
  padding: 2rem 0;
  color: var(--dark-color);
  margin: 1rem auto;
  max-width: 800px;
}

.contact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-color);
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  padding: 0.5rem 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-card p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-card a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .contact-section {
    margin: 0.25rem;
    padding: 0.75rem;
  }
}

.objectives-image {
    display: block;
    width: 100%;
    height: auto;
    animation: wave 2s infinite ease-in-out;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .objectives-image {
        margin: 0 auto 2rem;
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* R&D Cell Event Section */
.rd-slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.rd-slide-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.rd-slides {
  display: none;
  animation: fade 1.5s ease;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background: rgba(0,0,0,0.3);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.rd-dots {
  margin-top: 20px;
}

.rd-dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .rd-dot:hover {
  background-color: var(--primary-color);
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media (max-width: 768px) {
  .rd-slide-img {
    height: 300px;
  }
  
  .prev, .next {
    padding: 8px;
    font-size: 18px;
  }
  
  .rd-dot {
    height: 8px;
    width: 8px;
    margin: 0 3px;
  }
}

/* Contact Section */
.contact-section {
  padding: 2rem 0;
  color: var(--dark-color);
  margin: 1rem auto;
  max-width: 800px;
}

.contact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-color);
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  padding: 0.5rem 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-card p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-card a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .contact-section {
    margin: 0.25rem;
    padding: 0.75rem;
  }
}

.objectives-image {
    display: block;
    width: 100%;
    height: auto;
    animation: wave 2s infinite ease-in-out;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .objectives-image {
        margin: 0 auto 2rem;
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* R&D Cell Event Section */
.rd-slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.rd-slide-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.rd-slides {
  display: none;
  animation: fade 1.5s ease;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background: rgba(0,0,0,0.3);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.rd-dots {
  margin-top: 20px;
}

.rd-dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .rd-dot:hover {
  background-color: var(--primary-color);
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media (max-width: 768px) {
  .rd-slide-img {
    height: 300px;
  }
  
  .prev, .next {
    padding: 8px;
    font-size: 18px;
  }
  
  .rd-dot {
    height: 8px;
    width: 8px;
    margin: 0 3px;
  }
}

/* Contact Section */
.contact-section {
  padding: 2rem 0;
  color: var(--dark-color);
  margin: 1rem auto;
  max-width: 800px;
}

.contact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-color);
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  padding: 0.5rem 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-card p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-card a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .contact-section {
    margin: 0.25rem;
    padding: 0.75rem;
  }
}

.objectives-image {
    display: block;
    width: 100%;
    height: auto;
    animation: wave 2s infinite ease-in-out;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .objectives-image {
        margin: 0 auto 2rem;
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* R&D Cell Event Section */
.rd-slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.rd-slide-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.rd-slides {
  display: none;
  animation: fade 1.5s ease;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background: rgba(0,0,0,0.3);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.rd-dots {
  margin-top: 20px;
}

.rd-dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .rd-dot:hover {
  background-color: var(--primary-color);
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media (max-width: 768px) {
  .rd-slide-img {
    height: 300px;
  }
  
  .prev, .next {
    padding: 8px;
    font-size: 18px;
  }
  
  .rd-dot {
    height: 8px;
    width: 8px;
    margin: 0 3px;
  }
}

/* Contact Section */
.contact-section {
  padding: 2rem 0;
  color: var(--dark-color);
  margin: 1rem auto;
  max-width: 800px;
}

.contact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-color);
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  padding: 0.5rem 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-card p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-card a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .contact-section {
    margin: 0.25rem;
    padding: 0.75rem;
  }
}

.objectives-image {
    display: block;
    width: 100%;
    height: auto;
    animation: wave 2s infinite ease-in-out;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .objectives-image {
        margin: 0 auto 2rem;
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* R&D Cell Event Section */
.rd-slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.rd-slide-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.rd-slides {
  display: none;
  animation: fade 1.5s ease;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background: rgba(0,0,0,0.3);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.rd-dots {
  margin-top: 20px;
}

.rd-dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .rd-dot:hover {
  background-color: var(--primary-color);
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media (max-width: 768px) {
  .rd-slide-img {
    height: 300px;
  }
  
  .prev, .next {
    padding: 8px;
    font-size: 18px;
  }
  
  .rd-dot {
    height: 8px;
    width: 8px;
    margin: 0 3px;
  }
}

/* Contact Section */
.contact-section {
  padding: 2rem 0;
  color: var(--dark-color);
  margin: 1rem auto;
  max-width: 800px;
}

.contact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-color);
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  padding: 0.5rem 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-card p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-card a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .contact-section {
    margin: 0.25rem;
    padding: 0.75rem;
  }
}

.objectives-image {
    display: block;
    width: 100%;
    height: auto;
    animation: wave 2s infinite ease-in-out;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .objectives-image {
        margin: 0 auto 2rem;
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* R&D Cell Event Section */
.rd-slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.rd-slide-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.rd-slides {
  display: none;
  animation: fade 1.5s ease;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background: rgba(0,0,0,0.3);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.rd-dots {
  margin-top: 20px;
}

.rd-dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .rd-dot:hover {
  background-color: var(--primary-color);
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media (max-width: 768px) {
  .rd-slide-img {
    height: 300px;
  }
  
  .prev, .next {
    padding: 8px;
    font-size: 18px;
  }
  
  .rd-dot {
    height: 8px;
    width: 8px;
    margin: 0 3px;
  }
}

/* Contact Section */
.contact-section {
  padding: 2rem 0;
  color: var(--dark-color);
  margin: 1rem auto;
  max-width: 800px;
}

.contact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-color);
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  padding: 0.5rem 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-card p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-card a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .contact-section {
    margin: 0.25rem;
    padding: 0.75rem;
  }
}

.objectives-image {
    display: block;
    width: 100%;
    height: auto;
    animation: wave 2s infinite ease-in-out;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .objectives-image {
        margin: 0 auto 2rem;
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* R&D Cell Event Section */
.rd-slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.rd-slide-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.rd-slides {
  display: none;
  animation: fade 1.5s ease;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background: rgba(0,0,0,0.3);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.rd-dots {
  margin-top: 20px;
}

.rd-dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .rd-dot:hover {
  background-color: var(--primary-color);
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media (max-width: 768px) {
  .rd-slide-img {
    height: 300px;
  }
  
  .prev, .next {
    padding: 8px;
    font-size: 18px;
  }
  
  .rd-dot {
    height: 8px;
    width: 8px;
    margin: 0 3px;
  }
}

/* Contact Section */
.contact-section {
  padding: 2rem 0;
  color: var(--dark-color);
  margin: 1rem auto;
  max-width: 800px;
}

.contact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-color);
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  padding: 0.5rem 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-card p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-card a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .contact-section {
    margin: 0.25rem;
    padding: 0.75rem;
  }
}

.objectives-image {
    display: block;
    width: 100%;
    height: auto;
    animation: wave 2s infinite ease-in-out;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .objectives-image {
        margin: 0 auto 2rem;
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* R&D Cell Event Section */
.rd-slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.rd-slide-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.rd-slides {
  display: none;
  animation: fade 1.5s ease;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background: rgba(0,0,0,0.3);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.rd-dots {
  margin-top: 20px;
}

.rd-dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .rd-dot:hover {
  background-color: var(--primary-color);
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media (max-width: 768px) {
  .rd-slide-img {
    height: 300px;
  }
  
  .prev, .next {
    padding: 8px;
    font-size: 18px;
  }
  
  .rd-dot {
    height: 8px;
    width: 8px;
    margin: 0 3px;
  }
}

/* Contact Section */
.contact-section {
  padding: 2rem 0;
  color: var(--dark-color);
  margin: 1rem auto;
  max-width: 800px;
}

.contact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-color);
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  padding: 0.5rem 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-card p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-card a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .contact-section {
    margin: 0.25rem;
    padding: 0.75rem;
  }
}

.objectives-image {
    display: block;
    width: 100%;
    height: auto;
    animation: wave 2s infinite ease-in-out;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .objectives-image {
        margin: 0 auto 2rem;
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* R&D Cell Event Section */
.rd-slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.rd-slide-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.rd-slides {
  display: none;
  animation: fade 1.5s ease;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background: rgba(0,0,0,0.3);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.rd-dots {
  margin-top: 20px;
}

.rd-dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .rd-dot:hover {
  background-color: var(--primary-color);
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media (max-width: 768px) {
  .rd-slide-img {
    height: 300px;
  }
  
  .prev, .next {
    padding: 8px;
    font-size: 18px;
  }
  
  .rd-dot {
    height: 8px;
    width: 8px;
    margin: 0 3px;
  }
}

/* Contact Section */
.contact-section {
  padding: 2rem 0;
  color: var(--dark-color);
  margin: 1rem auto;
  max-width: 800px;
}

.contact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-color);
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  padding: 0.5rem 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-card p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-card a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .contact-section {
    margin: 0.25rem;
    padding: 0.75rem;
  }
}

.objectives-image {
    display: block;
    width: 100%;
    height: auto;
    animation: wave 2s infinite ease-in-out;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .objectives-image {
        margin: 0 auto 2rem;
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* R&D Cell Event Section */
.rd-slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.rd-slide-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.rd-slides {
  display: none;
  animation: fade 1.5s ease;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background: rgba(0,0,0,0.3);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.rd-dots {
  margin-top: 20px;
}

.rd-dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .rd-dot:hover {
  background-color: var(--primary-color);
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media (max-width: 768px) {
  .rd-slide-img {
    height: 300px;
  }
  
  .prev, .next {
    padding: 8px;
    font-size: 18px;
  }
  
  .rd-dot {
    height: 8px;
    width: 8px;
    margin: 0 3px;
  }
}

/* Contact Section */
.contact-section {
  padding: 2rem 0;
  color: var(--dark-color);
  margin: 1rem auto;
  max-width: 800px;
}

.contact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-color);
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  padding: 0.5rem 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-card p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-card a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .contact-section {
    margin: 0.25rem;
    padding: 0.75rem;
  }
}

.objectives-image {
    display: block;
    width: 100%;
    height: auto;
    animation: wave 2s infinite ease-in-out;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .objectives-image {
        margin: 0 auto 2rem;
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* R&D Cell Event Section */
.rd-slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.rd-slide-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.rd-slides {
  display: none;
  animation: fade 1.5s ease;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background: rgba(0,0,0,0.3);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.rd-dots {
  margin-top: 20px;
}

.rd-dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .rd-dot:hover {
  background-color: var(--primary-color);
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media (max-width: 768px) {
  .rd-slide-img {
    height: 300px;
  }
  
  .prev, .next {
    padding: 8px;
    font-size: 18px;
  }
  
  .rd-dot {
    height: 8px;
    width: 8px;
    margin: 0 3px;
  }
}

/* Contact Section */
.contact-section {
  padding: 2rem 0;
  color: var(--dark-color);
  margin: 1rem auto;
  max-width: 800px;
}

.contact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-color);
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  padding: 0.5rem 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-card p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-card a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .contact-section {
    margin: 0.25rem;
    padding: 0.75rem;
  }
}

.objectives-image {
    display: block;
    width: 100%;
    height: auto;
    animation: wave 2s infinite ease-in-out;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .objectives-image {
        margin: 0 auto 2rem;
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* R&D Cell Event Section */
.rd-slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.rd-slide-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.rd-slides {
  display: none;
  animation: fade 1.5s ease;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background: rgba(0,0,0,0.3);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.rd-dots {
  margin-top: 20px;
}

.rd-dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .rd-dot:hover {
  background-color: var(--primary-color);
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media (max-width: 768px) {
  .rd-slide-img {
    height: 300px;
  }
  
  .prev, .next {
    padding: 8px;
    font-size: 18px;
  }
  
  .rd-dot {
    height: 8px;
    width: 8px;
    margin: 0 3px;
  }
}

/* Contact Section */
.contact-section {
  padding: 2rem 0;
  color: var(--dark-color);
  margin: 1rem auto;
  max-width: 800px;
}

.contact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-color);
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  padding: 0.5rem 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-card p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-card a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .contact-section {
    margin: 0.25rem;
    padding: 0.75rem;
  }
}

.objectives-image {
    display: block;
    width: 100%;
    height: auto;
    animation: wave 2s infinite ease-in-out;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .objectives-image {
        margin: 0 auto 2rem;
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* R&D Cell Event Section */
.rd-slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.rd-slide-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.rd-slides {
  display: none;
  animation: fade 1.5s ease;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background: rgba(0,0,0,0.3);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.rd-dots {
  margin-top: 20px;
}

.rd-dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .rd-dot:hover {
  background-color: var(--primary-color);
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media (max-width: 768px) {
  .rd-slide-img {
    height: 300px;
  }
  
  .prev, .next {
    padding: 8px;
    font-size: 18px;
  }
  
  .rd-dot {
    height: 8px;
    width: 8px;
    margin: 0 3px;
  }
}

/* Contact Section */
.contact-section {
  padding: 2rem 0;
  color: var(--dark-color);
  margin: 1rem auto;
  max-width: 800px;
}

.contact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-color);
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  padding: 0.5rem 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-card p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-card a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .contact-section {
    margin: 0.25rem;
    padding: 0.75rem;
  }
}

.objectives-image {
    display: block;
    width: 100%;
    height: auto;
    animation: wave 2s infinite ease-in-out;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
}

@media (max-width: 768px)