@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  text-transform: capitalize;
  transition: all 0.2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;

  /* Start with a soft gradient */
  background: linear-gradient(to left, #ffffff, #e0ecf5);
  background-size: 400% 400%;
  animation: gradientChange 50s ease-in-out infinite;
}

/* Smooth gradient transitions - darker version */
@keyframes gradientChange {
  0% {
    background: linear-gradient(to left, #ffffff, #e0ecf5); /* White → Soft Blue (darker) */
  }
  10% {
    background: linear-gradient(to left, #ffffff, #f5e0e8); /* White → Dusty Pink */
  }
  20% {
    background: linear-gradient(to left, #ffffff, #e0f5e8); /* White → Soft Mint */
  }
  30% {
    background: linear-gradient(to left, #ffffff, #f5f0d0); /* White → Pale Yellow (darker) */
  }
  40% {
    background: linear-gradient(to left, #ffffff, #e8d8f5); /* White → Lavender (darker) */
  }
  50% {
    background: linear-gradient(to left, #ffffff, #d0e7f5); /* White → Sky Blue (darker) */
  }
  60% {
    background: linear-gradient(to left, #ffffff, #f5d8e0); /* White → Blush Pink (darker) */
  }
  70% {
    background: linear-gradient(to left, #ffffff, #d0f5e8); /* White → Aqua Mint (darker) */
  }
  80% {
    background: linear-gradient(to left, #ffffff, #f5e8d0); /* White → Cream Peach (darker) */
  }
  90% {
    background: linear-gradient(to left, #ffffff, #e0d8f5); /* White → Light Violet (darker) */
  }
  100% {
    background: linear-gradient(to left, #ffffff, #e0ecf5); /* Back to White → Soft Blue */
  }
}

/* Text selection highlight */
*::selection {
  background: #2b3dda;
  color: #fff;
}

html::-webkit-scrollbar {
  width: 0.8rem;
}

html::-webkit-scrollbar-track {
  background: rgb(235, 202, 245);
}

html::-webkit-scrollbar-thumb {
  background: #420177;
}

/* ===== Preloader Start ===== */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #e6eff1;         /* light tech background */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;               /* full viewport height */
  width: 100vw;                /* full viewport width */
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Fade-out effect */
.loader-container.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Loader image (responsive) */
.loader-container img {
  width: 120px;
  height: auto;
  max-width: 30vw;  /* responsive scaling for mobile */
}
/* ===== Preloader End ===== */


/* navbar starts */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.7rem 10%;
  height: 6.5rem;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(98, 0, 255, 0.773);
}

section {
  min-height: 100vh;
  padding: 2rem 9%;
}

.heading {
  font-size: 3.5rem;
  color: rgb(32, 32, 32);
  font-weight: 800;
  text-align: center;
}

.heading span {
  color: rgb(115, 3, 167);
}

/* Logo Responsive Styles */
header .logo {
  font-size: clamp(1.3rem, 4vw, 1.9rem); /* Fluid font sizing */
  font-weight: 800;
  text-decoration: none;
  color: #0e2431;
  white-space: nowrap; /* Prevent text wrapping */
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

header .logo i {
  font-size: clamp(1.6rem, 4.5vw, 2.2rem); /* Fluid icon sizing */
  transition: inherit;
}

header .logo:hover {
  color: #1100ff;
}

header .logo:hover i {
  color: inherit;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  header .logo {
    gap: 0.4rem;
  }
}

@media (max-width: 768px) {
  header .logo {
    padding: 0.5rem 0; /* Add some vertical padding on mobile */
  }
}

@media (max-width: 576px) {
  header .logo {
    white-space: normal; /* Allow wrapping on very small screens */
    line-height: 1.3;
  }
}

/* For extremely small screens */
@media (max-width: 400px) {
  header .logo {
    font-size: 1.2rem;
  }
  header .logo i {
    font-size: 1.4rem;
  }
}

header .navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .navbar li {
  margin-left: 2.5rem;
}

header .navbar ul li a {
  font-size: 1.57rem;
  color: #0e2431;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04rem;
  transition: 0.2s;
}

header .navbar ul li a.active,
header .navbar ul li a:hover {
  color: #6f00ff;
  border-bottom: 0.2rem solid #6f01ff;
  padding: 0.5rem 0;
}
/* navbar ends */

/* hamburger icon starts*/
#menu {
  font-size: 3rem;
  cursor: pointer;
  color: rgb(24, 2, 63);
  display: none;
}

@media (max-width: 768px) {
  #menu {
    display: block;
  }
  header .navbar {
    position: fixed;
    top: 6.5rem;
    right: -120%;
    width: 75%;
    height: 100%;
    text-align: left;
    align-items: flex-start;
    background-color: #0e0f31;
  }
  header .navbar ul {
    flex-flow: column;
    padding: 1rem;
  }
  header .navbar ul li {
    text-align: center;
    width: 100%;
    margin: 1rem 0;
    border-radius: 0.5rem;
    width: 26rem;
  }
  header .navbar ul li a {
    display: block;
    padding: 1rem;
    text-align: left;
    color: #fff;
    font-size: 2rem;
  }
  header .navbar ul li a.active,
  header .navbar ul li a:hover {
    padding: 1rem;
    color: #fff;
    border-radius: 0.5rem;
    border-bottom: 0.5rem solid #8400ff;
  }
  .fa-times {
    transform: rotate(180deg);
  }
  header .navbar.nav-toggle {
    right: 0;
  }
}
/* hamburger icon ends */

/* Hero Section - Base Styles */
.home {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.home #particles-js {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

/* Content Container with 3D Perspective */
.home .content {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
  padding: 5rem 0 3rem;
  z-index: 1;
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* 3D Text Effects */
.home .content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #000;
  margin: 5rem 0 0.8rem;
  line-height: 1.3;
  letter-spacing: 0.5px;
  transform: translateZ(20px);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
}

.home .content .autonomous {
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  color: #000;
  margin: -1rem 0 1rem;
  display: block;
  transform: translateZ(15px);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.home .content h3 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #004c54;
  margin: 1rem 0 2rem;
  line-height: 1.4;
  transform: translateZ(25px);
  text-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.home .content h2 {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 800;
  color: #000080;
  margin: 1.5rem 0;
  line-height: 1.2;
  text-transform: uppercase;
  transform: translateZ(30px);
  text-shadow: 3px 3px 6px rgba(0,0,0,0.15);
  transition: all 0.5s ease;
}

.home .content .symposium-tag {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  color: #d1002a;
  margin-bottom: 3rem;
  letter-spacing: 1px;
  transform: translateZ(20px);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.home .content .join-text {
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: #000;
  font-weight: 600;
  margin: 2rem 0;
  transform: translateZ(15px);
}

.typing-text {
  color: #6a00ff;
  transform: translateZ(10px);
  display: inline-block;
}

/* 3D Button with Depth Effect */
.home .btn {
  display: inline-flex;
  align-items: center;
  padding: 1.3rem 2.8rem;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #fff;
  background: #6f00ff;
  box-shadow: 0 8px 20px rgba(111, 0, 255, 0.4),
              0 5px 5px rgba(0,0,0,0.2);
  font-weight: 700;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  text-decoration: none;
  margin: 2.5rem 0;
  border: none;
  cursor: pointer;
  transform: translateZ(25px);
  position: relative;
  overflow: hidden;
}

.home .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.home .btn:hover {
  background: #ff0000;
  transform: translateY(-3px) translateZ(30px);
  box-shadow: 0 12px 25px rgba(255, 0, 0, 0.4),
              0 7px 7px rgba(0,0,0,0.2);
}

.home .btn:hover::before {
  left: 100%;
}

.home .btn i {
  margin-left: 0.8rem;
  transition: transform 0.3s ease;
  font-size: 1.4rem;
}

.home .btn:hover i {
  transform: translateX(5px);
}

/* 3D Clock Section */
.container {
  margin: 3rem 0;
  text-align: center;
  transform-style: preserve-3d;
  perspective: 800px;
}

.end-time {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #000;
  margin-bottom: 1.5rem;
  transform: translateZ(20px);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.wrapper {
  display: flex;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 2rem);
  margin-top: 1.5rem;
  transform-style: preserve-3d;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.5s ease;
  transform-style: preserve-3d;
}

.time-block:hover {
  transform: translateY(-5px) translateZ(15px);
}

.time-value {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(6rem, 15vw, 7rem);
  height: clamp(6rem, 15vw, 7rem);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 600;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 30%;
  margin: 0 auto 0.8rem;
  color: #f8fafc;
  text-align: center;
  padding: 0;
  outline: none;
  transform: translateZ(20px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2),
              inset 0 0 10px rgba(255,255,255,0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.time-value::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255,255,255,0.1),
    rgba(255,255,255,0)
  );
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.time-value:hover::before {
  left: 100%;
  top: 100%;
}

.time-label {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #000;
  font-weight: 500;
  letter-spacing: 0.5px;
  transform: translateZ(15px);
}
/* Modern 3D Social Icons - Professional Design */
.socials {
  margin-top: 4rem;
  padding-bottom: 1rem;
  transform-style: preserve-3d;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0;
  margin: 0;
  list-style: none;
  perspective: 1000px;
}

.social-icons li {
  position: relative;
  transform-style: preserve-3d;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: white;
  color: #2c3e50;
  font-size: 1.6rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  transform-style: preserve-3d;
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateZ(20px);
  border: 1px solid rgba(0,0,0,0.05);
  animation: float 4s ease-in-out infinite;
  z-index: 1;
}

/* 3D Depth Effect */
.social-icons a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 14px;
  opacity: 0;
  transition: all 0.4s ease;
  transform: translateZ(-10px);
  z-index: -1;
}

/* Hover Effect */
.social-icons a:hover {
  transform: 
    translateY(-6px) 
    rotateX(15deg) 
    translateZ(30px);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover::before {
  opacity: 1;
  transform: translateZ(0);
}

/* LinkedIn */
.social-icons a.linkedin { color: #0077B5; }
.social-icons a.linkedin::before { background: #0077B5; }
.social-icons a.linkedin:hover { color: white; }
.social-icons a.linkedin:hover::before { background: #0077B5; }

/* Facebook */
.social-icons a.facebook { color: #3B5998; }
.social-icons a.facebook::before { background: #3B5998; }
.social-icons a.facebook:hover { color: white; }
.social-icons a.facebook:hover::before { background: #3B5998; }

/* Instagram gradient text fix */
.social-icons a.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.social-icons a.instagram::before {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-icons a.instagram:hover {
  -webkit-text-fill-color: white;
  color: white;
}
.social-icons a.instagram:hover::before {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* WhatsApp */
.social-icons a.whatsapp { color: #25D366; }
.social-icons a.whatsapp::before { background: #25D366; }
.social-icons a.whatsapp:hover { color: white; }
.social-icons a.whatsapp:hover::before { background: #25D366; }

/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0) translateZ(20px);
  }
  50% {
    transform: translateY(-8px) translateZ(25px);
  }
}

/* Staggered Animation Delay */
.social-icons li:nth-child(1) a { animation-delay: 0s; }
.social-icons li:nth-child(2) a { animation-delay: 0.2s; }
.social-icons li:nth-child(3) a { animation-delay: 0.4s; }
.social-icons li:nth-child(4) a { animation-delay: 0.6s; }

/* Responsive Adjustments */
@media (max-width: 768px) {
  .social-icons {
    gap: 1.5rem;
  }
  
  .social-icons a {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    border-radius: 14px;
  }
}

@media (max-width: 576px) {
  .social-icons {
    gap: 1.2rem;
  }
  
  .social-icons a {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    border-radius: 12px;
  }
}

@media (max-width: 400px) {
  .social-icons a {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}



/* Responsive Adjustments */
@media (max-width: 992px) {
  .home .content {
    padding: 4rem 0 2rem;
  }
  
  .time-value {
    width: clamp(5rem, 12vw, 6rem);
    height: clamp(5rem, 12vw, 6rem);
  }
}

@media (max-width: 768px) {
  .home .content {
    width: 95%;
    padding: 3rem 0 2rem;
  }
  
  
  
  .wrapper {
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .home {
    padding: 1.5rem 1rem;
    min-height: 90vh;
  }
  
  .home .content {
    padding: 2rem 0 1rem;
  }
  
  .wrapper {
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  
  .time-value {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 2rem;
  }
  
  .time-label {
    font-size: 0.9rem;
  }
  
 
  
  .home .btn {
    padding: 1.1rem 2.2rem;
    font-size: 1.2rem;
  }
}

@media (max-width: 400px) {
  .time-value {
    width: 4rem;
    height: 4rem;
    font-size: 1.8rem;
  }
  
  
}

/* 3D Floating Animation for Main Elements */
@keyframes float3d {
  0%, 100% {
    transform: translateY(0) translateZ(20px) rotateX(0deg) rotateY(0deg);
  }
  25% {
    transform: translateY(-10px) translateZ(25px) rotateX(5deg) rotateY(5deg);
  }
  50% {
    transform: translateY(0) translateZ(20px) rotateX(0deg) rotateY(10deg);
  }
  75% {
    transform: translateY(-10px) translateZ(25px) rotateX(-5deg) rotateY(5deg);
  }
}

/* Apply floating animation to main heading */
.home .content h2 {
  animation: float3d 8s ease-in-out infinite;
}

/* 3D Rotation Animation for Clock Blocks */
@keyframes rotate3d {
  0% {
    transform: rotateX(0deg) rotateY(0deg) translateZ(20px);
  }
  25% {
    transform: rotateX(5deg) rotateY(5deg) translateZ(25px);
  }
  50% {
    transform: rotateX(0deg) rotateY(10deg) translateZ(20px);
  }
  75% {
    transform: rotateX(-5deg) rotateY(5deg) translateZ(25px);
  }
  100% {
    transform: rotateX(0deg) rotateY(0deg) translateZ(20px);
  }
}

/* Apply rotation to time blocks on hover */
.time-block:hover .time-value {
  animation: rotate3d 2s ease-in-out;
}

/* 3D Depth Pulse Animation */
@keyframes depthPulse {
  0%, 100% {
    transform: translateZ(20px);
    box-shadow: 0 8px 20px rgba(111, 0, 255, 0.4);
  }
  50% {
    transform: translateZ(30px);
    box-shadow: 0 12px 25px rgba(111, 0, 255, 0.6);
  }
}

/* Apply depth pulse to register button */
.home .btn {
  animation: depthPulse 3s ease-in-out infinite;
}
/* hero section ends */

/* about section starts */
.about {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  transform: rotate(30deg);
  z-index: 0;
}

.heading-container {
  text-align: center;
  margin-bottom: 4rem;
  perspective: 1000px;
}

/* NEW 3D Heading Animation - Glowing Text with Floating Effect */
.heading {
  font-size: clamp(2rem, 4vw, 3rem);
  display: inline-block;
  color: #2c3e50;
  position: relative;
  padding: 0 2rem;
  transform-style: preserve-3d;
  animation: floatHeading 4s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(58, 12, 163, 0.3);
}

@keyframes floatHeading {
  0%, 100% {
    transform: translateY(0) rotateX(0deg);
  }
  50% {
    transform: translateY(-15px) rotateX(5deg);
  }
}

.heading i {
  margin-right: 1rem;
  color: #3a0ca3;
  display: inline-block;
  transition: all 0.5s ease;
  filter: drop-shadow(0 0 5px rgba(58, 12, 163, 0.5));
}

.heading span {
  color: #3a0ca3;
  font-weight: 700;
  position: relative;
  display: inline-block;
  transition: all 0.4s ease;
}

/* NEW Hover Effects */
.heading:hover {
  animation: none;
  transform: translateY(-5px) rotateX(10deg);
  text-shadow: 0 5px 15px rgba(58, 12, 163, 0.4);
}

.heading:hover i {
  transform: scale(1.2) rotateY(20deg);
  color: #7209b7;
  filter: drop-shadow(0 0 10px rgba(114, 9, 183, 0.7));
}

.heading:hover span {
  transform: translateZ(10px);
  color: #7209b7;
}

/* NEW Pseudo-element Glow Effect */
.heading::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3a0ca3, transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  opacity: 0;
}

.heading:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.about .row {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
}

.about .row .image {
  flex: 1 1 45%;
  min-width: 350px;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1500px;
}

.about .row .image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  object-fit: cover;
  transform: rotateY(-5deg) translateZ(20px);
  box-shadow: 20px 20px 40px rgba(0,0,0,0.15),
              -10px -10px 30px rgba(255,255,255,0.8);
  animation: floatAbout 6s ease-in-out infinite;
}

.about .row .image img:hover {
  transform: rotateY(0deg) translateZ(30px) scale(1.02);
  box-shadow: 25px 25px 50px rgba(0,0,0,0.2),
              -15px -15px 40px rgba(255,255,255,0.9);
  animation: none;
}

.about .row .content {
  flex: 1 1 45%;
  padding: 1rem;
  min-width: 300px;
  transform: translateZ(40px);
}

.about .row .content h3 {
  color: #000000;
  font-size: clamp(1.8rem, 2.2vw, 2.4rem);
  margin: 1.5rem 0 1rem;
  position: relative;
  padding-left: 1.8rem;
  line-height: 1.3;
  transform: translateZ(20px);
  transition: all 0.3s ease;
}

.about .row .content h3:hover {
  transform: translateZ(30px) translateX(10px);
  color: #3a0ca3;
}

.about .row .content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  width: 6px;
  background: #000000;
  border-radius: 6px;
}

.about .row .content p {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.8;
  color: #000000;
  margin-bottom: 1.5rem;
  transform: translateZ(15px);
}

.about .row .content p b {
  color: #000000;
  font-weight: 700;
}

.resumebtn {
  margin: 3rem 0 1rem;
  text-align: center;
  width: 100%;
}

.resumebtn .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  background: #7300ff;
  color: rgb(255, 255, 255);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(37, 6, 173, 0.4);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: translateZ(25px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-width: 200px;
}
.resumebtn .btn:hover {
  background: #ff0000;
  transform: translateY(-3px) translateZ(30px);
  box-shadow: 0 12px 25px rgba(255, 0, 0, 0.4),
              0 7px 7px rgba(0,0,0,0.2);
}

/* Floating Animation */
@keyframes floatAbout {
  0%, 100% {
    transform: rotateY(-5deg) translateY(0) translateZ(20px);
  }
  50% {
    transform: rotateY(-5deg) translateY(-15px) translateZ(30px);
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .about .row {
    gap: 3rem;
  }
}

@media (max-width: 992px) {
  .about .row {
    flex-direction: column;
    gap: 3rem;
    padding: 0 3rem;
  }
  
  .about .row .image {
    min-width: 100%;
    max-width: 500px;
  }
  
  .about .row .image img {
    max-height: 450px;
    transform: rotateY(0deg) translateZ(20px);
    animation: floatAboutMobile 6s ease-in-out infinite;
  }
  
  @keyframes floatAboutMobile {
    0%, 100% {
      transform: rotateY(0deg) translateY(0) translateZ(20px);
    }
    50% {
      transform: rotateY(0deg) translateY(-10px) translateZ(25px);
    }
  }
}

@media (max-width: 768px) {
  .about {
    padding: 3rem 0;
  }
  
  .heading {
    margin-bottom: 3rem;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    animation: floatHeadingMobile 4s ease-in-out infinite;
  }
  
  @keyframes floatHeadingMobile {
    0%, 100% {
      transform: translateY(0) rotateX(0deg);
    }
    50% {
      transform: translateY(-8px) rotateX(3deg);
    }
  }
  
  .about .row {
    padding: 0 2rem;
    gap: 2.5rem;
  }
  
  .about .row .content h3 {
    font-size: 1.7rem;
    padding-left: 1.5rem;
  }
  
  .about .row .content p {
    font-size: 1.1rem;
  }
  
  .resumebtn .btn {
    padding: 1rem 2.5rem;
  }
}

@media (max-width: 576px) {
  .about {
    padding: 2.5rem 0;
  }
  
  .heading {
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }
  
  .heading i {
    margin-right: 0.8rem;
  }
  
  .about .row {
    padding: 0 1.5rem;
    gap: 2rem;
  }
  
  .about .row .image img {
    max-height: 380px;
    border-radius: 8px;
  }
  
  .about .row .content h3 {
    font-size: 1.5rem;
    padding-left: 1.2rem;
  }
  
  .about .row .content h3::before {
    width: 4px;
  }
  
  .resumebtn {
    margin: 2.5rem 0 1rem;
    padding: 0 1rem;
  }
  
  .resumebtn .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    min-width: unset;
  }
}

@media (max-width: 400px) {
  .about .row {
    padding: 0 1rem;
  }
  
  .about .row .content h3 {
    font-size: 1.4rem;
  }
  
  .about .row .content p {
    font-size: 1rem;
  }
  
  .resumebtn .btn {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
  
  .about::before {
    display: none;
  }
}
/* about section ends */


/* testimonial starts  */

    body {
      font-family: "Poppins", sans-serif;
      background: #f9f9fb;
      color: #333;
      line-height: 1.6;
      touch-action: pan-y;
    }

    .testimonial {
      text-align: center;
      padding: 80px 20px;
      position: relative;
    }

    .carousel-container {
      position: relative;
      max-width: 1400px;
      margin: 0 auto;
      overflow: hidden;
      padding: 65px 0; /* Increased space for half-out photo */
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
      cursor: grab;
      will-change: transform;
    }

    .carousel-track:active {
      cursor: grabbing;
    }

    .testimonial-card {
      position: relative;
      background: #fff;
      border-radius: 25px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      padding: 80px 50px 50px; /* Increased padding */
      min-width: calc(33.333% - 30px);
      flex: 0 0 calc(33.333% - 30px);
      margin: 0 15px;
      transition: all 0.3s ease;
    }

   .testimonial-card img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid #fff;
  background: #fff;
  box-shadow: 
    0 0 0 4px #7d3cff, /* Thicker purple glow */
    0 6px 15px rgba(0, 0, 0, 0.15); /* Larger drop shadow */
}

@media (max-width: 576px) {
  .testimonial-card img {
    width: 100px;
    height: 100px;
    top: -50px;
    border: 6px solid #fff;
    box-shadow: 
      0 0 0 3px #7d3cff,
      0 5px 12px rgba(0, 0, 0, 0.15);
  }
}

    .testimonial-card h4 {
      font-size: 2rem;
      font-weight: 600;
      margin-top: 15px;
    }

    .testimonial-card p.role {
      color: #666;
      font-size: 1.4rem;
      margin-bottom: 20px;
    }

    .stars {
      color: #f4b400;
      font-size: 1.8rem;
      margin-bottom: 20px;
    }

    .testimonial-card p.text {
      font-size: 1.6rem;
      color: #555;
      line-height: 1.7;
    }

    .carousel-dots {
      display: flex;
      justify-content: center;
      margin-top: 40px;
      padding: 0 20px;
    }

    .dot {
      width: 15px;
      height: 15px;
      background: #ddd;
      border-radius: 50%;
      margin: 0 8px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .dot.active {
      background: #7d3cff;
    }

    /* Responsive adjustments */
    @media (max-width: 1200px) {
      .testimonial-card {
        padding: 80px 40px 45px;
      }
      
      .testimonial-card p.text {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 992px) {
      .testimonial-card {
        min-width: calc(50% - 30px);
        flex: 0 0 calc(50% - 30px);
      }
      
      .testimonial-card h4 {
        font-size: 1.8rem;
      }
      
      .testimonial-card p.text {
        font-size: 1.4rem;
      }
    }

    @media (max-width: 768px) {
      testimonial {
        padding: 70px 20px;
      }
      
      .testimonial-card {
        padding: 80px 35px 40px;
      }
      
      .testimonial-card img {
        width: 120px;
        height: 120px;
        top: -60px;
      }
    }

    @media (max-width: 576px) {
      .testimonial-card {
        min-width: calc(100% - 30px);
        flex: 0 0 calc(100% - 30px);
        padding: 70px 30px 40px;
      }
      
      .testimonial-card h4 {
        font-size: 1.7rem;
      }
      
      .testimonial-card p.text {
        font-size: 1.3rem;
      }
      
      .stars {
        font-size: 1.6rem;
      }
    }
/* testimonial ends  */

/* event organizers starts */
:root {
  --bg-color: #ffffff;
  --text-color: #333;
  --main-color: #5d00fffd;
  --white-color: #fdfdfd;
  --shadow-color: rgba(0, 0, 0, .2);
}

/* 3D Heading Animation */
.heading {
  position: relative;
  display: inline-block;
  perspective: 1000px;
  text-align: center; /* Centers text inside */
  width: 100%; /* Makes sure it spans across the container */
}

.heading i {
  transition: transform 0.5s ease;
  display: inline-block;
}

.heading span {
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease;
}

/* 3D Underline Animation */
.heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) scaleX(0) rotateX(60deg);
  width: 80%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--main-color), transparent);
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  opacity: 0;
  z-index: -1;
}

.heading:hover::after {
  transform: translateX(-50%) scaleX(1) rotateX(0deg);
  opacity: 1;
}

.heading:hover i {
  transform: translateY(-5px) rotateY(20deg);
}

.heading:hover span {
  transform: translateY(-3px);
}

/* 3D Event Slide Effects */
.event-slide {
  transform-style: preserve-3d;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transform: translateZ(0);
}

.event-slide:hover {
  transform: translateZ(20px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15) !important;
}

.event-slide img {
  width: 14rem;
  height: 14rem;
  object-fit: cover;
  border-radius: 50%;
  border: .5rem solid var(--bg-color);
  outline: .5rem solid var(--main-color);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.event-slide:hover img {
  transform: scale(1.05); /* Removed rotateY to avoid clipping */
  border-radius: 50%; /* Keeps it perfectly circular */
  box-shadow: 0 0 15px rgba(93, 0, 255, 0.4); /* Optional glow */
}

/* 3D Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  transition: all 0.4s ease;
  transform: translateZ(0);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: translateZ(20px) scale(1.2);
  color: var(--main-color) !important;
}

/* 3D Pagination Bullets */
.swiper-pagination-bullet {
  transition: transform 0.3s ease;
}

.swiper-pagination-bullet-active {
  transform: scale(1.3) translateZ(10px);
  box-shadow: 0 0 10px var(--main-color);
}

/* Responsive 3D Effects */
@media (max-width: 768px) {
  .heading::after {
    height: 3px;
    bottom: -8px;
  }
  
  .event-slide:hover {
    transform: translateZ(10px);
  }
  
  .event-slide:hover img {
    transform: scale(1.03) rotateY(5deg);
  }
}

@media (max-width: 576px) {
  .heading::after {
    height: 2px;
    bottom: -6px;
  }
  
  .heading:hover i {
    transform: translateY(-3px) rotateY(10deg);
  }
}

.event-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 5rem 1rem;
}

.event-container .event-wrapper {
  position: relative;
  max-width: 90rem;
  width: 100%;
  padding: 5rem;
}

.event-wrapper .event-box {
  padding: 1rem;
  border-radius: 2rem;
  overflow: hidden;
}

.event-content .event-slide {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: var(--bg-color);
  border-radius: 2rem;
  box-shadow: 0 .1rem .5rem var(--shadow-color);
  padding: 3rem 5rem;
  border-top: .8rem solid var(--main-color);
  border-bottom: .8rem solid var(--main-color);
}

.event-slide img {
  width: 14rem;
  height: 14rem;
  object-fit: cover;
  border-radius: 50%;
  border: .5rem solid var(--bg-color);
  outline: .5rem solid var(--main-color);
}

.event-slide h3 {
  font-size: 2.5rem;
  margin: 2rem 0;
}

.event-slide p {
  font-size: 1.4rem;
  text-align: center;
}

.event-box .swiper-button-next,
.event-box .swiper-button-prev {
  color: var(--main-color);
}

.event-box .swiper-button-next {
  right: 0;
}

.event-box .swiper-button-prev {
  left: 0;
}

.event-box .swiper-pagination-bullet {
  background: rgba(0, 0, 0, .8);
}

.event-box .swiper-pagination-bullet-active {
  background: var(--main-color);
}

/* BREAKPOINTS */
@media (max-width: 768px) {
  #menu-icon {
    display: block;
  }

  .event-container .event-wrapper {
    padding: 5rem 0;
  }

  .event-content .event-slide {
    padding: 3rem 2rem;
  }

  .event-box .swiper-button-next,
  .event-box .swiper-button-prev {
    display: none;
  }
}
/* event organizers ends */

/* events technical and non technical starts  */


/* CSS Variables for Module1 */
.container01 {
  --primary01: #5d00ff;
  --secondary01: #4a00b3;
  --accent01: #5d00ff;
  --dark01: #1a1a2e;
  --light01: #f8f9fa;
  --shadow01: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 16px; /* Override the html font-size for your module */
}

/* Base styles only inside container01 */
.container01 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Nunito', sans-serif;
}

.container01 {
  background-color: transparent;
  color: var(--dark01);
  padding: 20px;
  line-height: 1.6;
  min-height: 100vh;
  max-width: 1150px; /* Further increased */
  margin: 0 auto;
}

.section-title01 {
  font-size: 2.7rem !important;
  margin: 3rem 0 1.5rem;
  color: var(--primary01);
  position: relative;
  text-align: center;
  line-height: 1.3;
  font-weight: 600;
  transition: color 0.3s ease;
}

.section-title01:hover {
  color: var(--secondary01);
}

.section-title01::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background: linear-gradient(to right, var(--primary01), var(--accent01));
  margin: 1rem auto 0;
  border-radius: 3px;
}

/* Add these to your existing CSS */
.event-card01 {
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.event-card01:hover {
  transform: perspective(1000px) translateZ(20px);
}

/* Optional: Add depth to card content */
.event-card01 h3,
.event-card01 p,
.event-card01 .register-btn01 {
  transform: translateZ(30px);
}

/* Events Grid */
.events-container01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.8rem; /* Increased */
  margin: 2rem 0 4rem;
}

/* Event Cards */
.event-card01 {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem !important; /* Increased */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  min-height: 300px; /* Further increased */
  width: 100%;
  margin: 0 auto;
  height: auto;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.event-card01:hover {
  box-shadow: 0 15px 30px rgba(93, 0, 255, 0.2);
}

.event-card01 h3 {
  color: var(--dark01);
  font-size: 2.3rem !important;
  margin-top: 2.2rem;
  margin-bottom: 1.4rem; /* Increased */
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: color 0.3s ease;
}

.event-card01:hover h3 {
  color: var(--primary01);
}

.event-card01 h3 span {
  font-size: 2.6rem !important;
  transition: transform 0.3s ease;
}

.event-card01:hover h3 span {
  transform: scale(1.1);
}

.event-card01 p {
  color: #4a5568;
  margin-bottom: 2rem; /* Increased */
  font-size: 1.7rem !important; /* Slightly reduced from 1.9rem */
  line-height: 1.5;
  flex-grow: 1;
  font-family: 'Nunito', sans-serif;
}

/* Technical/Non-technical indicators */
.technical01 {
  border-top: 6px solid var(--primary01);
  background: linear-gradient(to bottom, white, #f9f5ff);
}

.non-technical01 {
  border-top: 6px solid var(--primary01);
  background: linear-gradient(to bottom, white, #f8f5ff);
}

/* -------- BUTTONS -------- */
.event-buttons01 {
  display: flex;
  gap: 1.5rem;
  margin-top: auto;
}

.register-btn01,
.rules-btn01 {
  background: var(--primary01);
  color: white;
  border: none;
  padding: 1.1rem 1.8rem;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(93, 0, 255, 0.2);
  flex: 1; /* Equal width for both buttons */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.register-btn01::before,
.rules-btn01::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
  z-index: -1;
}

.register-btn01:hover,
.rules-btn01:hover {
  background: var(--secondary01);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(93, 0, 255, 0.3);
}

.register-btn01:active,
.rules-btn01:active {
  transform: translateY(1px);
  box-shadow: 0 3px 10px rgba(93, 0, 255, 0.3);
}

/* Mobile: stack buttons vertically */
@media (max-width: 576px) {
  .event-buttons01 {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .events-container01 {
    gap: 2.5rem;
  }
  
  .event-card01 {
    padding: 1.8rem !important;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.9rem !important;
    margin: 1.5rem 0 2rem;
  }
  
  .section-title01 {
    font-size: 2.5rem !important;
    margin: 2.5rem 0 1.25rem;
  }
  
  .events-container01 {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .event-card01 {
    transform-style: preserve-3d;
    will-change: transform, box-shadow;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    padding: 1.8rem !important;
    border-radius: 1.25rem;
    min-height: 260px;
    width: 92%;
  }

  .event-card01 h3 {
    font-size: 2.2rem !important;
  }
  
  .event-card01 p {
    font-size: 1.6rem !important;
  }
  
  .register-btn01 {
    padding: 1rem 1.6rem;
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  body {
    padding: 15px;
  }
  
  .container01 {
    padding: 0 1.25rem;
  }
  
  h1 {
    font-size: 2.7rem !important;
  }
  
  .section-title01 {
    font-size: 2.3rem !important;
  }
  
  .event-card01 {
    padding: 1.6rem !important;
    min-height: 240px;
    width: 94%;
  }
  
  .event-card01 h3 {
    font-size: 2.1rem !important;
  }
  
  .event-card01 p {
    font-size: 1.5rem !important;
  }
  
  .register-btn01 {
    padding: 0.9rem 1.5rem;
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: 2.5rem !important;
  }
  
  .section-title01 {
    font-size: 2.1rem !important;
  }
  
  .event-card01 {
    padding: 1.4rem !important;
    min-height: 230px;
    width: 96%;
  }
  
  .event-card01 h3 {
    font-size: 2rem !important;
  }
  
  .event-card01 h3 span {
    font-size: 2.2rem !important;
  }
  
  .event-card01 p {
    font-size: 1.4rem !important;
    margin-bottom: 1.6rem;
  }
}
/* events technical and non technical ends  */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  text-transform: capitalize;
  transition: all 0.2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}
 

/* ends  */


/* info-section starts */
.info-section {
  margin: 5rem auto;
  max-width: 1200px;
  width: 100%;
}

.header-wrapper {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.header-wrapper .section-title {
  font-size: 3rem;
  color: #020133;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.header-wrapper .title-underline {
  height: 4px;
  width: 100px;
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.header-wrapper .title-underline::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    #f68c09, 
    transparent);
  animation: underlineWave 2s ease-in-out infinite;
  animation-delay: 0.5s;
}

@keyframes underlineWave {
  0% { left: -100%; }
  100% { left: 100%; }
}

.info-section .section-subtitle {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 4rem;
  line-height: 1.6;
  padding: 0 2rem;
}

.info-section .info-timeline {
  position: relative;
  max-width: 1200px;
  margin: 2rem auto;
}

.info-section .info-timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background: #020133;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  z-index: -2;
  border-radius: 3px;
}

.info-section .timeline-box {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  margin-bottom: 2rem;
}

/* circles on timeline */
.info-section .timeline-box::after {
  content: "\f0b1";
  position: absolute;
  width: 30px;
  height: 30px;
  right: -20px;
  background-color: rgb(255, 255, 255);
  border: 4px solid #f68c09;
  top: 15px;
  border-radius: 50%;
  z-index: 100;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 600;
  color: #02094b;
  font-family: 'Font Awesome\ 5 Free';
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.info-section .left-box {
  left: 0;
}

.info-section .right-box {
  left: 50%;
}

/* arrows pointing right */
.info-section .left-box::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #f68c09;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #f68c09;
}

/* arrows pointing left */
.info-section .right-box::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #f68c09;
  border-width: 10px 10px 10px 0;
  border-color: transparent #f68c09 transparent transparent;
}

.info-section .right-box::after {
  left: -20px;
}

.info-section .info-card {
  background-color: #f68c09;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-section .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.info-section .info-card .card-header {
  font-size: 1.4rem;
  padding-top: 1.5rem;
  padding-left: 1.5rem;
  color: #020133;
}

.info-section .info-card .card-header h3 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.info-section .info-card .card-body {
  margin-left: 1.5rem;
  padding-bottom: 1.5rem;
}

.info-section .info-card .card-body h6 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}

/* action buttons */
.action-buttons {
  display: flex;
  justify-content: center;
  margin: 4rem 0 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.action-buttons .action-btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 50px;
  transition: all 0.5s ease;
  color: #fff;
  background: #2506ad;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, 0.4);
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.action-buttons .action-btn.secondary {
  background: #f68c09;
  box-shadow: 0px 5px 10px rgba(246, 143, 9, 0.4);
}

.action-buttons .action-btn.tertiary {
  background: #420177;
  box-shadow: 0px 5px 10px rgba(66, 1, 119, 0.4);
}

.action-buttons .action-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: width 0.5s ease;
  z-index: -1;
}

.action-buttons .action-btn:hover::before {
  width: 100%;
}

.action-buttons .action-btn span {
  font-weight: 600;
  font-size: 1.6rem;
  font-family: 'Nunito', sans-serif;
}

.action-buttons .action-btn i {
  margin-right: 0.5rem;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.action-buttons .action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 15px rgba(48, 68, 247, 0.6);
}

.action-buttons .action-btn.secondary:hover {
  box-shadow: 0px 8px 15px rgba(246, 143, 9, 0.6);
}

.action-buttons .action-btn.tertiary:hover {
  box-shadow: 0px 8px 15px rgba(66, 1, 119, 0.6);
}

.action-buttons .action-btn:hover i {
  transform: translateX(5px);
}

/* Media queries - Responsive timeline */
@media screen and (max-width: 768px) {
  .info-section {
    margin-top: 3rem;
  }
  
  .header-wrapper .section-title {
    font-size: 2.5rem;
  }
  
  .info-section .section-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
  }
  
  .info-section .info-timeline::after {
    left: 31px;
  }
  
  .info-section .timeline-box {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .info-section .timeline-box::before {
    left: 60px;
    border: medium solid #f68c09;
    border-width: 10px 10px 10px 0;
    border-color: transparent #f68c09 transparent transparent;
  }
  
  .info-section .left-box::after,
  .info-section .right-box::after {
    left: 15px;
  }
  
  .info-section .right-box {
    left: 0%;
  }
  
  .info-section .timeline-box::after {
    font-size: 2rem;
    width: 30px;
    height: 30px;
    top: 20px;
  }
  
  .info-section .info-card .card-header h3 {
    font-size: 1.6rem;
  }
  
  .info-section .info-card .card-body h6 {
    font-size: 1.4rem;
  }
  
  .action-buttons {
    margin: 3rem 0;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .action-buttons .action-btn {
    width: 80%;
    max-width: 250px;
    padding: 1.4rem;
  }
}

@media (max-width: 480px) {
  body {
    padding: 1rem;
  }
  
  .header-wrapper .section-title {
    font-size: 2.2rem;
  }
  
  .info-section .timeline-box {
    padding-left: 60px;
    padding-right: 15px;
  }
  
  .info-section .timeline-box::after {
    font-size: 1.8rem;
    width: 25px;
    height: 25px;
  }
  
  .info-section .info-card .card-header h3 {
    font-size: 1.4rem;
    padding-left: 1rem;
  }
  
  .info-section .info-card .card-body {
    margin-left: 1rem;
  }
  
  .info-section .info-card .card-body h6 {
    font-size: 1.3rem;
  }
  
  .action-buttons .action-btn {
    width: 90%;
    padding: 1.3rem;
  }
  
  .action-buttons .action-btn span {
    font-size: 1.4rem;
  }
  
  .action-buttons .action-btn i {
    font-size: 1.3rem;
  }
}

/* Animation delays */
.animate__animated.animate__fadeInLeft {
  animation-delay: 0.1s;
}

.animate__animated.animate__fadeInRight {
  animation-delay: 0.2s;
}

.animate__animated.animate__fadeInUp {
  animation-delay: 0.3s;
}


/* schedule starts  */
.schedule-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
}

.schedule-card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.schedule-card h3 {
  font-size: 1.2rem;
  color: #5d00ff;
  margin-bottom: 0.5rem;
}

.schedule-card p {
  font-size: 1rem;
  color: #333;
  margin: 0.2rem 0;
}

.schedule-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.schedule-card.lunch {
  background: linear-gradient(135deg, #fff6c0, #ffffff);
  border: 1px solid #fbc02d;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .schedule-container {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    padding: 0.8rem;
  }
  .schedule-card h3 {
    font-size: 1.1rem;
  }
  .schedule-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .schedule-container {
    grid-template-columns: 1fr;
    padding: 0.5rem;
  }
  .schedule-card {
    padding: 1rem;
  }
  .schedule-card h3 {
    font-size: 1rem;
  }
  .schedule-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .schedule-card {
    padding: 0.8rem;
  }
  .schedule-card h3 {
    font-size: 0.95rem;
  }
  .schedule-card p {
    font-size: 0.85rem;
  }
}
 /* schedule ends  */

/* Team Section */
.team-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 5rem 1rem;
}

.team-wrapper {
  position: relative;
  max-width: 90rem;
  width: 100%;
  padding: 5rem;
  display: flex;
  justify-content: center;
}

.team-card {
  padding: 1rem;
  border-radius: 2rem;
  overflow: hidden;
}

/* Developer Card */
.team-content .developer-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: var(--bg-color);
  border-radius: 2rem;
  box-shadow: 0 .1rem .5rem var(--shadow-color);
  padding: 3rem 5rem;
  border-top: .8rem solid var(--main-color);
  border-bottom: .8rem solid var(--main-color);
  transition: transform 0.3s ease;
}

/* Image */
.developer-card img {
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border: .5rem solid var(--bg-color);
  outline: .5rem solid var(--main-color);
  filter: brightness(1.1) drop-shadow(0 0 10px rgba(93, 0, 255, 0.4)); /* Bright + glow */
  transition: filter 0.3s ease, transform 0.3s ease;
}

/* Optional hover effect */
.developer-card img:hover {
  filter: brightness(1.2) drop-shadow(0 0 15px rgba(93, 0, 255, 0.5));
  transform: scale(1.05);
}

/* Text Styling */
.developer-name {
  font-size: 2.5rem;
  margin: 1.5rem 0 0.5rem 0;
  text-align: center;
}

.developer-role {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--main-color);
  margin-bottom: 0.5rem;
  text-align: center;
}

.developer-stars {
  font-size: 1.6rem;
  color: gold;
  margin-bottom: 1.2rem;
  text-align: center;
}

.developer-description {
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.8rem;
}

/* BREAKPOINTS */
@media (max-width: 768px) {
  .team-wrapper {
    padding: 3rem 0;
  }

  .team-content .developer-card {
    padding: 2rem 1.5rem;
  }

  .developer-card img {
    width: 12rem;
    height: 12rem;
  }

  .developer-name {
    font-size: 2rem;
  }

  .developer-role {
    font-size: 1.4rem;
  }

  .developer-stars {
    font-size: 1.4rem;
  }

  .developer-description {
    font-size: 1.2rem;
  }
}


/* footer section starts */
.footer {
  min-height: auto;
  padding-top: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: #333;
}

.footer .box-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem;
  gap: 2rem;
}

.footer .box-container .box {
  flex: 1 1 25rem;
  margin: 2.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.footer .box-container .box:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.footer .box-container .box h3 {
  font-size: 2.5rem;
  color: inherit;
  padding-bottom: 1rem;
  font-weight: normal;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.footer .box-container .box p {
  font-size: 1.5rem;
  color: inherit;
  padding: 0.7rem 0;
  line-height: 1.6;
}

.footer .box-container .box p i {
  padding-right: 1rem;
  color: inherit;
  transition: color 0.3s ease; /* Contact icon hover transition */
}

.footer .box-container .box p i:hover {
  color: #6a00ff; /* Icon color on hover */
}

.footer .box-container .box a {
  font-size: 1.5rem;
  color: inherit;
  padding: 0.3rem 0;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer .box-container .box a:hover {
  color: #6a00ff;
  transform: translateX(5px);
}

.footer .box-container .box .share {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
  gap: 1rem;
}

.footer .box-container .box .share a {
  height: 4rem;
  width: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.7rem;
  background: rgba(0, 0, 0, 0.1);
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.footer .box-container .box .share a:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: translateY(-3px) scale(1.05);
  color: #6a00ff;
}

/* Footer credit text */
.footer .credit {
  padding: 2rem 0;
  text-align: center;
  font-size: 1.5rem;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  color: inherit;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 1rem;
  line-height: 1.6;
  white-space: nowrap; /* Keep single line on desktop */
}

.footer .credit a {
  color: #6a00ff;
  transition: all 0.3s ease;
}

.footer .credit a:hover {
  color: #4d00b5;
  text-decoration: underline;
}

.footer .fa {
  color: #ff3366; /* Keeps the heart animation red */
  margin: 0 0.3rem;
  font-size: 1.5rem;
  animation: pound 0.35s infinite alternate;
}

@keyframes pound {
  to {
    transform: scale(1.1);
  }
}

/* Dark mode adaptation */
@media (prefers-color-scheme: dark) {
  .footer {
    background: rgba(0, 0, 0, 0.2);
    color: #eee;
  }

  .footer .box-container .box {
    background: rgba(0, 0, 0, 0.15);
  }

  .footer .box-container .box:hover {
    background: rgba(0, 0, 0, 0.25);
  }

  .footer .box-container .box .share a {
    background: rgba(255, 255, 255, 0.1);
  }

  .footer .box-container .box .share a:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer .box-container {
    flex-direction: column;
    padding: 1rem;
  }

  .footer .box-container .box {
    margin: 1rem 0;
    padding: 1.5rem;
  }

  .footer .box-container .box h3 {
    font-size: 2rem;
  }

  .footer .box-container .box p,
  .footer .box-container .box a {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .footer .box-container .box {
    margin: 1rem 0;
    padding: 1rem;
  }

  .footer .box-container .box .share a {
    height: 3.5rem;
    width: 3.5rem;
    font-size: 1.5rem;
  }

  /* Credit text responsive for mobile */
  .footer .credit {
    font-size: 1.2rem;
    padding: 1rem;
    white-space: normal;
    word-break: break-word;
  }

  .footer .credit a {
    display: inline-block;
    margin: 0 2px;
  }
}

/* Extra small devices: stack heart on separate line */
@media (max-width: 360px) {
  .footer .credit .fa {
    display: block;
    margin: 0.3rem auto;
  }
}
/* footer section ends */


/* scroll top starts */
#scroll-top {
  position: fixed;
  top: -140%;
  right: 2rem;
  padding: 1rem 1.5rem;
  font-size: 2rem;
  background: #6a00ff;
  color: rgb(13, 0, 44);
  border-radius: 50%;
  transition: 1s linear;
  z-index: 1000;
}
#scroll-top.active {
  top: calc(100% - 12rem);
}
/* scroll top ends */
