@tailwind base;
@tailwind components;
@tailwind utilities;

/* @import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  /* font-family: "Urbanist", sans-serif; */
  font-family: "Jost", sans-serif;
  font-style: normal;
}

.heading-white {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #fff;
  color: transparent;
}

.heading-black {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #000;
  color: transparent;
}

.animate-title {
  left: 0;
  animation: titleSlide 2s ease-in infinite;
}

@keyframes titleSlide {
  0% {
    left: 0;
  }

  50% {
    left: calc(100% - 5px);
  }

  100% {
    left: 0;
  }
}

/* light theme button */
.button2 {
  display: inline-block;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #fff;
  padding: 0.7em 1.7em;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  background: #17243d;
  border: 1px solid #17243d;
  box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
}

.button2:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
}

.button2:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button2:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #e8e8e8;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button2:hover {
  color: #17243d;
  border: 1px solid #17243d;
}

.button2:hover:before {
  top: -35%;
  background-color: #e8e8e8;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.button2:hover:after {
  top: -45%;
  background-color: #e8e8e8;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}


/* dark theme button */
.button3 {
  display: inline-block;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #090909;
  padding: 0.7em 1.7em;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50PX;
  background: #e8e8e8;
  border: 1px solid #e8e8e8;
  /* box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff; */
}

.button3:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
}

.button3:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button3:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #00accc;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button3:hover {
  color: #ffffff;
  border: 1px solid #00accc;
}

.button3:hover:before {
  top: -35%;
  background-color: #00accc;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.button3:hover:after {
  top: -45%;
  background-color: #00accc;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}


.gradient-text {
    font-weight: 700;
    /* font-size: 40px; */
    letter-spacing: 4px;
    /* text-transform: uppercase; */
    background: linear-gradient(90deg, #004d6e, #00accc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    /* display: inline-block; */
     margin-bottom: 20px;
     text-align: center;
}

.who-card {
 /* width: 190px;
 height: 254px; */
 border-radius: 30px;
 background: #3281bb33;
 /* box-shadow: 15px 15px 30px rgb(25, 25, 25),
             -15px -15px 30px rgb(60, 60, 60); */
}

    .gradient-text {
      background: linear-gradient(135deg, #004f70, #7eb3ca, #004f70);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Avatar arch shape */
    .avatar-arch {
      position: relative;
      max-width: 220px;
      width: 100%;
      max-height: 220px;
      height: 100%;
      margin: 0 auto;
    }

    .avatar-arch-bg {
      position: absolute;
      bottom: 0;
      left: 0%;
      /* transform: translateX(-50%); */
      max-width: 200px;
      max-height: 160px;
      width: 100%;
      height: 100%;
      background: linear-gradient(160deg, #004f70 0%, #0eb7ff 100%);
      border-radius: 0% 50% 0 0;
      z-index: 0;
    }

    .avatar-arch img {
      position: relative;
      z-index: 1;
      max-width: 220px;
      max-height: 220px;
      width:100%;
      height:100%;
      object-fit: cover;
      object-position: top center;
      border-radius: 50% 50% 0 0;
      display: block;
      margin: 0 auto;
      transition: transform 0.4s ease;
    }

    .speaker-card:hover .avatar-arch img {
      transform: scale(0.98);
    }

    .info-box {
      background: linear-gradient(135deg, #004f70 0%, #05A3C1 100%);
      border-radius: 0 0 12px 12px;
      padding: 12px 14px 14px;
      max-width: 220px;
      width: 100%;
      min-height: 80px;
      margin: 0 auto;
      box-shadow: 0 8px 24px #004f70;
      transition: box-shadow 0.4s ease;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .speaker-card:hover .info-box {
      box-shadow: 0 12px 32px #004f70;
    }

    .role-text {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 2rem;
      line-height: 1.2rem;
    }

    .role-dot {
      display: inline-block;
      width: 6px;
      height: 6px;
      background: #000;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 5px;
    }

    /* Section background subtle pattern */
    .section-bg {
      background: #ffffff;
      background-image: radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.04) 0%, transparent 50%),
                        radial-gradient(circle at 90% 80%, rgba(79, 70, 229, 0.04) 0%, transparent 50%);
    }

    /* Decorative accent bar */
    .accent-bar {
      width: 4px;
      height: 36px;
      background: linear-gradient(to bottom, #004f70, #0eb7ff);
      border-radius: 4px;
    }



