* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body{overflow-X:hidden; font-family: 'Poppins', sans-serif;}
/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  padding: 0 30px;
  box-shadow: 0 8px 10px rgba(0,0,0,0.5); 
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  background: rgb(228, 225, 225); 
  transition: 0.4s ease;
   z-index: 999999;
}


.nav-logo img {
  width: 120px;
  transition: 0.3s;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: rgb(36, 26, 116); 
  font-size: 19px;
  font-weight: bold;
  padding: 8px 12px;
  transition: 0.3s;
}

.nav-links a:hover {
  background: linear-gradient(90deg, rgba(161,121,192,0.6), rgba(194,85,152,0.6));
  border-radius: 10px;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  list-style: none;
  z-index: 999;
  padding: 10px 0;
  margin-top:8px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.dropdown-menu li {
  padding: 10px 15px;
}

.dropdown-menu li a {
  color: rgb(18, 21, 117);
   white-space: nowrap; 
  font-size: 17px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #241a74;
}
@media (max-width: 1024px) {

  .navbar {
    padding: 0 20px;
    height: 75px;
  }

  .nav-logo img {
    width: 100px;
  }

  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    font-size: 17px;
    padding: 6px 10px;
  }

  .dropdown-menu {
    min-width: 220px;
  }
}  

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .navbar {
    height: 75px;
  }

  .nav-links {
    position: absolute;
    top: 75px;
    left: -100%;
    width: 100%;
    background: rgba(228, 225, 225,0.9);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    transition: 0.4s ease;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links a {
    font-size: 18px;
  }

  /* Dropdown for mobile */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    margin-top: 5px;
    display: none;
    background: transparent;
  }

  .dropdown:hover .dropdown-menu {
    display: none; /* disable hover on mobile */
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}

@media (max-width: 480px) {

  .navbar {
    height: 75px;
    padding: 0 15px;
  }

  .nav-logo img {
    width: 95px;
  }

  .menu-toggle {
    font-size: 28px;
  }

  .nav-links {
    top: 65px;
    gap: 15px;
    padding: 20px 0;
  }

  .nav-links a {
    font-size: 17px;
  }

  .dropdown-menu li a {
    font-size: 17px;
  }
}
/*--------------------- VIDEO ------------------------*/
.hero-video {
 position: absolute;
 top: 0;
 padding-top:50px;
 right: 0;
 width: 100%;
height: 100%;
 object-fit: cover;
 transform: scale(0.85);
 animation: zoomOut 6s ease forwards;
 -webkit-transform: scale(0.85);
 -moz-transform: scale(0.85);
 -ms-transform: scale(0.85);
 -o-transform: scale(0.85);
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 1;
  width: 35%;
  padding: 100px 8%;
  color: white;
}
/* =======================
   LAPTOP / SMALL DESKTOP (1024px)
======================= */
@media (max-width: 1024px) {
  .hero-content {
    width: 50%;
    padding: 80px 6%;
  }

  .hero-video {
    transform: scale(0.9);
  }
}

/* =======================
   TABLET (768px)
======================= */
@media (max-width: 768px) {
  .hero-content {
    width: 80%;
    padding: 60px 5%;
    text-align: center;
  }

  .hero-video {
    transform: scale(1);  
    padding-top: 0;
  }
 
}

/* =======================
   MOBILE (480px)
======================= */
@media (max-width: 480px) {
  .hero-content {
    width: 100%;
    margin:auto;
    padding: 50px 4%;
    text-align: center;
  }
 .hero{height:75vh; }
  .hero-video {
    height: 80vh;
    width: 60vh;
  
    object-fit: cover;
    transform: scale(1);
  }
}
/* ---------------------state  section code --------------------*/
.hero-stats {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  gap: 60px;
  width: 80%;
  max-width: 1100px;
  background:
        radial-gradient(circle at top left, rgba(76, 93, 186, 0.5), transparent 40%),
        radial-gradient(circle at bottom right, rgba(227, 54, 111, 0.6), transparent 87%),
        #3333a4;
  padding: 30px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 10;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.stat {
  text-align: center;
  flex: 1;
}

.stat h2 {
  font-size: 39px;
  color: #fff;
  margin-bottom: 5px;
}

.stat p {
  font-size: 22px;
  color: #fff;
}

@media (max-width: 1024px) {

  .hero-stats {
    width: 90%;
    gap: 40px;
    padding: 25px 30px;
    bottom: -60px;
  }

  .stat h2 {
    font-size: 32px;
  }

  .stat p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {

  .hero-stats {
    display:none;
  }

  
}

@media (max-width: 480px) {

  .hero-stats {
    display: none;
    margin-bottom:-40px;
  }
}
/* ------------------about us code--------------*/
.about {
  padding: 100px 10%;
  background: #fff;
   overflow-x: hidden;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
  
}


.img-box {
  position: relative;
  display: inline-block;
}

/* BACKGROUND SHAPE    */
.img-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
   background:
        radial-gradient(circle at top left, rgba(43,58,143,0.25), transparent 40%),
        radial-gradient(circle at bottom right, rgba(216, 20, 85, 0.6), transparent 87%),
        #191975;
  top: 25px;
  left: -35px;  
  border-radius: 20px;
  z-index: 0;
}

/* IMAGE */
.img-box img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 950px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
   transition: transform 0.4s ease;
}
.img-box:hover img {
  transform: scale(1.1);
}

/* IMAGE */
.about-image img {
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* CONTENT */
.about-content h3 {
  color: #e21b7b;
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 2px;
   
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #251173;
  position: relative;
  display: inline-block;
}

/* UNDERLINE */
.about-content h2::after {
  content: "";
  position: absolute;
  left: 28%;
  bottom: -18px;
  width: 30%;
  height: 3.8px;
  background:
        radial-gradient(circle at top left, rgba(43,58,143,0.25), transparent 40%),
        radial-gradient(circle at bottom right, rgba(216, 20, 85, 0.6), transparent 87%),
        #191975;
  border-radius: 5px;
}
.about-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* BUTTON */
.home-about-btn {
  display: inline-block;
  padding: 15px 25px;
  background:
        radial-gradient(circle at top left, rgba(43,58,143,0.25), transparent 40%),
        radial-gradient(circle at bottom right, rgba(216, 20, 85, 0.6), transparent 87%),
        #191975;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.home-about-btn:hover {
  background: transparent;
  border:3px solid rgb(225, 221, 221);
  color:rgb(23, 17, 106);
}

.about-video {
  width: 80%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 1024px) {

  .about {
    padding: 80px 6%;
  }

  .about-container {
    gap: 40px;
  }

  .img-box img {
    max-width: 700px;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .about-content p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {

  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .img-box::before {
    left: 70px;
    top: 20px;
    width:75%;
  }

  .img-box img {
    max-width: 85%;
    margin:auto;
  }

  .about-content h2::after {
    left: 44%;
    transform: translateX(-30%);
    width: 30%;
    -webkit-transform: translateX(-30%);
    -moz-transform: translateX(-30%);
    -ms-transform: translateX(-30%);
    -o-transform: translateX(-30%);
}

  .about-content p {
    font-size: 16px;
  }

  .home-about-btn {
    padding: 6px 18px;
  }
}

@media (max-width: 480px) {

  .about {
    padding: 60px 5%;
  }

  .about-content h2 {
    font-size: 24px;
  }

  .about-content h3 {
    font-size: 16px;
  }

  .about-content p {
    font-size: 15px;
    line-height: 1.5;
  }

  .img-box::before {
    display: none;  
  }

  .home-about-btn {
    padding: 10px 18px;
    font-size: 14px;
  }

  .about-video {
    width: 100%;
  }
}


/* -----------------------what we do ------------------------------- */
/* SECTION */
.what-we-do {
  padding: 100px 10%;
  text-align: center;
  background: url("images/homebackground.jpg") no-repeat center/cover;
  background-attachment: fixed;
  position: relative;
  color: white;
  z-index: 1;
}

/* DARK OVERLAY */
.what-we-do::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(67, 65, 65, 0.6);
  z-index: -1;
}

/* TITLE */
.section-title {
  font-size: 36px;
  margin-bottom: 20px;
}

.section-subtitle {
  margin-bottom: 50px;
  font-size: 18px;

}

/* GRID */
.what-we-do-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
   overflow-x: hidden;
}
.what-we-do .section-title {
  position: relative;   
  display: inline-block;
  font-size: 36px;
  color: #fff;
}

/* CUSTOM UNDERLINE */
.what-we-do .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -18px;
  width: 50%;
  height: 3.8px;
  background:  #fff;
  border-radius: 5px;
}
/* CARD */
.what-we-do-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  border-radius: 20px;
  transition: 0.4s;
}

/* IMAGE */
.card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
}

/* TEXT */
.what-we-do-card h2 {
  margin: 15px 0;
}

.what-we-do-card p {
  font-size: 15px;
  line-height: 1.6;
}

/* HOVER EFFECT */
.what-we-do-card:hover {
  transform: translateY(-10px);
  background:
  radial-gradient(circle at top left, rgba(60, 75, 159, 0.2), transparent 40%),
  radial-gradient(circle at bottom right, rgba(209, 9, 76, 0.5), transparent 87%),
  rgba(40, 40, 137, 0.3); 
}

/* RESPONSIVE */
 
 

.what-we-do-card h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #230f6a;
}

.what-we-do-card p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}

.what-we-do-card:hover h2,
.what-we-do-card:hover p{
  color:white;
} 


@media (max-width: 1024px) {

  .what-we-do {
    padding: 80px 6%;
  }

  .what-we-do-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 17px;
  }
}

@media (max-width: 768px) {

  .what-we-do {
    padding: 70px 5%;
  }
.what-we-do {
    background-attachment: fixed; 
  }
  .what-we-do-container {
     grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }
  
  .what-we-do-card {
    padding: 25px 18px;
  }

  .what-we-do-card h2 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {

  .what-we-do {
    padding: 60px 5%;
  }
.what-we-do-container {
     grid-template-columns:1fr;
    gap: 20px;
  }
  .what-we-do .section-title {
    font-size: 27px;
  }

  .what-we-do .section-title::after {
    width: 60%;
    bottom: -14px;
  }

  .section-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .what-we-do-card {
    padding: 20px 15px;
  }

  .what-we-do-card h2 {
    font-size: 20px;
  }

  .what-we-do-card p {
    font-size: 15px;
  }

  .card img {
    width: 97px;
    height: 97px;
  }
}
/* ---------------------why choose us------------------ */

.why-choose {
  padding: 80px 10%;
  text-align: center;
    background:#e7e7fc;
}
.why-choose h2 {
  position: relative;
  display: inline-block;
  font-size: 36px;
  color: #220d6c; margin-bottom: 50px;
}

/* UNDERLINE */
.why-choose h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -18px;

  width: 50%;
  height: 3.8px;

  background:
    radial-gradient(circle at top left, rgba(43,58,143,0.25), transparent 40%),
    radial-gradient(circle at bottom right, rgba(216, 20, 85, 0.6), transparent 87%),
    #191975;

  border-radius: 5px;
}

.why-container {
  max-width: 900px;
  margin: auto;
 

}
.why-item {
  margin-bottom: 15px;
}

.why-btn {
  width: 100%;
  background:
        radial-gradient(circle at top left, rgba(60, 75, 159, 0.2), transparent 40%),
        radial-gradient(circle at bottom right, rgba(209, 9, 76, 0.5), transparent 87%),
        #282889;
  color: #fff;
  padding: 18px 90px;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align:center;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

/* left arrow shape */
.why-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;   
  width: 80px;
  background: rgba(201, 53, 145, 0.6);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.why-btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background: rgba(201, 53, 145, 0.6);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

/* active state */
.why-item.active .why-content {
  max-height: 150px;
  padding: 15px 20px;
}

.why-item.active .why-btn span {
  transform: rotate(180deg);
}

@media (max-width: 1024px) {

  .why-choose {
    padding: 70px 6%;
  }

  .why-choose h2 {
    font-size: 32px;
  }

  .why-btn {
    font-size: 17px;
    padding: 16px 70px;
  }

  .why-btn::before,
  .why-btn::after {
    width: 60px;
  }
}

@media (max-width: 768px) {

  .why-choose {
    padding: 60px 5%;
  }

  .why-choose h2 {
    font-size: 28px;
  }

  .why-btn {
    font-size: 16px;
    padding: 15px 60px;
    border-radius: 40px;
  }

  .why-btn::before,
  .why-btn::after {
    width: 50px;
  }

  .why-container {
    max-width: 90%;
  }
}

@media (max-width: 480px) {

  .why-choose {
    padding: 60px 5%;
  }

  .why-choose h2 {
    font-size: 27px;
  }

  .why-choose h2::after {
    width: 60%;
    bottom: -14px;
  }

  .why-btn {
    font-size: 15px;
    padding: 14px 50px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

  .why-btn::before,
  .why-btn::after {
    width: 40px;
  }

  .why-item.active .why-content {
    max-height: 200px;
  }
}

/* -------------footer ----------------*/
.footer {
  position: relative;
   background: linear-gradient(to bottom, #92969b, #323439);
  color: #fff;
  padding-top: 140px;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}
.footer-wave svg {
  width: 100%;
  height: 140px;
  display: block;
}

.footer-wave path {
  fill: #e7e7fc;
}
 
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 30px 8%;
}

.footer-col:first-child {
  transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
}
.footer-col{
  width:300px;
}
.social-icons {
  display: flex;
  align-items: center;
  justify-content:center;
  margin-right:38px;
  gap: 20px; 
}
.social-icons a {
  text-decoration: none;  
  color: inherit;          
}

.social-icons i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 2px solid white;
  border-radius: 50%;
  cursor: pointer;
   
}

.social-icons i:hover{transform: scale(1.1);}

 
.footer-col p {
  color: #fefcfc;
  font-size:18px;
  line-height: 1.6;
}
 
.footer-col h3 {
  margin-bottom: 20px;
  font-size: 23px;
  color:#fafafc;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #fefdfd;
  cursor: pointer;
  font-weight:500;
  transition: 0.3s;
}

.footer-col ul li i{
  font-size:20px;
  color:#fafbfd;
  padding-right:5px;
} 

.footer-col ul li a {
  text-decoration: none;  
  color: inherit;          
  transition: 0.3s;
}

.footer-col ul li:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-last{text-align:center;font-size:17px;}







 
.footer-col {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

 
.footer-col:nth-child(1) { animation-delay: 0.2s; }
.footer-col:nth-child(2) { animation-delay: 0.4s; }
.footer-col:nth-child(3) { animation-delay: 0.6s; }

 
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-wave svg path {
  animation: waveMove 4s ease-in-out infinite alternate;
  -webkit-animation: waveMove 4s ease-in-out infinite alternate;
}

@keyframes waveMove {
  0% {
    d: path("M0,160C240,40,480,40,720,120C960,200,1200,200,1440,120L1440,0L0,0Z");
  }
  100% {
    d: path("M0,120C240,200,480,200,720,100C960,20,1200,60,1440,140L1440,0L0,0Z");
  }
}








/* @media (max-width: 1024px) {

  .footer {
    padding-top: 120px;
  }

  .footer-container {
    gap: 30px;
    padding: 30px 5%;
  }

  .footer-col {
    width: 100%;
  }

  .footer-col p {
    font-size: 16px;
  }

  .footer-col h3 {
    font-size: 20px;
  }

  .social-icons {
    justify-content: flex-start;
    margin-right: 0;
  }
  .footer-last{text-align:center;font-size:17px;}
}

@media (max-width: 768px) {

  .footer {
    padding-top: 100px;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 25px 5%;
  }

  .footer-col:first-child {
    transform: none;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-col ul li {
    font-size: 15px;
  }

  .footer-col p {
    font-size: 15px;
  }
  .footer-last{text-align:center;font-size:17px;}
}

@media (max-width: 480px) {

  .footer {
    padding-top: 80px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
    overflow-x:hidden;
  }

  .footer-wave svg {
    height: 60px;
  }

  .footer-col {
    width: 100%;
  }

  .footer-col h3 {
    font-size: 18px;
  }

  .footer-col p {
    font-size: 16px;
  }

  .footer-col ul li {
    font-size: 16px;
  }

  .social-icons {
    justify-content: center;
    gap: 15px;
  }
  .footer-last{text-align:center;font-size:15px;}
} */


@media (max-width: 1024px) {

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 6%;
    gap: 30px;
  }

  .footer-col {
    width: 100%;
  }

  .social-icons {
    justify-content: flex-start;
    margin-right: 0;
  }

  .footer-wave svg {
    height: 120px;
  }
}

@media (max-width: 768px) {

  .footer {
    padding-top: 120px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }

  .footer-col {
    width: 100%;
  }

  .footer-col:first-child {
    transform: translateY(0);
  }

  .social-icons {
    justify-content: center;
  }

  .footer-wave svg {
    height: 100px;
  }

  .footer-col ul li {
    text-align: center;
  }
}

@media (max-width: 480px) {

  .footer {
    padding-top: 100px;
  }

  .footer-wave svg {
    height: 50%;
  }

  .footer-container {
    padding: 20px 5%;
    gap: 20px;
  }

  .footer-col p {
    font-size: 16px;
    line-height: 1.4;
  }

  .footer-col h3 {
    font-size: 18px;
  }
  
  .footer-col ul li {
    text-align: center;
    font-size:16px;
  }

   .footer-col ul li a{
    line-height:1.4;
   }
  .social-icons i {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .footer-last {
    font-size: 15px;
  }
}

/* back to top button */
#topBtn {
  position: fixed;
  bottom: 30px;
  right: 65px;
  background: #c71471;
  color: white;
  border: none;
  padding: 14px 18px;
  border-radius: 50%;
  font-size: 24px;
  font-weight:600;
  cursor: pointer;
  display: none; /* hidden initially */
  box-shadow: 0 5px 15px rgba(219, 25, 87, 0.3);
  transition: 0.3s;
  z-index: 1000;
}

#topBtn:hover {
  background: rgb(194, 17, 94);
  transform: scale(1.1);
}
@media (max-width: 1024px) {

  #topBtn {
    bottom: 20px;
    right: 20px;
    padding: 12px 16px;
    font-size: 22px;
  }
}

@media (max-width: 768px) {

  #topBtn {
    bottom: 18px;
    right: 18px;
    padding: 11px 14px;
    font-size: 20px;
  }
}
@media (max-width: 480px) {

  #topBtn {
    bottom: 15px;
    right: 15px;
    padding: 16px ;
    font-size: 20px;
  }
}