/* Google Fonts */
/* Noto Sans Bengali */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@100..900&display=swap');

/* Theme Colors */
:root {
  --primary: #c6a664;   /* Orange */
  --secondary: #FF0000; /* Red */
  --background: #FAE6D7;/* Light Peach */
  --text: #000000;      /* Black */
  --link: #0000FF;      /* Blue */
  --white: #FFFFFF;
  --glass-bg: rgba(255, 255, 255, 0.2);
  --glass-border: rgba(255, 255, 255, 0.3);
  --gold: #c6a664;
  --herobg: #f9f6f1;
}



/* Global Styles */

html{
  scroll-behavior: smooth;
}

body {
  background-color: #FCE7CA; /* Soft peach-beige */
  font-family: Arial, sans-serif;
  color: #341B0B; /* Rich brown for main text */
  
}

/* Header */
.header {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 10px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 20px;
  background-color: var(--white);
}

.hero iframe {
  margin: 15px 0;
}

.workshop-details {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.detail {
  background: var(--white);
  border: 2px solid var(--primary);
  padding: 10px;
  border-radius: 8px;
}

/* Button */
.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}
.btn-primary:hover {
  background: #c6a664;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
}

h1, h2 {
  color: #14110F;
  text-align: center;
  font-weight: bold;
}

h3{
  font-weight: bold;
  color: #c6a664;
  margin-bottom: 6px;
  font-size: 18px;
}

/* Kapy Code */

.card-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(255, 133, 0, 0.13);
  padding: 28px 18px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2.5px solid #c6a664; /* Add this line for orange border */
  min-width: 250px;
  justify-content: center; /* or space-around */
  max-width: 1200px;       /* set a max width to contain cards */
  margin: 0 auto;          /* center container horizontally */
  padding-right: 20px;     /* or add some right padding */
}


.card:hover {
  transform: translateY(-6px) scale(1.02);
  margin-top: 2px;
  box-shadow: 0 6px 20px rgba(255, 133, 0, 0.16);
  border-color: #EC6A05; /* Slight color shift on hover (optional) */
}

.card-icon {
  background: #c6a664;
  border-radius: 50%;
  color: white;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
  font-size: 32px;

}

.card-title {
  font-weight: bold;
  color: #c6a664;
  margin-bottom: 6px;
  font-size: 18px;

}

.card-price {
  color: #341B0B;
  font-weight: bold;
  font-size: 20px;

}

/* FAQ section */
.faq {
  margin-top: 50px;
}

.faq-title {
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  margin-bottom: 18px;
}

.faq-list {
  list-style: none;
  padding: 0;
  position: relative;
}

.faq-item {
  background: #FFF6E6;
  border-radius: 10px;
  margin-bottom: 10px;
  border-left: 4px solid #c6a664;
  overflow: hidden;
  transition: background 0.2s;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 500;
  color: #341B0B;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 24px;
}

.faq-question:hover {
  background: #FFE3B3;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 133, 0, 0.16);
}

.faq-answer {
  display: none;
  font-weight: bold;
  padding: 0 18px 14px 18px;
  color: #fff9f9;
  background: #c6a664;
}

.faq-item.active .faq-answer {
  display: block;
  padding-top: 6px;
}

.faq-arrow {
  transition: transform 0.3s ease;
  width: 20px;
  font-size: 24px;
  flex-shrink: 0;
  height: 20px;
  margin-left: 10px; 
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  
}

.experts-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px 40px 20px;
}

.experts-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: bold;
  color: #341b0b;
  margin-bottom: 36px;
}

.experts-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.expert-card {
  display: flex;
  align-items: flex-start;
  background: #fff6e6;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(255,133,0,0.09);
  padding: 28px 34px;
  gap: 30px;
}

.expert-photo img {
  width: 120px;
  height: 120px;
  object-fit: cover; /* Maintain aspect ratio, crop if needed */
  border-radius: 50%; /* Circular shape */
  border: 3px solid #ffefd7; /* Orange border matching design */
  display: block;
  object-fit:cover;
  object-position:top;

}

.expert-info {
  flex: 1;
}

.expert-name {
  font-weight: bold;
  font-size: 1.5rem;
  color: #ff6600; /* Signature orange */
  margin-bottom: 10px;
  
}

.expert-bio {
  font-size: 1.05rem;
  color: #341b0b;
  line-height: 1.9;
  margin-bottom: 5px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 2px 6px rgba(255,133,0,0.03);
}

.testimonials {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 32px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.video-card {
  background: #FFF6E6;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(255, 133, 0, 0.08);
  padding: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.video-card:hover {
  box-shadow: 0 8px 32px rgba(255, 133, 0, 0.16);
  transform: translateY(-4px) scale(1.03);
}
.video-card iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 12px;
}
@media (max-width: 900px) {
  .video-card iframe {
    height: 180px;
  }
}
@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
  .video-card iframe {
    height: 180px;
  }
}

/* Responsive adjustments */
@media (max-width: 800px) {
  .experts-list {
    gap: 20px;
  }
  .expert-card {
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    gap: 10px;
  }
  .expert-photo {
    margin: 0 0 18px 0;
  }
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 15px;
  margin-top: 20px;
}

/* shubojit da css */

.noto-bengali{
  font-family: "Noto Sans Bengali", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.section-navinfo {
  padding: 12px 20px;
  color: var(--white);
  text-align: center;
  position: fixed;
  width: 100%;
  z-index: 51;
}

.section-navinfo h1 {
  font-size: 18px;
  font-weight: 600;
  
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.section-navinfo h1 span {
  font-size: 16px;
}

.section-navinfo h1 button {
  color: black;
  cursor: pointer;
  padding: 3px;
  background-color: white;
  border: 2px solid white;
  border-radius: 5px;
  transition: ease-in 200ms;
}

.section-navinfo h1 button:hover {
  background-color: black;
  color: white;
  border-radius: 10px;
  padding: 4px;
}
/* 📱 Mobile adjustments */
@media (max-width: 600px) {
  .section-navinfo h1 {
    flex-direction: column; /* stack text & button */
    gap: 15px;
    font-size:12px;
  }

  .section-navinfo h1 span {
    font-size: 13px;
  }

  .section-navinfo h1 button {
    display: none;
  }
}

/* --- Hero Section --- */
.section-hero {
  padding: 90px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--herobg);
  position: relative;
  overflow: hidden;
}

/* Soft Gradient Glow Effect */
.section-hero::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(198, 166, 100, 0.4), transparent 70%);
  filter: blur(80px);
  z-index: 0;
}
.section-hero::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(150, 120, 70, 0.3), transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: right;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1300px;
  width: 100%;
  flex-wrap: wrap;
}

/* Left Section */
.hero-left {
  flex: 1;
}

.main-heading {
  font-size: 56px;
  line-height: 1.2;
  font-weight: 800;
  color: #222;
}
.text-law {
  background: linear-gradient(90deg, #b68d40, #c6a664);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sub-heading {
  font-size: 20px;
  color: #444;
  margin-top: 10px;
  margin-bottom: 20px;
}

.hero-info-bottom{
  text-align: center;
}

/* Glassmorphism Card */
.glass-card {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(198, 166, 100, 0.35);
}

.workshop-heading {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #b68d40;
}

.workshop-details {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.workshop-details li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 18px;
  color: #333;
}
.workshop-details ion-icon {
  font-size: 22px;
  color: #b68d40;
}

.limited-text {
  font-weight: bold;
  color: #8b4513;
  margin-bottom: 15px;
}

/* CTA Button */
.btn-join {
  display: inline-block;
  background: linear-gradient(90deg, #b68d40, #c6a664);
  color: white;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(182, 141, 64, 0.35);
}
.btn-join:hover {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(90deg, #8c6d2f, #b68d40);
}

.hurry-text {
  margin-top: 12px;
  font-size: 16px;
  color: #7b2d2d;
}

/* Right Video */
.hero-video {
  flex: 1;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 650px;
  height: 260px;
}
.hero-video iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: none;
  border-radius: 23px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}
.hero-video iframe:hover {
  transform: scale(1.03);
}

/* Testimonial CTA */
.testimonial-cta {
  margin-top: 50px;
  text-align: center;
  z-index: 1;
}
.testimonial-cta p {
  font-size: 20px;
  color: #222;
}
.btn-watch {
  margin-top: 15px;
  padding: 12px 26px;
  border: 1px solid #b68d40;
  border-radius: 40px;
  background: transparent;
  font-size: 18px;
  font-weight: bold;
  color: #b68d40;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
  text-decoration: none;
}

.btn-watch::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #b68d40;
  border-radius: 40px; /* make it follow the button shape */
  transition: width 0.4s ease;
  z-index: -1;
}

.btn-watch:hover {
  color: white;
}

.btn-watch:hover::before {
  width: 100%;
}


/* Animations */
.fade-in {
  animation: fadeIn 1.2s forwards;
}
.slide-up {
  animation: slideUp 1s forwards;
}
.slide-right {
  animation: slideRight 1s forwards;
}
.pulse {
  animation: pulseAnim 1.5s infinite;
}



@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulseAnim {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .hero-left {
    order: 2;
  }
  .hero-video {
    order: 1;
  }
}

@media (max-width: 600px) {
  .main-heading {
    font-size: 34px;
  }
  .hero-video iframe {
    height: 220px;
  }
}

/* Shrawan da css */
/* Used Font classes  */
/* Used Font classes  */
.poppins{
 font-family: "Poppins", sans-serif;
}


.parki{
  font-family: "Parkinsans", sans-serif;
}



#price-shine {
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shineSweep 3s infinite;
}


@keyframes shineSweep {
  0% {
    left: -50%;
  }
  100% {
    left: 120%;
  }
}

@keyframes sway {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

.animate-sway {
  animation: sway 2s ease-in-out infinite;
}


@keyframes rotateTimer {
  0%, 100% { transform: rotate(180deg) }
  25% { transform: translateX(-2px); }
  75% { transform: rotate(-180deg); }
}

#deadline-timer {
  animation: rotateTimer 3s ease-in-out infinite;
}

@keyframes appearDiv {
  from{
    opacity: 0;
    scale: 0.5;
  }
  to{
    opacity: 1;
    scale: 1;
  }
}

.appearIt{
  animation: appearDiv linear;
  animation-timeline: view();
  animation-range: 0;
scale: 0;
}




.wobble{
animation: wobble 1s ease-in-out infinite;
}

@keyframes wobble{
  0%{
    scale: 1;
  }
  50%{
    scale: 0.9;
  }
  75%{
    scale: 1.05;
  }
  100%{
    scale: 1;
  }
}


.wobbleX{
  animation: wobbleX 2s ease infinite;
}

@keyframes wobbleX {
    0%, 100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
    }

    15% {
        -webkit-transform: translateX(-15px) rotate(-0deg);
        transform: translateX(-15px) rotate(-0deg);
    }

    30% {
        -webkit-transform: translateX(calc(15px / 2)) rotate(0deg);
        transform: translateX(calc(15px / 2)) rotate(0deg);
    }

    45% {
        -webkit-transform: translateX(calc(-15px / 2)) rotate(calc(-0deg / 1.8));
        transform: translateX(calc(-15px / 2)) rotate(calc(-0deg / 1.8));
    }

    60% {
        -webkit-transform: translateX(calc(15px / 3.3)) rotate(calc(0deg / 3));
        transform: translateX(calc(15px / 3.3)) rotate(calc(0deg / 3));
    }

    75% {
        -webkit-transform: translateX(calc(-15px / 5.5)) rotate(calc(-0deg / 5));
        transform: translateX(calc(-15px / 5.5)) rotate(calc(-0deg / 5));
    }
}

.wobbleY{
  animation: wobbleY 2s ease infinite;
}

@keyframes wobbleY {
    0%, 100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
    }

    15% {
        -webkit-transform: translateX(-3px) rotate(-10deg);
        transform: translateX(-3px) rotate(-10deg);
    }

    30% {
        -webkit-transform: translateX(calc(3px / 2)) rotate(10deg);
        transform: translateX(calc(3px / 2)) rotate(10deg);
    }

    45% {
        -webkit-transform: translateX(calc(-3px / 2)) rotate(calc(-10deg / 1.8));
        transform: translateX(calc(-3px / 2)) rotate(calc(-10deg / 1.8));
    }

    60% {
        -webkit-transform: translateX(calc(3px / 3.3)) rotate(calc(10deg / 3));
        transform: translateX(calc(3px / 3.3)) rotate(calc(10deg / 3));
    }

    75% {
        -webkit-transform: translateX(calc(-3px / 5.5)) rotate(calc(-10deg / 5));
        transform: translateX(calc(-3px / 5.5)) rotate(calc(-10deg / 5));
    }
}


/*🔰 Soham CSS Start 🔰 */
.poppins {
  font-family: "Poppins", sans-serif;
}
.parki {
  font-family: "Parkinsans", sans-serif;
}

@keyframes sway {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

.animate-sway {
  animation: sway 2s ease-in-out infinite;
}
/* ====================================================== */
/* ============== My Popup CSS Starts Here ============== */
/* ====================================================== */

#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none; /* Initially hidden */
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeInPopup 0.3s ease-in-out;
}

@keyframes fadeInPopup {
  from { opacity: 0; }
  to { opacity: 1; }
}

#popup-card {
  background-color: #FAE6D7; /* Light Peach from image */
  padding: 30px 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 90%;
  width: 500px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: slideInPopup 0.4s ease-in-out;
}

@keyframes slideInPopup {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

#popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #888;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

#popup-close:hover {
  color: #333;
}

.popup-title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #341B0B; /* Rich brown from styles.css */
  margin-bottom: 20px;
}

.popup-join-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #b68d40, #c6a664);
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 111, 0, 0.4);
  border: none;
  cursor: pointer;
  margin-bottom: 15px;
}

.popup-join-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 111, 0, 0.5);
}

.popup-hurry-text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #341B0B;
}

.popup-limited-seats {
  color: #FF0000; /* Red from styles.css */
  font-weight: bold;
}
/* ============== My Popup CSS Ends Here ================ */

/* Back to Top Button Styles */
#back-to-top-btn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #c6a664; /* Orange from styles.css */
  color: white;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.3s;
}

#back-to-top-btn:hover {
  background-color: #c6a664; /* A slightly darker orange for hover */
  transform: scale(1.1);
}

/*🔰 Soham CSS End 🔰 */
