@import url("https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Michroma&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  scroll-behavior: smooth;

}
:root {
  --headercolor: #030b0b;

  --whitecolor: #f9fafb;
  --redcolor: #f00037;
  --firstyellow: #ffdc4a;
  --yellowcolor: #ffb35e;
  --pur: #9c27b0;
}
html,
body {
  width: 100%;
  height: 100%;
  background: black;
}

.whta {
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 999;
  width: 100px;
  height: 100px;

  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
#whatsappp {
  color: green;
}
.whta a {
  text-decoration: none;
}
#aii {
  width: 100%;
}
.btndash {
  font-size: 20px;
  cursor: pointer;
  font-family: "Courier New", Courier, monospace;
  font-weight: bold;
}

.loder {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  background: var(--headercolor);
  background-image: url("./assets/animation.gif");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 9999;
  background-position: center;
}

html {
  font-size: 50px;
}

#main {
  width: 100%;
  height: 100%;
  background-image: url("./assets/56942ba2250fb295213e5d09a1fb1363\ \(1\).gif");
  opacity: 0.9;
  background-size: cover;
}

.blur {
  filter: blur(3px);

  pointer-events: none;
}
.headerdiv {
  width: 100%;
  height: 140px;
}

#header {
  width: 100%;
  height: 80px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 50px;
  z-index: 9999;
}

.adddesign {
  position: fixed;
  top: 0;
  background: #000000;
}

.logo {
  width: 150px;
  height: 100%;
}

.logo img {
  width: 100%;
  height: 100%;
}
.links {
  display: flex;
  align-items: center;
}
.links a {
  color: var(--whitecolor);
  text-transform: capitalize;
  text-decoration: none;
  padding: 0px 15px;
  font-size: 0.3rem;
}

#active {
  color: var(--redcolor);
}

#btn {
  background: var(--redcolor);
  padding: 10px 10px;
  text-transform: capitalize;
  font-weight: bold;
  border-radius: 5px;
  transition: 2s;
}

#btn:hover {
  background: linear-gradient(to right, var(--firstyellow), var(--yellowcolor));
  color: var(--headercolor);
}
/* nav */
nav {
  width: 100%;
  height: 60px;
  background: linear-gradient(to right, var(--firstyellow), var(--yellowcolor));
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.mission {
  width: 340px;
  height: 80%;
  display: flex;
  align-items: center;
}

.mission h1 {
  text-transform: capitalize;
  font-weight: bold;
  color: var(--headercolor);
  font-size: 20px;
}
.careers {
  width: 380px;
  height: 80%;

  display: flex;
  align-items: center;
}

#aim {
  color: var(--redcolor);
  font-size: 20px;
}

.careers h2 {
  text-transform: capitalize;
  font-weight: bold;
  color: var(--headercolor);
  font-size: 16px;
}

.broucher {
  width: 340px;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: start;
}

#download {
  padding: 10px 20px;
  background: var(--redcolor);
  text-decoration: none;
  color: var(--whitecolor);
  text-transform: capitalize;
  border-radius: 10px;
  transition: 0.2s ease-in-out;
  font-size: 0.3rem;
}

#download:hover {
  border-radius: 20px;
}

#firstsection {
  width: 100%;
  height: calc(100% - 140px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.con {
  width: 100%;
  height: 90%;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.firsthd {
  width: 100%;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.firsthd h3 {
  color: var(--whitecolor);
  font-size: 1.4rem;
  text-transform: capitalize;
}
.firsthd h3 span {
  color: var(--redcolor);
  text-transform: uppercase;
  animation: 2s skill infinite;
  /* animation-delay: 1s;  */
  animation-fill-mode: forwards;
}

@keyframes skill {
  0% {
    color: var(--redcolor);
  }
  100% {
    color: var(--yellowcolor);
  }
}
.kickstart {
  width: 100%;
  height: auto;
}
.kickstart h4 {
  color: var(--whitecolor);
  font-size: 0.5rem;
  text-align: center;
  text-transform: capitalize;
}

.dm {
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.dm button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
}

#team {
  background: var(--redcolor);
  transition: 2s;
}
#team a {
  color: var(--whitecolor);
  text-decoration: none;
  text-transform: capitalize;
  font-weight: bold;
  font-size: 0.3rem;
}
#demo {
  background: var(--firstyellow);
  transition: 2s;
}
#team:hover {
  background: transparent;
  outline: 1px solid var(--whitecolor);
}

#demo:hover {
  background: var(--redcolor);
}
#demo a {
  color: var(--headercolor);
  text-decoration: none;
  text-transform: capitalize;
  font-weight: bold;
  font-size: 0.3rem;
}

#check,
label {
  display: none;
}

/* enquery form */

.enquery {
  width: 25%;
  height: 490px;
  position: fixed;
  z-index: 9999;
  box-shadow: 0px 0px 1px 0px var(--headercolor);
  border-radius: 10px 10px 0px 0px;
  top: 55%;
  right: 50%;
  transform: translate(50%, -50%);
  visibility: hidden;
  transition: 0.1s ease-in-out;
}

/* class add */

.showform {
  transition: 0.1 ease-out;
  visibility: visible;
}

.msg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  border-radius: 10px;
}

.touch {
  width: 100%;
  height: 40px;

  padding: 0px 20px;
  color: var(--redcolor);
  display: flex;
  align-items: end;
  justify-content: start;
  background: linear-gradient(to right, #f4274b, #5c2834);
  border-radius: 10px 10px 0px 0px;
}

.touch h6 {
  font-size: 0.5rem;
  text-transform: capitalize;
  color: var(--whitecolor);
}

.formhd {
  width: 100%;
  height: 50px;

  display: flex;
  align-items: center;
  padding: 0px 10px;
  background: linear-gradient(to left, #5c2834, #f4274b);
}

.formhd h6 {
  font-size: 0.4rem;
  color: var(--yellowcolor);
  text-transform: capitalize;
}

#enqueryform {
  width: 100%;
  height: calc(480px - 90px);
  background: var(--whitecolor);
  display: flex;
  justify-content: start;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding: 20px 0px;
  border-radius: 0px 0px 10px 10px;
}

#enqueryform input {
  width: 90%;
  height: 45px;
  border-radius: 4px;
  border: none;
  padding: 0px 5px;
  box-shadow: 0px 0px 1px 0px var(--headercolor);
}

::placeholder {
  padding: 0px 10px;
  text-transform: capitalize;
  margin: 0px 5px;
}
#submit {
  background: var(--redcolor);
  color: var(--whitecolor);
  text-transform: capitalize;
  font-size: 0.3rem;
  cursor: pointer;
  outline: none;
  border: none;
}

#submit:hover {
  opacity: 0.7;
}

#closeform {
  position: absolute;
  color: var(--whitecolor);
  right: 0px;
  top: -10px;
  font-size: 0.7rem;
}

#closeform:hover {
  color: var(--redcolor);
}

/* courses part */

#coursepart {
  width: 100%;
  height: 100%;
  background-color: #f9fafb;
  background: black;
}

.courseheading {
  width: 100%;
  height: 150px;
  background-image: url("./assets/course.gif");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.courseheading h1 {
  text-transform: capitalize;
  color: var(--whitecolor);
  font-size: 0.8rem;
}

.courseheading h1 span {
  color: var(--redcolor);
  font-weight: bold;
}
.containercourse {
  width: 100%;
  height: calc(100% - 150px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.mern {
  width: 420px;
  height: 450px;
  box-shadow: 0px 5px 9px 0px white;
  border-radius: 10px;
  padding: 10px;
  transition: 0.4s;
}
.mern:hover {
  transform: translateY(-20px);
}

.courseimg {
  width: 100%;
  height: 60%;

  background-image: url("https://www.aalpha.net/wp-content/uploads/2021/09/benefits-of-mern-stack.png");
  background-size: cover;
}

.coursetext {
  width: 100%;
  height: 40%;
  padding: 0px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.coursetext h2 {
  text-transform: capitalize;
  font-size: 0.4rem;
  color: white;
}

.coursetext p {
  text-transform: capitalize;
  font-size: 0.3rem;
  color: white;
}

.btnss {
  width: 100%;
  height: 40px;

  display: flex;
  align-items: end;
  gap: 20px;
  padding: 0px 10px;
}

.btnss button {
  padding: 6px 20px;
  text-transform: capitalize;
  border: none;
  background: var(--pur);
  font-size: 0.3rem;
  cursor: pointer;

  color: var(--whitecolor);
}

.btnss button:hover {
  opacity: 0.6;
}

.digital {
  width: 420px;
  height: 450px;
  box-shadow: 0px 5px 5px 0px white;
  border-radius: 10px;
  padding: 10px;
  transition: 0.4s;
}
.digital:hover {
  transform: translateY(-20px);
}

.courseimgdm {
  width: 100%;
  height: 60%;

  background-image: url("./assets/dm.gif");
  background-size: cover;
  object-fit: cover;
  border-radius: 11px;
}

.backend {
  width: 420px;
  height: 450px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0px 5px 5px 0px white;
  padding: 10px;
  transition: 0.4s;
}

.backend:hover {
  transform: translateY(-20px);
}

.courseimgdmpo {
  width: 100%;
  height: 60%;
  background-image: url("https://i.pinimg.com/originals/f4/46/22/f4462216f52bfa5ffb285b4a17e5f71b.gif");
  background-size: cover;
  border-radius: 11px;
}

#choose {
  width: 100%;
  height: 100%;
  background: black;
}

.whychoose {
  width: 100%;
  height: 130px;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.whychoose h2 {
  text-transform: capitalize;
  font-size: 0.7rem;
  color: white;
}

.whychoose h2 span {
  color: var(--redcolor);
  font-weight: bold;
  text-decoration: underline;
  text-transform: uppercase;
}

.whychoose p {
  text-transform: capitalize;
  font-size: 0.3rem;
  font-weight: bold;
  color: white;
}

.whycon {
  width: 100%;
  height: calc(100% - 130px);
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.top {
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.a {
  width: 400px;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.a,
.b,
.c {
  box-shadow: 0px 5px 4px 0px #f4d5f4;
  border-radius: 5px;
  transition: 0.4s ease;
}

.a:hover {
  transform: translateY(-10px);
}

.b:hover {
  transform: translateY(-10px);
}

.c:hover {
  transform: translateY(-10px);
}

.icondiv {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icondiv i {
  color: var(--redcolor);
  background: white;
  padding: 4px;
  border-radius: 5px;
  font-size: 1rem;
}

.msgdiv {
  width: 100%;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.msgdiv h3 {
  text-transform: capitalize;
  color: white;
  font-weight: bold;
  font-size: 0.4rem;
}

.msgdiv p {
  font-size: 0.3rem;
  text-align: center;
  color: white;
}
.b {
  width: 400px;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.c {
  width: 400px;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.bottom {
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

/* footer */
footer {
  width: 100%;
  height: 40%;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px -1px 1px 0px white;
}

.footercon {
  width: 90%;
  height: 90%;
}

.footerhd {
  width: 100%;
  height: 80px;
}

.footerhd h1 {
  text-transform: capitalize;
  font-size: 0.8rem;
  color: var(--whitecolor);
}

.footerhd h1 span {
  color: var(--redcolor);
  text-transform: uppercase;
  font-weight: bold;
}

.contact {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: var(--whitecolor);
}

.contact h6 {
  text-transform: capitalize;
  font-size: 0.5rem;
}

#nm {
  font-size: 0.3rem;
}

#em {
  text-transform: lowercase;
  font-size: 0.3rem;
}

.lst {
  width: 100%;
  height: 90px;
}

.lstmsg {
  width: 100%;
  height: auto;

  display: flex;
  align-items: center;
  justify-content: center;
}

.lstmsg h2 {
  text-transform: capitalize;
  font-size: 0.5rem;
  color: var(--whitecolor);
}
.lstmsg img {
  width: 4%;
}

h6 i {
  color: var(--redcolor);
}

h6 a {
  text-decoration: none;
}

#ourprojects {
  width: 100%;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: black;
}

.projectss {
  width: 86%;
  height: 90%;
  background-image: url("./assets/56942ba2250fb295213e5d09a1fb1363\ \(1\).gif");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

.pheading {
  width: 100%;
  height: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pheading h2 {
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--redcolor);
  font-weight: bold;
  text-shadow: 0px 7px 6px var(--whitecolor);
  font-family: monospace;
}

.probtn {
  width: 100%;
  height: 24vh;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
}

#ourbtn {
  width: 15%;
  height: 25%;
  text-transform: capitalize;
  border: none;
  color: var(--whitecolor);
  font-weight: bold;
  font-size: 0.4rem;
  border-radius: 10px;
  align-self: flex-end;

  transition: 0.4s;
}

#ourbtn button {
  width: 100%;
  height: 100%;
  text-transform: capitalize;
  background: var(--redcolor);
  border: none;
  color: var(--whitecolor);
  font-weight: bold;
  font-size: 0.3rem;
  border-radius: 10px;
  transition: 0.4s;
}

#ourbtn button:hover {
  cursor: pointer;
  background: transparent;
  border: 3px dotted var(--redcolor);
  color: var(--whitecolorr);
}

.counter-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 60px 20px;
  color: white;
  text-align: center;
  z-index: 0;

  /* background: #f6f6f6; */
  background: black;
  box-shadow: 0px 8px 8px 0px white;
}

.counter-card {
  flex: 1;
  margin: 10px;
  padding: 30px 20px;
  background: black;
  border-radius: 12px;

  transition: transform 0.5s;
}

.counter-card:hover {
  transform: translateY(-10px);
}

.counter-card h2 {
  font-size: 40px;
  color: var(--redcolor);
}

.counter-card p {
  margin-top: 10px;
  color: white;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 992px) {
  .counter-section {
    flex-direction: column;
    gap: 20px;
  }

  .counter-card {
    width: 80%;
  }
}

@media (max-width: 600px) {
  .counter-card h2 {
    font-size: 32px;
  }

  .counter-card p {
    font-size: 16px;
  }
}

.feedback-section {
  padding: 50px 20px;
  text-align: center;
  /* background: linear-gradient(#222, rgb(251, 29, 29)); */
  background: black;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  position: relative;
  box-shadow: 0px -1px 1px 0px white;
}

.feedback-section h2 {
  margin-bottom: 30px;
  font-size: 32px;
  color: white;
}

.feedback-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.feedback-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: #fdfdfd;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s;
}

.feedback-card:hover {
  transform: translateY(-5px);
}

.feedback-card p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.feedback-card h4 {
  font-size: 18px;
  color: #ff4c4c;
}

#stback {
  padding: 15px 20px;
  text-transform: uppercase;
  border: none;
  background: var(--redcolor);
  color: var(--whitecolor);
  cursor: pointer;
  font-weight: bold;
  font-size: 0.3.5rem;
  border-radius: 7px;
}

/* open video *****************************************/
.openvideo {
  width: 100%;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background:#222; */
  /* background: linear-gradient(rgba(159, 6, 6, 0.739), #0f0f0f); */
  background: black;
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  background-color: rgba(17, 25, 40, 0.81);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  padding: 1rem;
  border-radius: 30px;
  box-shadow: 0px 0px 4px 0px white;
}

#vcl {
  color: white;
  position: absolute;
  right: 10px;
  top: 5px;
  cursor: pointer;
}

#vcl :hover {
  color: orangered;
}
.main-title {
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.main-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.play-button {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.play-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.play-icon {
  width: 0;
  height: 0;
  border-left: 12px solid white;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 4px;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Popup Container */
.popup-container {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.7);
  transition: all 0.3s ease;
}

.popup-overlay.active .popup-container {
  transform: scale(1);
}

.close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.close-button:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

.popup-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.2rem;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 1200px) {
  .popup-container {
    max-width: 1000px;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .openvideo {
    width: 100%;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  iframe {
    width: 600px;
    height: 400px;
  }
}

/* Desktop */
@media (max-width: 1199px) and (min-width: 992px) {
  .popup-container {
    max-width: 800px;
  }

  .main-title {
    font-size: 2.5rem;
  }
  .openvideo {
    width: 100%;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;

  }
  iframe {
    width: 500px;
    height: 380px;
  }
}

/* Tablet */
@media (max-width: 991px) and (min-width: 768px) {
  .popup-container {
    max-width: 98%;
    max-height: 80%;
  }

iframe {
  width: 700px;
  height: 380px;
}

.main-title {
  font-size: 2rem;
}

.main-subtitle {
  font-size: 1.1rem;
}

.close-button {
  width: 45px;
  height: 45px;
  top: -12px;
  right: -12px;
  font-size: 1.3rem;
}
.openvideo {
  width: 100%;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;

}
}

/* Mobile Large */
@media (max-width: 767px) and (min-width: 576px) {
  .popup-container {
    max-width: 95%;
    max-height: 70%;
    border-radius: 15px;
  }

/* iframe {
  width: 300px;
  height: 300px;
} */
.main-content {
  padding: 1.9rem;
}

.main-title {
  font-size: 2rem;
}

.main-subtitle {
  font-size: 1rem;
}

.play-button {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
}

.openvideo {
  width: 100%;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: red; */
}

.close-button {
  width: 40px;
  height: 40px;
  top: -10px;
  right: -10px;
  font-size: 1.2rem;
}

.popup-video {
  border-radius: 15px;
}
}
/* Mobile Small */
@media (max-width: 575px) {
  .popup-container {
    max-width: 95%;
    max-height: 60%;
    border-radius: 12px;
  }
  .openvideo {
    width: 100%;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  iframe {
    width: 400px;
    height: 360px;
  }

  .main-content {
    padding: 2rem 4rem;
  }
  #vcl {
    font-size: 2rem;
  }

  .main-title {
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
  }

  .main-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .play-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .close-button {
    width: 35px;
    height: 35px;
    top: -8px;
    right: -8px;
    font-size: 1.1rem;
  }

  .popup-video {
    border-radius: 12px;
  }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
  .popup-container {
    max-width: 98%;
    max-height: 55%;
  }

  iframe {
    width: 4000px;
    height: 360px;
  }

  .main-title {
    font-size: 1.5rem;
  }
  .openvideo {
    width: 100%;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: red; */
  }

  .main-subtitle {
    font-size: 0.8rem;
  }

  .play-button {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .close-button {
    width: 32px;
    height: 32px;
    top: -6px;
    right: -6px;
    font-size: 1rem;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .popup-container {
    max-height: 95%;
  }

  .main-content {
    padding: 1.7rem;
  }
  .openvideo {
    width: 100%;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
  
  }

  .main-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }

  .main-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 992px) {
  .feedback-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .feedback-card {
    max-width: 90%;
  }
}

@media (max-width: 600px) {
  .feedback-section h2 {
    font-size: 22px;
  }

  .feedback-card p {
    font-size: 14px;
  }

  .feedback-card h4 {
    font-size: 16px;
    gap: 25px;
  }
}

.founders-section {
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem 1rem;

  background: black;
}

.foundercon {
  width: 90%;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.founderleft,
.founderright {
  width: 40%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  justify-content: center;
  gap: 20px;
  background: black;
  box-shadow: 0 20px 40px rgba(255, 0, 0, 0.1), 0 0 20px rgba(255, 0, 0, 0.05);
  border: 10px double red;
  border-radius: 20px;
  transition: 0.4s ease;
}

.founderleft:hover,
.founderright:hover {
  transform: translateY(-15px);
}

.fndimg {
  width: 200px;
  height: 200px;
  border: 5px solid red;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-image: url("./assets/SAVE_20250408_121605_4-removebg-preview.png");
}

.fndimgg {
  width: 200px;
  height: 200px;
  border: 5px solid red;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-image: url("./assets/WhatsApp\ Image\ 2025-10-04\ at\ 4.58.34\ PM.jpeg");
}

#hh3 {
  font-size: 1rem;
  color: red;
}
#hh5 {
  font-size: 0.7rem;
  color: white;
}
#fndp {
  font-size: 0.5rem;
  text-align: center;
  color: white;
  line-height: 1.1;
}
#ldr {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: white;
  text-align: center;
}

/* Tablets */
@media (max-width: 992px) {
  .founderleft,
  .founderright {
    width: 45%;
    min-height: auto;
  }
  #hh3 {
    font-size: 1.2rem;
  }
  #hh5 {
    font-size: 0.9rem;
  }
  #fndp {
    font-size: 0.8rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .foundercon {
    flex-direction: column;
    align-items: center;
  }
  .founderleft,
  .founderright {
    width: 90%;
    margin-bottom: 20px;
  }
  .fndimg,
  .fndimgg {
    width: 150px;
    height: 150px;
  }
  #hh3 {
    font-size: 0.8rem;
  }
  #hh5 {
    font-size: 0.7rem;
  }
  #fndp {
    font-size: 0.6rem;
  }
  #ldr {
    font-size: 1.2rem;
  }
}
