* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Arvo', sans-serif;
  background: #ffffff;
  color: #111;
}

.main-header {
  display: flex;
  justify-content: space-between; /* pushes logo left and nav right */
  align-items: center;
  padding: 20px 40px;
  background-color: #ffffff; /* or your preferred background */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap; /* ensures it wraps on smaller screens */
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}


.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}


.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
  background-color: #13171E;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.logo img {
  height: 45px;
  width: auto;
}

.navbar ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #64ffda;
}

.interactive-icon {
  margin-top: 20px;
}

.interactive-icon a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background-color: transparent;
  padding: 10px 20px;
  border: 2px solid white; /* Default border color */
  border-radius: 50px;
  transition: all 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: white;
}

.interactive-icon a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.interactive-icon a span {
  opacity: 0;
  max-width: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.interactive-icon a:hover {
  background-color: rgba(255, 255, 255, 0.1); 
  border-color: #00bfff; 
  color: #00bfff; 
}

.interactive-icon a:hover span {
  opacity: 1;
  max-width: 200px;
}

.interactive-icon a:hover img {
  transform: scale(1.1);
}


/* Hero Section */
.hero-split {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("assets/bg.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}


/* Designer (Left) */
.hero-left {
  position: absolute;
  left: 5%;
  top: 30%; 
  transform: translateY(-30%);
  width: 25%;
  z-index: 1;
  text-align: center;
}

.hero-left h1 {
  font-size: 5rem;
  color: #29292b;
  margin-bottom: 15px;
}

.hero-left p {
  font-size: 1rem;
  color: #29292b;
}

/* Coder (Right) */
.hero-right {
  position: absolute;
  right: 5%;
  top: 30%; 
  transform: translateY(-30%);
  width: 25%;
  z-index: 1;
  text-align: center;
}

.hero-right h1 {
  font-size: 5rem;
  color: #29292b;
  margin-bottom: 15px;
}

.hero-right p {
  font-size: 1rem;
  color: #29292b;
}

/* Image Center */
.hero-image {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
}


/* Hover Letters*/


.hover-letters span {
  display: inline-block;
  transition: color 0.3s, transform 0.3s;
  cursor: pointer;
}

.hover-letters span:hover {
  color: #64ffda;
  transform: translateY(-5px);
}

.hover-letters span:nth-child(1) { animation-delay: 0s; }
.hover-letters span:nth-child(2) { animation-delay: 0.2s; }
.hover-letters span:nth-child(3) { animation-delay: 0.4s; }
.hover-letters span:nth-child(4) { animation-delay: 0.6s; }
.hover-letters span:nth-child(5) { animation-delay: 0.8s; }
.hover-letters span:nth-child(6) { animation-delay: 1s; }
.hover-letters span:nth-child(7) { animation-delay: 1.2s; }
.hover-letters span:nth-child(8) { animation-delay: 1.4s; }


@keyframes colorShift {
  0%   { color: #2c3e50; }   
  14%  { color: #6c5ce7; }   
  28%  { color: #0984e3; }  
  42%  { color: #d63031; }  
  56%  { color: #e17055; }  
  70%  { color: #2d3436; }  
  84%  { color: #00cec9; } 
  100% { color: #2c3e50; }   
}

.hover-letters span {
  display: inline-block;
  animation: colorShift 3s infinite;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 80px 20px;
  text-align: center;
}

.section-divider h2 {
  font-family: 'Courier Prime', monospace;  
  font-size: 1.8rem;
  font-weight: 400; 
  color: #969696;
  letter-spacing: 1px;
  white-space: nowrap;
}


.divider-line {
  flex-grow: 1;
  height: 1px;
  background-color: #ccc;
  max-width: flex;
}

.section-divider_seminar {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section-divider_seminar h2 {
  font-family: 'Courier Prime', monospace;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 8px 20px;
  border: 5px solid #002f6c;
  border-radius: 8px;
  color: #002f6c;
  background-color: #ffffff;
  margin: 0;
}

.divider-line_seminar {
  flex-grow: 1;
  height: 2px;
  background-color: #002f6c;
  max-width: 100%;
}



/* Typewriter Box Styling */
.typewriter-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  margin: 0 auto;
  border: 1px solid #ccc;
  max-width: 80%;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
  background-color: #fff;
}


.typewriter-container {
  margin: 50px auto;
  max-width: 900px;
  padding: 30px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  background-color: #f5f3f3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: justify;
  font-family: 'Courier Prime', monospace;
}

/* Typewriter Effect */
.typewriter-text {
  font-size: 1.8rem;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid #333;
  width: 0;
  margin-bottom: 20px;
  animation: typing 7s steps(45, end) infinite, blink 1.5s step-end infinite;
}


.bio-static {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* Typing Animation */
@keyframes typing {
  0% { width: 0 }
  50% { width: 100% }
  100% { width: 0 }
}

@keyframes blink {
  0%, 100% { border-color: transparent }
  50% { border-color: #333 }
}

.hobbies-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 30px;
  width: 100%;       
  max-width: 1200px;
  margin: 30px auto;
}

.hobby-box {
  height: 275px;
  background-color: #f5f3f3;
  border: 1.5px solid #ccc;
  border-radius: 12px;
  display: flex;
  flex-direction: column; 
  align-items: center;
  justify-content: flex-start; 
  font-family: 'Courier Prime', monospace;
  font-size: 1.3rem;
  font-weight: 600;
  color: #29292b;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
  text-align: center;
  padding: 15px 10px;
  overflow: hidden;
}

.hobby-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.hobby-gif {
  width: 100%;         
  height: auto;        
  max-height: 200px;    
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}




/* Education Section */
.vertical-line-wrapper {
  position: relative;
  height: 300px;           
  width: 20px;
  margin: 20px auto;       
}

.vertical-line {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;            
  background-color: #b4b4b4;
  z-index: 0;
}

.circle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background-color: #b4b4b4;
  border-radius: 50%;
  z-index: 1;
}

.circle:hover {
  background-color: #4e4e4e;
  cursor: pointer;
  transition: background-color 0.3s ease;
}


.top-circle {
  top: 0;
}

.middle-circle {
  top: 50%;
  transform: translate(-50%, -50%);
}

.bottom-circle {
  bottom: 0;
}




.circle-text {
  position: absolute;
  left: 30px; 
  display: flex;
  flex-direction: column;
  gap: 4px;
}


.top-text {
  top: 0;                   
  left: 30px;              
  transform: translateY(-5%); 
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: max-content;      
}

.top-text p {
  margin: 0;
  white-space: nowrap;      
}

/* Font styling */
.top-text .year {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #525252;
}

.top-text .school a {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s;
}

.top-text .school a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.top-text .degree {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #525252;
}


.middle-text {
  top: 50%;                  
  left: -10px;                
  transform: translate(-100%, -15%); 
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
  width: max-content;         
}

.middle-text p {
  margin: 0;
  white-space: nowrap;        
}


.middle-text .year {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;              
}

.middle-text .school a {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #007bff;            
  text-decoration: none;
  transition: color 0.3s;
}

.middle-text .school a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.middle-text .degree {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #555;                
}




.bottom-text {
  bottom: 0; 
  transform: translateY(75%);
  width: max-content;
}



.circle-text .year {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem; /* biggest */
  font-weight: 700;
  margin: 0;
  color: #525252;

}



.circle-text .school a {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  text-decoration: none;  
  color: #007bff;         
  font-weight: 600;        
  transition: color 0.3s;
}

.circle-text .school a:hover {
  color: #0056b3;         
  text-decoration: underline;
}

.circle-text .degree {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  margin: 0;
  color: #525252;

}

.work-experience-container {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.work-card {
  background-color: #f5f3f3;
  border-radius: 12px;
  border: 1.5px solid #ccc;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  width: 100%;
  padding: 25px 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.work-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.2rem;
  color: #333;
}

.work-card-grid {
  display: grid;
  grid-template-columns: 2fr 1fr; 
  gap: 20px;
}

.work-left {
  display: flex;
  flex-direction: column;
}

.work-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end; 
}

.work-date {
  color: #000;
  font-weight: 700;
  margin-bottom: 10px;
}

.work-company {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #29292b;
}


.project-underline {
  position: relative;
  left: 800px;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 900px;                
  background-color: #002f6c;
  border-radius: 0;
  z-index: 0;
}


.layout-container {
  position: relative;
  width: 1600px;
  height: 900px;
  margin: 0 auto;
}

.tech-used-box {
  position: absolute;
  top: 350px;
  left: 935px;
  width: 500px;
  background-color: #ffffff;
  border: 2px solid #002f6c;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #222;
  text-align: justify;
  z-index: 1;
}


.tech-used-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 47, 108, 0.25);
}

.tech-inline {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-start;
}

.tech-used-box h3 {
  margin: 0;
  font-size: 1.2rem;
}


.tech-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.tech-icons img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}


.project-description-box {
  position: absolute;
  top: 470px;
  left: 1180px;
  width: 510px;             
  transform: translateX(-50%); 
   background-color: #ffffff;
  border: 2px solid #002f6c;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.73rem;
  line-height: 1.6;
  color: #222;
  text-align: justify;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-description-box:hover {
  transform: translateX(-50%) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 47, 108, 0.25);
}

.project-video {
  position: absolute;
  top: 0px;
  left: 930px;
  width: 200px;
  padding: 4px;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-video:hover {
  transform: scale(1.05);
}

.web-tech-used-box {
     position: absolute;
  top: 350px;
  left: 935px;
  width: 500px;
  background-color: #ffffff;
  border: 2px solid #002f6c;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #222;
  text-align: justify;
  z-index: 1;
}

.web-tech-used-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 47, 108, 0.25);
}

.web-tech-inline {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-start;
}

.web-tech-used-box h3 {
  margin: 0;
  font-size: 1.2rem;
}


.web-tech-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.web-tech-icons img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}


.web-project-description-box {
  position: absolute;
  top: 470px;
  left: 1180px;
  width: 510px;                
  transform: translateX(-50%); 
  background-color: #ffffff;
  border: 2px solid #002f6c;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #222;
  text-align: justify;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.web-project-description-box:hover {
  transform: translateX(-50%) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 47, 108, 0.25);
}

.web-video {
  position: absolute;
  top: 0px;

  left: 930px;
  width: 200px;
  padding: 4px;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.web-video:hover {
  transform: scale(1.05);
}


.ticket-tech-used-box {
     position: absolute;
  top: 350px;
  left: 935px;
  width: 500px;
  background-color: #ffffff;
  border: 2px solid #002f6c;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #222;
  text-align: justify;
  z-index: 1;
}

.ticket-tech-used-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 47, 108, 0.25);
}

.ticket-tech-inline {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-start;
}

.ticket-tech-used-box h3 {
  margin: 0;
  font-size: 1.2rem;
}


.ticket-tech-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.ticket-tech-icons img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}


.ticket-project-description-box {
  position: absolute;
  top: 470px;
  left: 1180px;
  width: 510px;                    
  transform: translateX(-50%);   
  background-color: #ffffff;
  border: 2px solid #002f6c;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #222;
  text-align: justify;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ticket-project-description-box:hover {
  transform: translateX(-50%) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 47, 108, 0.25);
}

.ticket-video {
  position: absolute;
  top: 0px;

  left: 930px;
  width: 200px;
  padding: 4px;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ticket-video:hover {
  transform: scale(1.05);
}


.lovato-tech-used-box {
   position: absolute;
  top: 350px;
  left: 935px;
  width: 500px;
  background-color: #ffffff;
  border: 2px solid #002f6c;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #222;
  text-align: justify;
  z-index: 1;
}

.lovato-tech-used-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 47, 108, 0.25);
}

.lovato-tech-inline {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-start;
}

.lovato-tech-used-box h3 {
  margin: 0;
  font-size: 1.2rem;
}


.lovato-tech-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.lovato-tech-icons img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}


.lovato-project-description-box {
  position: absolute;
  top: 470px;
  left: 1180px;
  width: 510px;                    
  transform: translateX(-50%);   
  background-color: #ffffff;
  border: 2px solid #002f6c;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #222;
  text-align: justify;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lovato-project-description-box:hover {
  transform: translateX(-50%) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 47, 108, 0.25);
}

.lovato-video {
  position: absolute;
  top: 0px;

  left: 930px;
  width: 200px;
  padding: 4px;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lovato-video:hover {
  transform: scale(1.05);
}


.api-tech-used-box {
   position: absolute;
  top: 350px;
  left: 935px;
  width: 500px;
  background-color: #ffffff;
  border: 2px solid #002f6c;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #222;
  text-align: justify;
  z-index: 1;
}

.api-tech-used-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 47, 108, 0.25);
}

.api-tech-inline {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-start;
}

.api-tech-used-box h3 {
  margin: 0;
  font-size: 1.2rem;
}


.api-tech-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.api-tech-icons img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}


.api-project-description-box {
  position: absolute;
  top: 470px;
  left: 1180px;
  width: 510px;                    
  transform: translateX(-50%);   
  background-color: #ffffff;
  border: 2px solid #002f6c;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #222;
  text-align: justify;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.api-project-description-box:hover {
  transform: translateX(-50%) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 47, 108, 0.25);
}

.api-video {
  position: absolute;
  top: 0px;

  left: 930px;
  width: 200px;
  padding: 4px;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.api-video:hover {
  transform: scale(1.05);
}



.recent-projects-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 0 40px;          
}


.project-titles {
  position: absolute;
  left: 50%;
  transform: translateX(-105%);
  text-align: right;
  width: 45%;
  z-index: 2;
}


.project-titles h1 {
  font-family: 'Arvo', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #002f6c;
  margin-bottom: 50px;  
  cursor: pointer;
  text-align: right;
  transition: color 0.3s ease;
}

.project-titles h1:hover {
  color: #4e8cff;
}

.project-titles h1.active {
  color: #4e8cff;
}



.cert-seminar-combined {

  max-width: 1000px;
  margin: 50px auto;
  overflow-x: auto;
  padding: 0 20px;
  
}

.cert-seminar-combined table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Lato', sans-serif;
}

.cert-seminar-combined th,
.cert-seminar-combined td {
  padding: 12px 15px;
  text-align: left;
  vertical-align: top;
}

.cert-seminar-combined th {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #333;
  border-bottom: 2px solid #ccc;
}

.cert-seminar-combined td {
  font-size: 1rem;
  color: #555;
  border-bottom: 1px solid #eee;
}


.cert-seminar-combined tbody tr:nth-child(even) {
  background-color: #f9f9f9; /* very subtle gray */
}


.cert-seminar-combined tbody tr:hover {
  background-color: #f1f1f1;
}

.cert-seminar-combined td:first-child {
  font-weight: 700;
  color: #29292b;
}





.carousel-section {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  height: 400px;
  margin: 80px 0;
  gap: 20px;
}

.carousel-container {
  width: 300px;
  height: 300px;
  position: relative;
  transform-style: preserve-3d;
}

.carousel {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  transition: transform 1s ease;
}

.carousel-item {
  position: absolute;
  width: 180px;
  height: 220px;
  top: 40px;
  left: 60px;
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.carousel-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.carousel-item p {
  margin-top: 10px;
  font-weight: bold;
  font-family: 'Courier New', Courier, monospace;
}

.carousel-btn {
    position: absolute;
  background: none;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  color: #333;
  z-index: 10;
  transition: 0.3s ease;
}

.carousel-btn.left {
  position: absolute;
  left: 300px; 
}

.carousel-btn.right {
  position: absolute;
  right: 300px; 
}

.carousel-btn:hover {
  color: #858585;
}

.main-footer {
  background-color: #0b0c10;
  color: #cfd8dc;
  text-align: center;
  padding: 30px 20px;
  margin-top: 50px;
  font-family: 'Lato', sans-serif;
}

.footer-content p {
  margin: 8px 0;
  font-size: 0.95rem;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.15);
}

.social-icons img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

