


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #1e1e1e;
  color: #333;
  overflow-x: hidden;
}
.gradiant-text {
  background: linear-gradient(to right, #a966d6, #ff416c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 20px 0;
}

h1 {
  font-family: "Alkatra", system-ui;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
h2 {
  font-family: "Bungee", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  }



h5 {
  font-family: "Archivo Black", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 48px;
}


h2bb {
  font-family: "Rubik Mono One", monospace;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  }
h2 {
  font-family: "Bungee", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  }




.main-section {
  padding: 60px 100px 60px 100px;
  text-align: center;
  background-color: #1e1e1e;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* BOTTOM LEFT - Purple glow */
.main-section::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 150px;
  height: 150px;
  background: rgba(142, 45, 226, 0.6);
  filter: blur(80px);
  z-index: -1;
}

/* BOTTOM RIGHT - Red glow */
.main-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: 0;
  width: 150px;
  height: 150px;
  background: rgba(255, 0, 0, 0.6);
  filter: blur(80px);
  z-index: -1;
}

/* BOTTOM CENTER - Black glow */
.main-section .bottom-center-glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 150px;
  background: rgba(0, 0, 0, 0.8);
  filter: blur(100px);
  z-index: -1;
  border-radius: 50%;
}

/* ✅ TOP LEFT - Purple glow (updated) */
.main-section .top-left-glow {
  position: absolute;
  top: -60px;
  left: 0;
  width: 150px;
  height: 150px;
  background: rgba(142, 45, 226, 0.6); /* Purple */
  filter: blur(80px);
  z-index: -1;
}

/* ✅ TOP RIGHT - Red glow (updated) */
.main-section .top-right-glow {
  position: absolute;
  top: -60px;
  right: 0;
  width: 150px;
  height: 150px;
  background: rgba(255, 0, 0, 0.6); /* Red */
  filter: blur(80px);
  z-index: -1;
}


/* TOP CENTER - Black glow */
.main-section .top-center-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 150px;
  background: rgba(0, 0, 0, 0.8);
  filter: blur(100px);
  z-index: -1;
  border-radius: 50%;
}

.contact-section {
  padding: 50px 50px;
  text-align: center;
  background-color: #1e1e1e;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 50px;
}
/* ✅ TOP LEFT - Purple glow (updated) */
.contact-section .top-left-glow {
  position: absolute;
  top: -60px;
  left: 0;
  width: 150px;
  height: 150px;
  background: rgba(142, 45, 226, 0.6); /* Purple */
  filter: blur(80px);
  z-index: -1;
}

/* ✅ TOP RIGHT - Red glow (updated) */
.contact-section .top-right-glow {
  position: absolute;
  top: -60px;
  right: 0;
  width: 150px;
  height: 150px;
  background: rgba(255, 0, 0, 0.6); /* Red */
  filter: blur(80px);
  z-index: -1;
}


/* TOP CENTER - Black glow */
.contact-section .top-center-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 150px;
  background: rgba(0, 0, 0, 0.8);
  filter: blur(100px);
  z-index: -1;
  border-radius: 50%;
}



@media (max-width: 480px) {
  .main-section {
    padding-bottom: 30px !important;
    padding-top: 30px !important;
  }
    .contact-section {
    padding: 30px 15px;
  }
  .contact-section .top-left-glow,
  .contact-section .top-right-glow,
  .contact-section .top-center-glow,

  .main-section .top-left-glow,
  .main-section .top-right-glow,
  .main-section .top-center-glow,
  .main-section .bottom-center-glow,
  .main-section::before,
  .main-section::after {
    width: 80px;
    height: 80px;
    filter: blur(50px);
  }
}



.section-title {
  font-size: 36px;
  font-weight: bold;
  color: transparent;
  background: linear-gradient(90deg, #8e2de2, #ff416c, #8e2de2); /* দুইবার প্রথম কালার যোগ করা */
  background-size: 200% 100%; /* সাইজ দ্বিগুণ */
  background-repeat: no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientLoop 4s linear infinite; /* সময় বাড়ানো */
  margin-bottom: 40px;
  display: inline-block;
}

@keyframes gradientLoop {
  0% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}









/* Why Choose Me? */

.choose-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.choose-box {
  padding: 30px 20px;
  color: #8e2de2;
  border-radius: 15px;
  background-color: #111;
  position: relative;
  transition: all 0.0s ease;
  border: 1px solid #333333;
}
.choose-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  padding: 2px;
  background: 
    linear-gradient(
      145deg,
      rgba(255, 0, 0, 1) 0%,
      rgba(142, 45, 226, 0.8) 40%,
      transparent 50%
    ),
    linear-gradient(
      rgba(63, 62, 63, 1),
      rgba(63, 62, 63, 1)
    );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.choose-box:hover::before {
  opacity: 1;
}
.choose-box:hover{
border: 0px solid none;
}

.choose-box i {
  font-size: 40px;
  color: #8e2de2;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}
.choose-box:hover i {
  color: #8e2de2;
}
.choose-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
}

.choose-box p {
  font-size: 15px;
  color: #ddd;
}
@media (max-width: 768px) {
.choose-box {

  border: 0px solid none;
}

.choose-box::before {
    padding: 1.5px; /* Thinner border on mobile */
    background: 
      linear-gradient(
        155deg,
        rgba(255, 0, 0, 1) 0%,
        rgba(142, 45, 226, 0.8) 30%, /* More visible gradient on small screens */
        transparent 45% /* Faster fade on mobile */
      ),
      linear-gradient(
        rgba(63, 62, 63, 1),
        rgba(63, 62, 63, 1)
      );
  }

}





/* Client Testimonial */

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-box {
  position: relative !important; 
  background-color: #111 !important;
  color: #8e2de2 !important;
  padding: 30px 20px !important;
  border-radius: 15px !important;
  text-align: center !important;
  box-shadow: 0 0 15px rgba(114, 9, 183, 0.4) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  overflow: hidden !important;
  height: 300px;
  border: 1px solid #333333;

}

.testimonial-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  padding: 2px;
  background: 
    linear-gradient(
      -45deg,
      rgba(255, 0, 0, 1) 0%,
      rgba(142, 45, 226, 0.8) 40%,
      transparent 50%
    ),
    linear-gradient(
      rgba(63, 62, 63, 1),
      rgba(63, 62, 63, 1)
    );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial-box:hover::before {
  opacity: 1;
}
.testimonial-box:hover{
border: 0px solid none;
}

.quote-icon {
  font-size: 30px;
  color: #8e2de2;
  position: absolute;
  top: 20px;
  left: 25px;
}

.testimonial-text {
  font-size: 15px;
  margin-top: 40px;
  color: #fff;
  margin-bottom: 20px;
}

.client-name {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.client-role {
  font-size: 14px;
  color: #ddd;
}

/* slider */
.testimonial-swiper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.swiper-pagination-bullet {
  background-color: #ffffff !important;
  opacity: 0.7;
  margin-top: 5px;
}

.swiper-pagination-bullet-active {
  margin-top: 5px;
  background-color: #8e2de2 !important;
  opacity: 1;
}

.testimonial-section:hover .swiper-pagination-bullet {
  background-color: #ffffff !important;
  opacity: 0.7;
  margin-top: 5px;
}

.testimonial-section:hover .swiper-pagination-bullet-active {
  background-color: #ffffff !important;
  opacity: 1;
  margin-top: 5px;
}

@media (max-width: 768px) {
.testimonial-box {

  border: 0px solid none;
}

.testimonial-box::before {
    padding: 1.5px; /* Thinner border on mobile */
    background: 
      linear-gradient(
        -40deg,
        rgba(255, 0, 0, 1) 0%,
        rgba(142, 45, 226, 0.8) 30%, /* More visible gradient on small screens */
        transparent 45% /* Faster fade on mobile */
      ),
      linear-gradient(
        rgba(63, 62, 63, 1),
        rgba(63, 62, 63, 1)
      );
  }

}

/* ==== Skills Section ==== */

.skill {
  margin-bottom: 25px;
}

.skill-name {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 8px;
  display: block;
  color: #fff;
}

/* ==== Skill Bar ==== */
.skill-bar {
  width: 100%;
  background: #eaeaea;
  height: 26px;
  border-radius: 13px;
  overflow: hidden;
  position: relative;
}


/* ==== Skill Fill with "Deu Deu" Shine ==== */
.skill-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #ff416c, #8e2de2);
  animation: fillAnimation 2s ease-out forwards, shimmer 2s linear infinite;
  animation-delay: 0.2s, 2s;
  position: relative;
  overflow: hidden;
  border-radius: 13px;
  padding-right: 0;
}

.skill-percent {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
  color: #8e2de2;
  font-weight: bold;
  font-size: 11px;
  padding: 1px 6px;
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  z-index: 2;
  font-weight: 700;
}


.skill-fill::after {
  content: attr(data-percent);
  display: inline-block;
  background-color: #ddd;
  color: #8e2de2;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
}


.skill-fill::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-30deg);
  filter: blur(4px);
  animation: shineAnim 2s linear infinite;
}

/* ==== Animations ==== */
@keyframes fillAnimation {
  from {
    width: 0;
  }
  to {
    width: calc(var(--percentage) * 1%);
  }
}

@keyframes shineAnim {
  0% {
    left: -50%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}







/* Pricing Plan */

.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-box {
  background-color: #111;
  color: #8e2de2;
  padding: 30px 25px !important;
  border-radius: 15px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #333333;
}



.plan-name {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}

.plan-price {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.plan-features li {
  padding: 8px 0;
  color: #eee;
  border-bottom: 1px solid #777;
}


.plan-button {
  background: linear-gradient(to right, #8e2de2, #ff416c);
  color: #fff;
  padding: 12px 30px;
  border-radius: 15px 0px 15px 0px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.0s ease;
  border: 0px solid transparent;
  box-shadow: 0 0 25px rgba(114, 9, 183, 0.6);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  cursor: pointer;
}

.plan-button:hover {
  background: none !important;
  color: #fff !important;
  border: 1px solid #8e2de2;
  box-shadow: 0 0 20px rgba(114, 9, 183, 0.6);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  padding: 11px 28px;
}




/* FAQ */
/* FAQ Styles */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
  max-width: 800px; /* Increased from 500px */
  margin: 0 auto;
  padding: 0 20px;
}

.faq-item {
  border: 1px solid #471396;
  border-radius: 10px;
  width: 100%;
  max-width: 800px; /* Increased from 500px */
  overflow: hidden;
  background-color: #5c5c5b;
  margin: 2px auto;
  transition: all 0.3s ease;
}

.faq-question {
  background-color: #111;
  color: #fff;
  font-weight: bold;
  padding: 15px 20px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 15px rgba(49, 49, 49, 0.767);
}

.faq-question:hover {
  background: linear-gradient(to right, #8e2de2, #ff416c);
  color: #fff;
}

.arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-answer {
  background-color: #5c5c5b;
  color: #fff;
  padding: 15px 20px;
  display: none;
  font-size: 15px;
  line-height: 1.6;
}

.faq-question.active .arrow {
  transform: rotate(180deg);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .faq-container {
    width: 100%;
    padding: 0 0px;
    box-sizing: border-box; 
  }
  
  .faq-item {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  .faq-question {
    width: 100% !important;
    padding: 12px 15px;
    font-size: 14px;
    box-sizing: border-box;
  }
  
  .faq-answer {
    padding: 12px 15px;
    font-size: 12px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .arrow {
    font-size: 24px;
  }
}



/* Contact Section */

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.contact-form {
  background-color: #111;
  background-image: url('assets/cbg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 30px;
  border-radius: 15px;
  color: #8e2de2;
  position: relative;
  overflow: hidden;
  border: 1px solid #333333;
}


.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: none;
  border-radius: 10px;
  background-color: #111;
  font-size: 16px;
  border: 1px solid #333333;
  color: #fff;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}


.contact-form button {
  background: linear-gradient(to right, #8e2de2, #ff416c);
  color: #fff;
  padding: 12px 30px;
  border-radius: 15px 0px 15px 0px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.0s ease;
  border: 0px solid transparent;
  box-shadow: 0 0 25px rgba(114, 9, 183, 0.6);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  cursor: pointer;
}

.contact-form button:hover {
  background: none !important;
  color: #fff !important;
  border: 1px solid #8e2de2;
  box-shadow: 0 0 20px rgba(114, 9, 183, 0.6);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  padding: 11px 29px;
}

.contact-info {
  background-color: #111;
  background-image: url('assets/cbg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 30px;
  border-radius: 15px;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid #333333;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  margin: 10px 0;
  color: #fff;
}

.contact-info i {
  margin-right: 10px;
  color: #fff;
}


/* Contact Section - Mobile Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 5px;
  }

  .contact-form,
  .contact-info {
    padding: 25px 20px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 10px;
    margin-bottom: 15px;
    font-size: 15px;
  }

  .contact-form textarea {
    height: 120px;
  }

  .contact-form button {
    padding: 10px 25px;
    font-size: 15px;
  }

  .contact-form button:hover {
    padding: 9px 24px;
  }

  .contact-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .contact-info p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .contact-form,
  .contact-info {
    padding: 20px 15px;
  }

  .contact-form button {
    width: 100%;
    text-align: center;
  }
}








.hero1 {
  position: relative;
  height: 100vh;
  width: 100%;
}

.hero-content1 {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 30vh;
  color: white;
  font-family: sans-serif;
}

#shader-canvas1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}


