*{
    margin: 0;
    padding: 0;
}

/* ---------- Section Styling ---------- */
.mysection1 {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* ---------- Heading ---------- */
.heading {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ddf1da;
    border-radius: 8px;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* ---------- Main Headline ---------- */
.lp-headline {
    font-weight: 800;
    line-height: 1.4;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Highlighted Text */
.text-success {
    color: rgba(87, 184, 69, 1);
}
.myboxes{
  
    padding: 14px 35px;
    border-radius: 15px;
}
.myboxes{
    font-size: 18px;
    width: 90%;
    margin-left: 40px;
}
@media (max-width:768px) {
    .myboxes{
    margin-left: 0;
width: 100%;
    }
}
.myboxes span{
    font-size: 28px;
    font-weight: 800;
}
/* Background Text */
.bg-text {
    display: inline-block;
    background-image: url('https://user.lpcontent.net/images/c7J8wF3nbb8sYje55W6ekH/YXpVuRJvctCzRrHyEsXpf6');
    background-size: cover;
    background-position: center;
    padding: 5px 10px;
    border-radius: 5px;
    color: black;
    font-weight: 700;
}

/* Paragraph */
.para {
    font-size: 1.125rem;
    margin-top: 10px;
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 992px) {
    .lp-headline {
        font-size: 2rem;
    }
    .heading {
        font-size: 1rem;
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .lp-headline {
        font-size: 1.7rem;
    }
    .bg-text {
        display: block;
        margin-top: 10px;
        padding: 4px 8px;
        font-size: 1rem;
    }
    .heading {
        padding: 6px 12px;
    }
}

@media (max-width: 576px) {
    .lp-headline {
        font-size: 1.5rem;
    }
    .para {
        font-size: 1rem;
    }
}

/* section 2 */
/* ---------- Image Styling ---------- */
.vikas {
    width: auto;
    height: 380px;
	margin-bottom: 146px !important;
}
.vikas2 {
    width: auto;
    height: 380px;
	margin-bottom: 42px !important;
}
@media (max-width:768px) {
  .vikas{
    width: 100%;
    height: 380px;
  }
  .vikas2{
    width: 100%;
    height: 380px;
  }
}
/* ---------- Overlay Styling ---------- */
.text-overlay {
    background-color: rgba(28, 49, 44, 0.85); /* semi-transparent dark background */
    color: white;
    width: 90%;
    max-width: 360px;
    border-radius: 15px;
    margin-bottom:0;
    margin-top: 40px;
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 768px) {
    .text-overlay {
        width: 95%;
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .text-overlay h5 {
        font-size: 1rem;
    }
    .text-overlay p {
        font-size: 0.875rem;
    }
}
/* fixed section counter */
/* Countdown Time Box Styling */
.time-box {
    background: linear-gradient(120deg, rgb(87, 184, 69), rgb(100, 200, 80));
    color: white;
    padding: 15px 20px;
    font-size: 20px;
    border-radius: 8px;
    min-width: 60px;
    text-align: center;
}

/* Mobile Adjustments */
@media (max-width: 575px) {
    #scrollSection .time-box {
        padding: 10px 15px;
        font-size: 18px;
        min-width: 50px;
    }
    #scrollSection h5 {
        font-size: 16px;
        margin: 0 5px;
    }
    .btn1 {
        font-size: 16px;
        padding: 10px 20px;
        width: 100%;
    }
    #scrollSection .row {
        flex-direction: column;
        align-items: center;
    }
}


/* ---------- Workshop Details Boxes ---------- */
.p-3.border.rounded.shadow-sm {
    transition: transform 0.3s;
}

.p-3.border.rounded.shadow-sm:hover {
    transform: translateY(-5px);
}

/* ---------- CTA Button ---------- */

.mybutton a {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 12px 24px; 
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid rgb(87, 184, 69); 
    background: linear-gradient(120deg, rgb(87, 184, 69), rgb(100, 200, 80));
    color: #fff;
    width: 100%; 
    height: 50px; 
    position: relative;
    overflow: hidden;

    /* Continuous left-right move */
    animation: shake 1.5s ease-in-out infinite;
}

/* Sparkle / Shine Effect */
.mybutton a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transform: skewX(-25deg);
    animation: shine 2.5s infinite;
}

/* Left–Right Movement */
@keyframes shake {
    0%   { transform: translateX(0); }
    25%  { transform: translateX(-4px); }
    50%  { transform: translateX(4px); }
    75%  { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}

/* Spark Animation */
@keyframes shine {
    0%   { left: -75%; }
    100% { left: 125%; }
}


/* ---------- Center Overlay on Mobile ---------- */
@media (max-width: 576px) {
    .text-overlay {
        position: relative !important;
        transform: none !important;
        margin: 10px auto;
    }
}

/* section 3 */

#scrollSection {
    z-index: 9999;
}

.count-box {
    background: linear-gradient(120deg, rgb(87, 184, 69), rgb(100, 200, 80));
    color: white;
    padding: 10px 15px;
    font-size: 1.2rem;
    border-radius: 8px;
    min-width: 50px;
    text-align: center;
}

/* Carousel images */
.carousel-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

/* Small screen adjustments */
@media (max-width: 576px) {
    .carousel-img {
        width: 80px;
        height: 80px;
    }
}

/* section 3 image scroll */
.logo-scroller {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite; /* speed adjust */
}

.company-logo {
  height: 80px;
  margin: 0 20px;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.company-logo:hover {
  transform: scale(1.1);
}

/* Animation keyframes */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* shift half since duplicated */
}

/* Responsive */
@media (max-width: 767px) {
  .company-logo {
    height: 60px;
    margin: 0 10px;
  }
}

/* section4 tick section */

/* Dark Section */
.tick-section-dark {
  background: #211c1c;
  color: #fff;
}

/* Heading */
.tick-heading {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
}
.tick-heading .highlight {
  color: #57b845;
}
.tick-divider {
  width: 80px;
  height: 3px;
  background: #57b845;
  border: none;
  margin: 10px auto;
}

/* Checklist items */
.tick-list .list-group-item {
  border: none;
  background: transparent;
  color: #ddd;
  font-size: 1rem;
  padding: 12px 10px;
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
}
.tick-list input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
  accent-color: #57b845; /* Green checkmark */
}


/* Responsive */
@media (max-width: 767px) {
  .tick-heading {
    font-size: 1.5rem;
  }
  .tick-list .list-group-item {
    font-size: 0.95rem;
    padding: 10px 5px;
  }

}

/* section 5  */
/* Highlight Green */
.highlight {
    color: rgba(87, 184, 69, 1);
}

/* Section Styling */
.section h2 {
    font-size: 2rem;
    line-height: 1.4;
}
.border1 {
    width: 80px;
    border: 2px solid rgba(87, 184, 69, 1);
}

/* Card Boxes */
.card-box {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 20px rgba(87, 184, 69, 0.4);
}
.card-box img {
    width: 50px;
    height: auto;
    flex-shrink: 0;
}
.card-box p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section h2 {
        font-size: 1.6rem;
    }
    .card-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .card-box img {
        margin-bottom: 10px;
    }
    .card-box p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .section h2 {
        font-size: 1.4rem;
    }
}
/* section 6 */

/* Green Highlight */
.highlight {
  color: rgba(87, 184, 69, 1);
}

/* Section */
.learn-section h2 {
  font-size: 2rem;
  line-height: 1.4;
}
.border1 {
  width: 80px;
  border: 2px solid rgba(87, 184, 69, 1);
}

/* Custom List */
.list-custom .list-group-item {
  border: none;
  background: #fff;
  padding: 15px 20px;
  margin-bottom: 12px;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.6;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.list-custom .list-group-item:hover {
  transform: translateY(-3px);
  box-shadow: 0px 6px 16px rgba(0,0,0,0.1);
}
.list-custom i {
  color: rgba(87, 184, 69, 1);
}



/* Responsive */
@media (max-width: 768px) {
  .learn-section h2 {
    font-size: 1.6rem;
  }
  .list-custom .list-group-item {
    font-size: 1rem;
    padding: 12px 16px;
  }
  .btn1 {
    width: 100%;
    font-size: 1rem;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .learn-section h2 {
    font-size: 1.4rem;
  }
  .list-custom .list-group-item {
    font-size: 0.9rem;
  }
}

/* section 7 */
.vikas1{
    height: 320px;
}
@media (max-width:768px) {
   .vikas1{
 height: auto;
   }
    
}
/* Highlight Color */
.highlight {
  color: rgba(87, 184, 69, 1);
}

/* Bonus Section */
.bonus-section {
  background: #111; /* dark bg */
  color: #fff;
  text-align: center;
}

.bonus-section h2 {
  font-size: 2rem;
  line-height: 1.4;
}

.border1 {
  width: 80px;
  border: 2px solid rgb(61, 211, 35) !important;
}

/* Bonus Images */
.bonus-img {
  max-height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.bonus-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(2px 2px 6px #a1cf09);
}

/* CTA Button */
.btn1 {
  background: rgba(87, 184, 69, 1);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn1:hover {
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .bonus-section h2 {
    font-size: 1.6rem;
  }
  .bonus-img {
    max-height: 220px;
  }
  .btn1 {
    width: 100%;
    font-size: 1rem;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .bonus-section h2 {
    font-size: 1.4rem;
  }
  .bonus-img {
    max-height: 200px;
  }
}

/* section 8 */
/* Accordion Button Styling */
.faqs{
    margin-bottom: 80px;
}
.accordion-button {
    font-weight: 500;
    color:white !important;
    gap: 10px;
    background: linear-gradient(120deg, rgb(87, 184, 69), rgb(100, 200, 80)) !important;
}
.accordion-button i{
  color: #fff !important;
}
.accordion-item{
    margin-top: 8px;
}
.accordion-button:focus {
    box-shadow: none !important;
}

/* Keep icons aligned nicely */
.accordion-button i.fa-circle-check {
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 575px) {
    .accordion-button {
        font-size: 14px;
    }
    h2.fw-bold {
        font-size: 22px;
    }
    .faqs{
    margin-bottom: 150px;
}
}
