/* @font-face {
  font-family: "Poppins";
  src: url("../font/Poppins-Bold.ttf") format("woff2"),
    url("../font/Poppins-Regular.ttf") format("woff"),
 url("../font/Poppins-SemiBold.ttf") format("woff"),
 url("../font/Poppins-MediumItalic.ttf") format("woff"),

 
  
} */


body,
h1,
h2,
h3,
p,
span,
li {
  font-family: "Poppins", sans-serif;
}

:root {
  --yellow-primary: #ffd700;
  --yellow-secondary: #ffa500;
  --dark-bg: #1a1a1a;
  --darker-bg: #0f0f0f;
  --text-light: #ffffff;
  --text-gray: #e0e0e0;
  --card-bg: #2a2a2a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;

  line-height: 1.6;
}

/* Header */
.header {
  background: var(--darker-bg);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #333;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--yellow-primary);
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
}

.logo img {
  width: 124px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--yellow-primary);
}

.register-btn {
  background: var(--yellow-primary);
  color: var(--dark-bg);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.register-btn:hover {

  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: var(--darker-bg);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 20%,
      rgba(255, 215, 0, 0.05) 0%,
      transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  background: var(--yellow-primary);
  color: var(--dark-bg);
  /* padding: 3rem; */
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.hero-title {
  font-weight: 700;
  font-size: 68px;
  line-height: 78px;
  letter-spacing: 0%;
}

.hero-subtitle {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;

  text-transform: capitalize;
}

.hero-description {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.hero-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.powered-by {
  font-weight: 600;
  font-size: 0.9rem;
}


/* Section Styles */
.section {
  padding: 50px 0;
}

.text-higlightnew h4 {
  font-weight: 500 !important;
  font-size: 32px;
  line-height: 32px;
  text-transform: capitalize;
}

.text-muted {
  font-weight: 400 !important;
  font-size: 20px;
  line-height: 32px;
  font-style: Medium-Trial;
  color: #737373 !important;
  text-decoration-skip-ink: auto;
}

.grydoc {
  text-decoration: underline;
  text-decoration-style: solid;
  color: #737373;
}

.section-title {
  text-align: center;
  font-weight: 600;
  font-size: 56px;
  line-height: 93px;
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 3rem;
}

/* Why Participate Cards */
.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

  margin-top: 2rem;
}

.feature-card {
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--yellow-primary);
}

.feature-card h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;

  font-size: 24px;
  line-height: 38px;
  /* text-transform: capitalize; */
  color: #1c1e21;
  display: inline-block;
  margin-bottom: 16px;
  position: relative;
}

.top_feature h4 {
  font-size: 24px;
}

.forboldt {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: Medium-Trial;
  font-size: 20px;
  line-height: 32px;
  color: #090909;
}

.feature-card h4::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--yellow-primary);
  margin-top: 0.5rem;
  position: absolute;
  top: -20px;
}

.feature-card p {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: #737373;
}

/* Timeline Section */
.timeline-section {
  background: var(--light-bg);
}

.timeline-container {
  gap: 46px;
  display: flex;
  margin: 0 auto;
  position: relative;
  justify-content: space-between;
}

.timeline-item {
  text-align: center;
}

.timeline-item img {
  width: 100%;
}

.timeline-date {
  background: var(--yellow-primary);
  color: var(--dark-bg);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.timeline-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.timeline-desc {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.timeline-circles {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.timeline-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow-primary);
  color: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
}

/* Requirements Section */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.requirement-card h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: Bold-Trial;
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.requirement-list {
  list-style: none;
  padding: 0;
}

.requirement-list li {
  padding: 0.5rem 0;

  position: relative;
  padding-left: 2rem !important;
  font-family: "Poppins", sans-serif;
  font-weight: 400;

  font-size: 18px;
  line-height: 24px;
  color: #e0e0e0;
}

.requirement-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--yellow-primary);
  font-weight: bold;
  font-size: 1.5rem;
}

/* Timeline Participation */
.participation-section {
  background: var(--darker-bg);
}

.participation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.participation-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #333;
}

.participation-card h5 {
  color: var(--yellow-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.participation-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Prizes Section */
.prizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.prize-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.prize-card:hover {
  transform: translateY(-5px);
  border-color: var(--yellow-primary);
}

.prize-card h5 {
  color: var(--yellow-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.prize-card p {
  color: var(--text-gray);
}

/* Tools Section */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tool-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #333;
}

.tool-card h5 {
  color: var(--yellow-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.tool-card p {
  color: var(--text-gray);
}

/* CTA Section */
.cta-section {
  background: var(--yellow-primary);
  color: var(--dark-bg);
  padding: 80px 0;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-btn {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: var(--darker-bg);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--darker-bg);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #333;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.timeline-container img {
  width: 100%;
}

.btnstatment {
  background: var(--ColorPrimary, #fcd000);
  padding: 17px 28px;
  font-weight: 500;
  color: #090909;
  font-size: 28px;
  line-height: 28px;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.forblack p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: Bold-Trial;
  font-size: 20px;
  line-height: 30px;
  color: #ffffffb2;
}

.forblack li {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: Light-Trial;
  font-size: 20px;
  line-height: 30px;
  color: #ffffffb2;
}

.text-yello {
  color: var(--ColorPrimary, #fcd000);
  font-weight: 700;
}

.statmentheading {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 36px;
  color: #ffffff;
}

.forblack {
  background-color: #090909;
  padding: 80px 20px;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--yellow-primary);
}

.footer-copyright {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .statmentheading {
    font-style: Bold-Trial;
    font-size: 36px;
    line-height: 46px;
  }

  .forblack li {
    font-weight: 300 !important;
    font-size: 16px !important;
    line-height: 24px !important;
  }

  .feature-card h4 br {
    display: none;
  }

  .forblack p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
  }

  .btnstatment {
    padding: 12px 20px;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }

  .register-btn {
    margin-right: 20px;
    padding: 10px 15px !important;
    font-size: 13px !important;
  }
.subtitle br{ display: none;}
.accordion-button::after{ width: 35px !important; height: 35px !important;}
  .formobbuildtext {
    font-weight: 700;
    font-size: 20px !important;
    line-height: 36px !important;
  }

  .text-yello {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
  }

  .hero-main {
    padding: 10px 0px;
  }

  .timeline-row {
    flex-direction: column;
    gap: 1rem;
  }

  .xs-px-0 {
    padding: 30px 0px !important;
  }

  .text-muted {
    margin-left: 25px !important;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
  }

  .textready {
    font-weight: 600 !important;

    font-size: 24px !important;
    line-height: 150% !important;
    text-align: center;
  }

  .textready br {
    display: none;
  }

  .lead {
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 150% !important;
    text-align: center !important;
  }

  .timeline-row::before {
    display: none;
  }

  .participation-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }



  .feature-grid,
  .requirements-grid,
  .prizes-grid,
  .tools-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 100px 0 60px;
  }

  .section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 2rem;
  }
}

.custom_btn {
  background: url("../images/btn-bg.png") no-repeat center center;
  color: var(--text-light);
  padding: 1rem 2rem;
  background-size: contain;
  text-decoration: none;
  border: none !important;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: Medium-Trial;
  font-size: 16px;
  line-height: 20px;

  padding: 20px 36px;
  color: #ffffff;
}

.custom_btn:hover {
  transform: translateY(-2px);
}

.yellow_custom {
  background: url("../images/yellow-btn.png") no-repeat;
  color: var(--text-dark);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: Medium-Trial;
  font-size: 16px;
  line-height: 23px;
  padding: 20px 36px;
  color: #090909;
  background-size: contain;
  text-decoration: none;
  border: none !important;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 0 !important;
  width: 215px;
  display: block;
  text-align: center;
}

.bgcard {
  background: #0f0f0f;
  padding: 50px;
  border-radius: 15px;
  position: relative;
}

.bg_card {
  background: #0f0f0f;
  padding: 40px;
  border-radius: 15px;
  position: relative;
}

.bg_card::after {
  content: "";
  background: url("../images/card-bg.png") no-repeat;
  position: absolute;
  background-size: 95%;
  background-position: 100%;
  width: 350px;
  height: 100%;
  z-index: 99;
  right: 0;
  top: 0;
}

.bgcard::after {
  content: "";
  background: url("../images/card-bg.png") no-repeat;
  position: absolute;
  background-size: 80%;
  background-position: 100%;
  width: 350px;
  height: 100%;
  z-index: 99;
  right: 0;
  top: 0;
}

.border_right {
  border-right: 1px #fff solid;
}

.card {
  border-radius: 15px;
  background-color: #fcd000;
  border-radius: 15px;
}

.cardbg {
  background: #0f0f0f;
  padding: 25px;
  border-radius: 15px;
  position: relative;
}

.cardbg::after {
  content: "";
  background: url("../images/card-bg.png") no-repeat;
  position: absolute;
  background-size: contain;
  width: 350px;
  height: 100%;
  z-index: 99;
  right: 0;
  top: 0;
}

.btnmbnew {
  justify-content: center;
}

.showcontent {
  position: absolute;
  z-index: 999;
}

.texth5 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: Bold-Trial;
  font-size: 22px;
  line-height: 22px;
  text-transform: capitalize;
}

.fwdbold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;

  font-size: 18px;
  line-height: 20px;
}

.listulformob {
  font-family: "Poppins", sans-serif;

  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
}

.textQualify {
  font-family: "Poppins", sans-serif;
  font-weight: 600;

  font-size: 32px;

  line-height: 32px;
  text-transform: capitalize;
}

.nexttext h3 {
  /* font-family: Gilmer; */
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  text-transform: capitalize;
  color: #ffffff;
}

.nexttext p {
  color: #e0e0e0;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  columns: #e0e0e0;
}

.footer {
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer a:hover {
  color: #ffc107 !important;
  text-decoration: underline !important;
}

.textformobile p {
  font-weight: 400;
  font-size: 32px;
  line-height: 50px;
  letter-spacing: 0%;
  color: #ffffff;
}

.textmobleft {
  text-align: center;
}

.lead {
  font-weight: 400;

  font-size: 20px;
  line-height: 30px;

  text-align: center;
  vertical-align: middle;
}

.lead a {
  font-weight: bold;
  color: #000;
}

.cardbdrds {
  border-radius: 12px !important;
  padding: 53px;
}

img {
  height: auto;
}

.textready {
  font-weight: 600;

  font-size: 44px;
  line-height: 60px;
  font-family: "Poppins", sans-serif;
  text-align: center;
  vertical-align: middle;
}

.grytext {
  font-weight: 300 !important;
  font-size: 20px !important;
  line-height: 32px !important;
}

.textformobile h2 {
  font-weight: 600;
  font-size: 56px;
  line-height: 78px;
  letter-spacing: 0%;
  font-family: "Poppins", sans-serif;

  color: #ffffff;
}

.text-muted {
  margin-left: 30px;
}

.texttimline {
  font-weight: 600;
  font-family: "Poppins", sans-serif;

  font-size: 56px;
  line-height: 93px;
  letter-spacing: 0%;
  text-align: center;
  color: #000;
}

.info-box {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: Regular-Trial;
  font-size: 22px;
  line-height: 18px;
}

.info-box img {
  margin-top: 5px;
  width: 24px;
  height: auto;
}

.info-box {
  align-items: center;
  border: 1.5px solid #ffffff33;
  border-radius: 18px;
  gap: 20px;
  padding: 17px 20px;
  color: #fff;
  background-color: #000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  white-space: nowrap;
  font-size: 16px;
}

/* Responsive adjustments */

@media (max-width: 1300px) {
  .hero-title {
    font-size: 55px;
  }
}

@media (max-width: 767.98px) {
  .footer {
    text-align: center;
  }

  .footer .d-flex {
    justify-content: center !important;
  }
}

@media (max-width: 768px) {
  .accordion {
    padding: 0px 15px;
  }

  .nav-links {
    display: none;
  }

  .info-box {
    width: 100%;
    margin-bottom: 10px;
    padding: 15px 20px;
  }

  .hero-main {
    align-items: center;
    text-align: center;
  }

  .hero-subtitle {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #090909;
    text-align: center;
    text-transform: capitalize;
  }

  .hero-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;

    text-align: center;
  }

  .feature-card h4 {
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 30px;
    margin-bottom: 0px;
  }



  .feature-card p {
    font-weight: 400;
    font-style: Regular-Trial;
    font-size: 14px;
    line-height: 150%;
  }

  .texttimline {
    font-weight: 700;
    font-style: Bold;
    font-size: 30px;
    line-height: 150%;

    text-align: center;
  }

  .forboldt {
    font-weight: 400;
    font-family: "Poppins", sans-serif;

    font-size: 14px;
    line-height: 150%;
  }

  .requirement-card h5 {
    font-weight: 600;
    font-style: Bold;
    font-size: 30px;
    line-height: 150%;
  }

  .textQualify {
    font-weight: 600;
    font-style: Bold;
    font-size: 30px;
    line-height: 150%;
  }

  .texth5 {
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 150%;
  }

  .fwdbold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
  }

  .listulformob {
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 150%;
  }

  .requirement-list li {
    font-weight: 400;

    font-size: 14px;
    line-height: 150%;
  }

  .hero-content {
    padding: 0rem;
  }

  .btnmbnew {
    justify-content: start;
  }

  .timeline-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .participation-grid,
  .feature-grid,
  .requirements-grid,
  .prizes-grid,
  .tools-grid {
    grid-template-columns: 1fr !important;
  }

  .bgcard::after {
    background-size: 78%;
    background-position: 100% 100%;
  }

  .section-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
  }

  .card-body {
    padding: 10px !important;
  }

  .grytext {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
  }

  .bgcard {
    border-radius: 0px !important;
    padding: 50px 30px;
  }


  .card {
    padding: 0px 25px !important;
    border-radius: 0px;
  }

  /* .conformob {
    padding: 0px !important;
  } */

  .bg_card {
    padding: 50px 25px !important;
    border-radius: 0px !important;
  }

  .textformobile h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 150%;
  }

  .textformobile p {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;

    text-transform: capitalize;
    color: #ffffff;
  }

  .bg_card::after {
    background-size: 97%;
    background-position: 100% 100%;
  }

  .border_right {
    border-right: none;
    border-bottom: 1px #fff solid;
  }

  .btnmbnew {
    position: relative;
    z-index: 999 !important;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .nexttext h3 {
    font-weight: 700;
    font-style: Bold;
    font-size: 30px;
    line-height: 150%;
  }

  .nexttext p {
    font-family: Gilmer;
    font-weight: 600;
    font-style: Medium;
    font-size: 16px;
    line-height: 150%;
  }

  .text-higlightnew h4 {
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 150%;
  }

  .section-title {
    margin-bottom: 38px;
  }

  .section {
    padding: 50px 0;
  }

  .yellow_custom {
    /* width: 100%; */
    text-align: center;
    margin-left: 18px !important;
    margin-top: 20px;
    display: block;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 100px 0 60px;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }

  .cta-btn {
    padding: 0.8rem 1.5rem;
  }

  .timeline-item img {
    max-width: 90%;
    height: auto;
  }

  .register-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .info-box {
    font-size: 0.85rem;
    flex-wrap: wrap;
  }

}






/* Custom Card Styling */
.custom_card {
  background-color: #ffcc00;
  border-radius: 12px;
  padding: 10px 20px;
  min-width: 300px;
  max-width: 300px;
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

/* Hover Elevation */

.register-btn-card {




  align-self: flex-start;


  transform: translateY(10px);
  transition: all 0.3s ease;
  background: url(../images/btn-bg.png) no-repeat center center;
  color: var(--text-light);
  padding: 1rem 2rem;
  background-size: contain;
  text-decoration: none;
  border: none !important;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: Medium-Trial;
  font-size: 16px;
  line-height: 20px;
  padding: 20px 36px;
  color: #ffffff;
}




/* Badge */
.badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  width: 125px;
  text-align: center;
}

/* Title */
.title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 20px;
  color: #000;
}

/* Info Text */
.info {
  font-size: 14px;
  color: #000;
  margin: 4px 0;
}

/* Speaker Label */
.speaker-label {
  font-weight: 500;
  margin-top: 10px;
  font-size: 14px;
}

/* Speaker Block */
.speaker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.speaker-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px #000 solid;
}

.speaker-name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
}

.speaker-role {
  font-size: 10px;
  color: #333;
}


@media (max-width: 768px) {
  .custom_card {
    width: 100%;

    margin-bottom: 0px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .workshops {
    display: block;
  }

  .cardbdrds {
    padding: 50px 30px !important;
    box-shadow: none !important;
  }

  .cardbdrds .card-body {
    padding: 0px !important;
  }
}

b {
  color: #000;
}

.timeline_section ol {

  list-style: none;
  padding-left: 0;

  margin: auto;
}

.text-link {
  color: #737373 !important;
}

.timeline_section li::before {

  font-weight: 600;
  font-size: 20px;
  margin-right: 10px;
  color: #555;
}

.timeline_section .bold {
  font-weight: bold;
}

.timeline_section .step-title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #737373;
}

.timeline_section .sub-steps {
  padding-left: 40px;
  margin-top: 8px;
}

.timeline_section .sub-steps li {
  list-style: lower-alpha;
  font-size: 16px;
  color: #737373;
  margin-bottom: 6px;
}

@media (max-width: 600px) {
  .timeline_section .step-title {
    font-size: 16px;
  }

  .timeline_section .sub-steps li {
    font-size: 15px;
  }
}


.accordion-button {
  background-color: transparent;
  box-shadow: none;
  padding: 1rem 0;
  font-weight: 600;
  font-size: 1.125rem;
  border: none;
  border-bottom: 1px solid #dddddd00;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: #000;
  background-color: transparent;
}

.accordion-button::after {
  transition: transform 0.2s ease-in-out;
  margin-left: 20px;
  right: 0;
  position: absolute;
  background: url(../images/delhi-network/plusIcon.png) #F7F7F7;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30%;
  border-radius: 50%;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  background: url(../images/delhi-network/cross.png) #FCD000;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30%;
}

.accordion-item {
  border: none;
  border-bottom: 2px solid #DEDEDE;
  padding: 20px 0;
}

.accordion-body {
  padding: 0.5rem 0 1rem 0;
  font-size: 0.95rem;
  color: #555;
  font-size: 20px;
  font-weight: 400;
}

.accordion-body a {
  color: #737373;
  font-weight: 600;
}

.accordion-button:focus {
  border-color: transparent !important;
}

.accordion {
  border-top: 1px solid #dddddd00;
}

.accordion-item:last-child .accordion-button {
  border-bottom: none;
}

h2.accordion-header {
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .accordion-button {
    font-size: 1rem;
  }

  .accordion-body {
    font-size: 0.9rem;
  }
}

@media (max-width:1440px) {

  .title {
    font-size: 15px;


  }
}

.workshops-container {
  overflow-x: auto;

  margin-left: 7%;
  padding-top: 50px;
}

.workshops-container::-webkit-scrollbar {
  height: 0px;
}

.workshops {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;

}

.wraps {

  display: flex;

  justify-content: center;



}





.list-boxs {
  display: flex;
  justify-content: space-between;


}

.list-boxs .card {
  /* width: 32%; */

  position: relative;
  /* max-width: 300px; */
  background: none;
  border: 0;

  margin-right: 20px;
  height: 350px;
}

.list-boxs .card .head {
  display: none;
  visibility: hidden;
  transform: translateY(30px);
  transition: transform 0.3s linear, opacity 0.3s linear;
  padding: 0 0 50px 0;
}

.list-boxs .card:hover .head {
  display: block;
  visibility: visible;
  transform: translateY(0);
  padding-left: 15px;
  padding-top: 20px;
  padding-bottom: 40px;
}

.list-boxs .card:hover .head {
  transform: translateY(0);

}

.list-boxs .card .ticket {
  color: #FFF;
  width: 80%;
  margin: 0 auto;
  padding: 1rem;
  font-size: 1.4rem;
  font-weight: bold;
  height: var(--ticket-height);

}

.list-boxs .starter .ticket {
  background-color: var(--color-green);
}

.list-boxs .standard .ticket {
  background-color: var(--color-blue);
}

.list-boxs .premium .ticket {
  background-color: var(--color-orange);
}

.list-boxs .card .body {
  /* transform: translateY(-30px); */
  transition: transform .3s linear;

}

.list-boxs .card:hover .body {
  /* transform: translateY(0); */
  border-radius: 12px;
  background: #ffcc00;

}





.list-boxs .card .head a {

  transition: background 0.3s;
}




@media screen and (max-width: 750px) {
  .accordion-button {
    align-items: flex-start;
  }

  .list-boxs {
    display: block;
    margin: auto;
  }

  .list-boxs .card {
    margin-right: 0px;
    height: auto;
  }

  .list-boxs .card {

    margin-bottom: 60px;
  }

  .workshops-container {
    margin-left: 0px;
  }
}



.participate {
  background-color: #0a0a0a;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-container {

  padding: 60px 20px;
  text-align: center;
}

.main-title {
  font-size: 56px;
  font-weight: 600;

  text-align: center;

}

.subtitle {
  font-size: 20px;
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 3rem;
  font-weight: 300;
  margin-left: auto;
  margin-right: auto;
}

.call-out-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 4rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  border: 5px #786807b5 solid;
}

.call-out-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  color: #000;
}

.limited-slots-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slots-info {
  font-size: 20px;
  color: #b0b0b0;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 0;
}

.first-come-text {
  font-size: 1.1rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
}

.first-come-text strong {
  color: #ffffff;
  font-weight: 600;
}

.first-come-text a {
  color: #ffffff !important;
  font-weight: 600;
}

.participation-text {
  font-size: 1.1rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.participation-text strong {
  color: #ffffff;
  font-weight: 600;
}

.register-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #000;
  border: none;
  padding: 15px 40px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  color: #000;
}

@media (max-width: 768px) {
  .main-title {
    font-size: 2.5rem;
  }

  .limited-slots-title {
    font-size: 2.2rem;
  }

  .subtitle,
  .participation-text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .main-title {
    font-size: 2rem;
  }

  .limited-slots-title {
    font-size: 1.8rem;
  }

  .main-container {
    padding: 40px 15px;
  }
}


.features-sections {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-cards {
  background: white;
  border-radius: 8px;
  padding: 30px 20px;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #ffd700;
  position: relative;
}

.feature-cards:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.feature-cards::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffed4a);
  border-radius: 2px;
}

.feature-title {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.3;
}

.feature-description {
  color: #6c757d;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.row {
  margin-bottom: 30px;
}

.row:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .feature-cards {
    padding: 25px 15px;
    margin-bottom: 20px;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  .feature-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .features-sections {
    padding: 0 15px;
  }

  .feature-cards {
    padding: 20px 15px;
  }
}

/* Animation for cards appearing */
.feature-cards {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.feature-cards:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-cards:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-cards:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-cards:nth-child(4) {
  animation-delay: 0.4s;
}

.feature-cards:nth-child(5) {
  animation-delay: 0.5s;
}

.feature-cards:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}




.time_line {
  background-color: #1a1a1a;
  color: #ffffff;
  border-radius: 16px;
  min-height: 100vh;
  padding: 40px 0;
  position: relative;
  overflow-x: hidden;
  margin-bottom: 50px;
}

/* Background decorative elements */
.time_line::before {
  content: '';
  position: fixed;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1));
  border-radius: 50%;
  z-index: -1;
}

.time_line::after {
  content: '';
  position: fixed;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 50%;
  z-index: -1;
}

.schedule-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Custom Tab Styles */
.nav-tabs {
  border-bottom: none;
  justify-content: center;
  margin-bottom: 40px;
}

.nav-tabs .nav-link {
  background-color: transparent;
  border: 2px solid rgba(255, 215, 0, 0.3);
  color: #ffffff;
  font-weight: 600;
  padding: 12px 30px;
  margin: 0 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
  background-color: rgba(255, 215, 0, 0.1);
  color: #ffffff;
  border-color: rgba(255, 215, 0, 0.5);
}

.nav-tabs .nav-link.active {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #000000;
  border-color: #ffd700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Schedule Item Styles */
.schedule-item {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  border-radius: 15px;
  padding: 0;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.schedule-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 215, 0, 0.3);
}

.time-slot {
  background: linear-gradient(135deg, #333333 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 20px 25px;
  font-weight: 600;
  font-size: 1.1rem;
  border-right: 5px solid #181818;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.event-details {
  padding: 20px 25px;
  color: #e0e0e0;
  font-size: 18px;
  display: flex;
  align-items: center;
  flex-grow: 1;
  font-weight: 400;
}

.schedule-row {
  display: flex;
  align-items: stretch;
  min-height: 80px;
}

/* Animation for schedule items */
.schedule-item {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.schedule-item:nth-child(1) {
  animation-delay: 0.1s;
}

.schedule-item:nth-child(2) {
  animation-delay: 0.2s;
}

.schedule-item:nth-child(3) {
  animation-delay: 0.3s;
}

.schedule-item:nth-child(4) {
  animation-delay: 0.4s;
}

.schedule-item:nth-child(5) {
  animation-delay: 0.5s;
}

.schedule-item:nth-child(6) {
  animation-delay: 0.6s;
}

.schedule-item:nth-child(7) {
  animation-delay: 0.7s;
}

.schedule-item:nth-child(8) {
  animation-delay: 0.8s;
}

.schedule-item:nth-child(9) {
  animation-delay: 0.9s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .schedule-row {
    flex-direction: column;
  }

  .time-slot {
    border-right: none;
    border-bottom: 3px solid #ffd700;
    min-width: auto;
    text-align: center;
  }

  .event-details {
    text-align: center;
  }

  .nav-tabs .nav-link {
    padding: 10px 20px;
    margin: 0 5px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .schedule-container {
    padding: 0 15px;
  }

  .time-slot,
  .event-details {
    padding: 15px 20px;
    font-size: 1rem;
  }
}

/* Tab content fade effect */
.tab-pane {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tab-pane.active {
  opacity: 1;
}


.winner-pack-container {

  margin: 30px auto;
  padding: 0 20px;
}




.prize-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  height: 100%;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); */
  transition: all 0.3s ease;
  border: 1px solid #4b4b4b2e;
  position: relative;
  overflow: hidden;
}



.prize-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.brand-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.brand-logo {
  width: 40px;

  margin-right: 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 14px;
}

.brand-logo img {
  width: 35px;
}

.brand-name {
  font-size: 32px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

.prize-description {
  color: #6c757d !important;
  line-height: 1.6;
  font-size: 18px;
  font-weight: 300;
  text-align: left !important;
  margin-bottom: 0;
}


.main-subtitle {
  font-size: 28px;
  font-weight: 300;
}

/* Brand-specific colors */


/* Animation for cards */
.prize-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .main-title {
    font-size: 2.2rem;
  }

  .main-subtitle {
    font-size: 1.1rem;
  }

  .prize-card {
    padding: 20px;
    margin-bottom: 20px;
  }

  .brand-name {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .main-title {
    font-size: 1.8rem;
  }

  .winner-pack-container {
    padding: 0 15px;
  }
}


#news-slider {
  margin-top: 40px;
  position: relative;
}

#news-slider::before {

  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);

  position: absolute;
  width: 150px;
  content: '';
  height: 450px;
  left: 0;
  top: 0;
  z-index: 1;
}

#news-slider::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  position: absolute;
  width: 150px;
  content: '';
  height: 450px;
  right: 0;
  top: 0;
  z-index: 1;
}

/* Rectangle 160331 */

/* Rectangle 160333 */






.post-slide .post-img {
  position: relative;
  overflow: hidden;
  margin: 0px 5px;


}

.post-slide .post-img img {
  width: 100%;
  height: 350px;
  transform: scale(1, 1);
  transition: transform 0.2s linear;
}

.post-slide:hover .post-img img {
  transform: scale(1.1, 1.1);
}

.post-slide .over-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: linear-gradient(-45deg,
      rgba(6, 190, 244, 0.75) 0%,
      rgba(45, 112, 253, 0.6) 100%);
  transition: all 0.5s linear;
}

.post-slide:hover .over-layer {
  opacity: 1;
  text-decoration: none;
}

.post-slide .over-layer i {
  position: relative;
  top: 45%;
  text-align: center;
  display: block;
  color: #fff;
  font-size: 25px;
}

.post-slide .post-content {
  background: #fff;
  padding: 2px 20px 40px;
  border-radius: 15px;
}

.post-slide .post-title a {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}

.post-slide .post-title a:hover {
  text-decoration: none;
  color: #3498db;
}

.post-slide .post-description {
  line-height: 24px;
  color: #808080;
  margin-bottom: 25px;
}

.post-slide .post-date {
  color: #a9a9a9;
  font-size: 14px;
}

.post-slide .post-date i {
  font-size: 20px;
  margin-right: 8px;
  color: #cfdace;
}

.post-slide .read-more {
  padding: 7px 20px;
  float: right;
  font-size: 12px;
  background: #2196f3;
  color: #ffffff;
  box-shadow: 0px 10px 20px -10px #1376c5;
  border-radius: 25px;
  text-transform: uppercase;
}

.post-slide .read-more:hover {
  background: #3498db;
  text-decoration: none;
  color: #fff;
}

.owl-controls .owl-buttons {
  text-align: center;
  position: absolute;
  /* height: 450px; */
  top: 50%;
  width: 100%;
  z-index: 9;
}

.owl-controls .owl-buttons .owl-prev {
  background: #fff;
  position: absolute;
  top: -13%;
  left: 15px;
  padding: 0 18px 0 15px;
  border-radius: 50px;
  box-shadow: 3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-next {
  background: #fff;
  position: absolute;
  top: -13%;
  right: 15px;
  padding: 0 15px 0 18px;
  border-radius: 50px;
  box-shadow: -3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after {
  content: "\f104";
  font-family: FontAwesome;
  color: #333;
  font-size: 30px;
}

.owl-controls .owl-buttons .owl-next:after {
  content: "\f105";
}

@media only screen and (max-width: 1280px) {
  .post-slide .post-content {
    padding: 0px 15px 25px 15px;
  }
}

.social-section {



  position: relative;
  overflow: hidden;
}

.social-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  z-index: 1;
}

.social-section .container {
  position: relative;
  z-index: 2;
}



.subtitle {
  font-size: 28px;

  margin-bottom: 4rem;
  text-align: center;
  font-weight: 300;
  /* max-width: 900px; */
  margin-left: auto;
  margin-right: auto;

}

.brand-section {
  margin-bottom: 4rem;
}

.brand-title {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 3rem;
  text-align: center;
  color: #000;

}

.social-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 15px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  border: 1px #cccccc79 solid;
  cursor: pointer;

}

.brand-section a {
  text-decoration: none !important;
}

.social-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.social-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: rgb(100, 100, 100);
  transition: all 0.3s ease;
  background: #0000001a;
}

/* .social-icon.twitter {
            background: linear-gradient(45deg, #1DA1F2, #0d8bd9);
        }
        
        .social-icon.telegram {
            background: linear-gradient(45deg, #0088cc, #006bb3);
        }
        
        .social-icon.linkedin {
            background: linear-gradient(45deg, #0077B5, #005885);
        }
        
        .social-icon.discord {
            background: linear-gradient(45deg, #7289DA, #5865F2);
        }
        
        .social-icon.website {
            background: linear-gradient(45deg, #6c757d, #495057);
        } */

.social-card:hover .social-icon {
  transform: scale(1.1);
}

.social-title {
  font-size: 18px;
  font-weight: 400;
  color: #333;
  text-align: center;
  margin-bottom: 1rem;
}

.social-title a {
  text-decoration: none;
}

.social-link {
  display: block;
  color: #666;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #333;
  text-decoration: none;
}

.view-toggle {
  margin-top: -77px;
  text-align: center;
  z-index: 99;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 76.57%);
  padding: 18px 0;
}

.view-toggle img {
  width: 20px;
}

.view-toggle button {
  padding: 13px 29px;
  background: #F2F2F2;

  color: #000;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.opacity-3 {
  opacity: .5;
  display: block !important;
}

.active.opacity-3 {
  opacity: 1;
}

.view-toggle.viewBtn {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .post-slide .post-img img{ height: 300px;}
  .main-title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .brand-title {
    font-size: 2rem;
  }

  .social-card {
    padding: 1.5rem;
  }

  .social-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {


  .main-title {
    font-size: 2rem;
  }

  .brand-title {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 1rem;
  }
}