@import url("https://fonts.googleapis.com/css2?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&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {}

.containerr {
  width: 100%;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
}

.cIn {
  width: 80%;
  display: flex;
}

.left {
  width: 50%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: left 0.5s ease-in;
}

@keyframes left {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
  }
}

.left h1 {
  font-size: 5vw;
  color: #536DFE;
}

.left p {
  color: rgb(36, 36, 36);
}

.left button {
  padding: 10px 25px;
  background-color: #536DFE;
  color: white;
  border-radius: 25px;
  border: 0px;
  cursor: pointer;
  margin-top: 20px;
}

.right {
  width: 50%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;

}


.right img {
  width:80%;
  animation: right 0.5s ease-in;
}

@keyframes right {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
  }
}

.blob {
  width: 70%;
  height: 70%;
  background-size: cover;
  background-position: center center;
  background-repeat: repeat;
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox=%220 0 1000 1000%22 xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cdefs%3E%3CclipPath id=%22a%22%3E%3Cpath fill=%22currentColor%22 d=%22M847 673.5Q700 847 484 874T200 700.5q-68-200.5 3-396T464 171q190 62 360 195.5t23 307Z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Cg clip-path=%22url(%23a)%22%3E%3Cpath fill=%22%23444cf7%22 d=%22M847 673.5Q700 847 484 874T200 700.5q-68-200.5 3-396T464 171q190 62 360 195.5t23 307Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");

}

.about {
  display: flex;
  justify-content: center;
}

.aIn {
  width: 80%;
  display: block;
  text-align: center;
}

.aleft {
  width: 100%;
  color: #536DFE;
  /* display: flex;
  justify-content: center;
  align-items: center; */
}

.aleft p {
  color: rgb(36, 36, 36);
  margin-top: 20px;
}

.aleft p a{
  color: #536DFE;
}

.aright {
  margin-top: 30px;
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto;
}

.aright img {
  width: 90%;
}



.footer {
  width: 100%;
  height: fit-content;
  padding-bottom: -30px;
}



@media only screen and (min-width: 1600px) {
  .cIn {
    width: 60%;
  }

  .aIn {
    width: 60%;
  }
}

@media only screen and (max-width: 912px) {
  .containerr {
    display: block;
    height: fit-content;
  }

  .cIn {
    display: block;
    width: 100%;
  }

  .left {
    width: 100%;
    height: fit-content;
    text-align: center;
    padding: 30px;
    display: block;
  }

  .left h1 {
    font-size: 10vw;
  }

  .right {
    width: 100%;
    height: 50vh;
  }

  .right img {
    width: 60%;
  }
}

@media only screen and (max-width: 540px) {
  .aright {
    grid-template-columns: auto auto;
    gap: 10px;
  }

  .aright img {
    width: 100%;
  }
}

@media only screen and (max-width: 390px) {
  .aright {
    grid-template-columns: auto;
    gap: 10px;
  }

  .aright img {
    width: 100%;
  }
}

/* Animation Section Styles */
.animations {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.animations h2 {
  color: white;
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.animations .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.1rem;
}

.animation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.animation-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.animation-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.animation-card h3 {
  color: white;
  margin: 20px 0 15px 0;
  font-size: 1.3rem;
}

.animation-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.floating-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
  animation: float 3s ease-in-out infinite;
  position: relative;
}

.floating-icon i {
  animation: rotate 4s linear infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: float-dot 6s ease-in-out infinite;
}

.dot-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.dot-2 {
  top: 60%;
  left: 80%;
  animation-delay: 1s;
}

.dot-3 {
  top: 80%;
  left: 20%;
  animation-delay: 2s;
}

.dot-4 {
  top: 30%;
  left: 70%;
  animation-delay: 3s;
}

.dot-5 {
  top: 70%;
  left: 40%;
  animation-delay: 4s;
}

@keyframes float-dot {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) translateX(10px);
    opacity: 1;
  }
}

/* Responsive Design for Animation Section */
@media only screen and (max-width: 768px) {
  .animation-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .animations h2 {
    font-size: 2rem;
  }
  
  .floating-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 480px) {
  .animation-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .animations {
    padding: 60px 0;
  }
}