@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;
}
/*Common Css*/
body
{
	font-family: "Poppins", sans-serif;
}
a{ text-decoration:none }
ul li{list-style-type: none}
.padding-space{padding: 3rem 0rem}


/*header section css*/

.nav-link ,.active
{
	color: #000;
	font-weight: 500;
	letter-spacing: 1px;
}
.nav-link:hover
{
	color: #D5147B;
}

/*footer section desing*/


    /* FOOTER */
    .footer{
      width:100%;
      position:relative;
      background:linear-gradient(135deg,#0f172a,#111827,#1e293b);
      color:#fff;
      overflow:hidden;
      padding:80px 0 20px;
    }

    /* Animated Glow */
    .footer::before{
      content:"";
      position:absolute;
      width:500px;
      height:500px;
      background:rgba(255,0,150,0.2);
      border-radius:50%;
      top:-200px;
      left:-100px;
      filter:blur(120px);
      animation:moveGlow 8s infinite alternate;
    }

    .footer::after{
      content:"";
      position:absolute;
      width:400px;
      height:400px;
      background:rgba(0,150,255,0.2);
      border-radius:50%;
      bottom:-150px;
      right:-100px;
      filter:blur(120px);
      animation:moveGlow2 8s infinite alternate;
    }

    @keyframes moveGlow{
      0%{transform:translate(0,0);}
      100%{transform:translate(100px,50px);}
    }

    @keyframes moveGlow2{
      0%{transform:translate(0,0);}
      100%{transform:translate(-80px,-40px);}
    }

    .footer h4{
      font-weight:700;
      margin-bottom:20px;
      position:relative;
    }

    .footer h4::after{
      content:"";
      position:absolute;
      left:0;
      bottom:-8px;
      width:50px;
      height:3px;
      background:#ff0080;
      border-radius:10px;
    }

    .footer p{
      color:#cbd5e1;
      line-height:1.8;
    }

    .footer-links{
      list-style:none;
      padding:0;
    }

    .footer-links li{
      margin-bottom:12px;
      transition:0.3s;
    }

    .footer-links li:hover{
      transform:translateX(8px);
    }

    .footer-links a{
      text-decoration:none;
      color:#cbd5e1;
      transition:0.3s;
    }

    .footer-links a:hover{
      color:#ff0080;
    }

    /* Social Icons */
    .social-icons{
      display:flex;
      gap:15px;
      margin-top:20px;
    }

    .social-icons a{
      width:45px;
      height:45px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:50%;
      background:rgba(255,255,255,0.08);
      color:#fff;
      font-size:20px;
      transition:0.4s;
      position:relative;
      overflow:hidden;
    }

    .social-icons a::before{
      content:"";
      position:absolute;
      width:100%;
      height:100%;
      background:linear-gradient(45deg,#ff0080,#7928ca);
      top:100%;
      left:0;
      transition:0.4s;
      z-index:-1;
    }

    .social-icons a:hover::before{
      top:0;
    }

    .social-icons a:hover{
      transform:translateY(-8px) rotate(360deg);
      color:#fff;
    }

    /* Newsletter */
    .newsletter{
      position:relative;
      margin-top:20px;
    }

    .newsletter input{
      width:100%;
      padding:14px 20px;
      border:none;
      border-radius:50px;
      outline:none;
      background:#fff;
    }

    .newsletter button{
      position:absolute;
      right:5px;
      top:5px;
      border:none;
      padding:9px 20px;
      border-radius:50px;
      background:linear-gradient(45deg,#ff0080,#7928ca);
      color:#fff;
      font-weight:600;
      transition:0.3s;
    }

    .newsletter button:hover{
      transform:scale(1.05);
    }

    /* Bottom Footer */
    .footer-bottom{
      margin-top:50px;
      border-top:1px solid rgba(255,255,255,0.1);
      padding-top:20px;
      text-align:center;
      color:#cbd5e1;
      position:relative;
      z-index:2;
    }

    /* Floating animation */
    .floating{
      animation:float 4s ease-in-out infinite;
    }

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


/*    Contact page desing*/





    /* =========================
       HERO SECTION
    ==========================*/

    .contact-section{
      min-height:100vh;
      position:relative;
      padding:100px 0;
      overflow:hidden;
    }

    /* Animated Background Glow */

    .contact-section::before{
      content:'';
      position:absolute;
      width:500px;
      height:500px;
      background:rgba(255,0,128,0.18);
      border-radius:50%;
      top:-200px;
      left:-150px;
      filter:blur(120px);
      animation:move1 8s infinite alternate;
    }

    .contact-section::after{
      content:'';
      position:absolute;
      width:400px;
      height:400px;
      background:rgba(0,162,255,0.18);
      border-radius:50%;
      bottom:-150px;
      right:-100px;
      filter:blur(120px);
      animation:move2 8s infinite alternate;
    }

    @keyframes move1{
      0%{transform:translateY(0);}
      100%{transform:translateY(50px);}
    }

    @keyframes move2{
      0%{transform:translateX(0);}
      100%{transform:translateX(-60px);}
    }

    /* =========================
       TITLE
    ==========================*/

    .section-title{
      text-align:center;
      margin-bottom:60px;
      position:relative;
      z-index:2;
    }

    .section-title h1{
      font-size:55px;
      font-weight:700;
      background:linear-gradient(45deg, #000000, #87107e);
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
    }

    .section-title p{
      color:#333;
      margin-top:15px;
      font-size:17px;
    }

    /* =========================
       CONTACT BOX
    ==========================*/

    .contact-box{
      background:rgba(255,255,255,0.05);
      border:1px solid rgb(0 0 0 / 50%);
      backdrop-filter:blur(15px);
      border-radius:25px;
      padding:50px;
      position:relative;
      overflow:hidden;
      z-index:2;
      transition:0.4s;
    }

    .contact-box:hover{
      transform:translateY(-8px);
      box-shadow:0 20px 40px rgba(0,0,0,0.4);
    }

    /* =========================
       CONTACT INFO
    ==========================*/

    .info-box{
      display:flex;
      align-items:flex-start;
      gap:18px;
      margin-bottom:35px;
    }

    .info-icon{
   
      
      font-size:24px;
      color:#333;
      
    }

    .info-box:hover .info-icon{
      transform:rotate(360deg) scale(1.1);
    }

    .info-content h5{
      margin-bottom:8px;
      font-weight:600;
    }

    .info-content p{
      margin:0;
      color:#333;
      line-height:1.7;
    }

    /* =========================
       FORM
    ==========================*/

    .form-control{
      background:rgb(235 235 235 / 31%);
      border:none;
      border-radius:14px;
      padding:15px 20px;
      color:#fff;
      margin-bottom:20px;
    }

    .form-control:focus{
      background:rgba(255,255,255,0.12);
      box-shadow:none;
      border:1px solid #ff0080;
      color:#fff;
    }

    .form-control::placeholder{
      color:#333;
    }

    textarea.form-control{
      resize:none;
      height:140px;
    }

    /* =========================
       BUTTON
    ==========================*/

    .btn-contact{
      background:linear-gradient(45deg,#ff0080,#7928ca);
      border:none;
      padding:15px 35px;
      border-radius:50px;
      color:#fff;
      font-weight:600;
      transition:0.4s;
      position:relative;
      overflow:hidden;
    }

    .btn-contact:hover{
      transform:translateY(-5px);
      box-shadow:0 10px 25px rgba(255,0,128,0.4);
    }

    /* =========================
       SOCIAL ICONS
    ==========================*/

    .social-icons{
      display:flex;
      gap:15px;
      margin-top:25px;
    }

    .social-icons a{
      width:45px;
      height:45px;
      border-radius:50%;
      background:rgba(255,255,255,0.08);
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      text-decoration:none;
      transition:0.4s;
      font-size:18px;
    }

    .social-icons a:hover{
      background:linear-gradient(45deg,#ff0080,#7928ca);
      transform:translateY(-6px) rotate(360deg);
    }

        .social-icons1{
      display:flex;
      gap:15px;
      margin-top:25px;
    }

    .social-icons1 a{
      width:45px;
      height:45px;
      border-radius:50%;
      background:rgba(0,0,0,0.08);
      display:flex;
      align-items:center;
      justify-content:center;
      color:#333;
      text-decoration:none;
      transition:0.4s;
      font-size:18px;
    }

    .social-icons1 a:hover{
      background:linear-gradient(45deg,#ff0080,#7928ca);
      transform:translateY(-6px) rotate(360deg);
      color: #fff;
    }

    /* =========================
       FLOATING ANIMATION
    ==========================*/

    .floating{
      animation:float 4s ease-in-out infinite;
    }

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

    /* =========================
       RESPONSIVE
    ==========================*/

    @media(max-width:768px){

      .section-title h1{
        font-size:38px;
      }

      .contact-box{
        padding:30px;
      }

    }


/*    about page desing*/



   

    /* =========================
       COMMON SECTION
    ========================== */

    .section-title{
      text-align:center;
      margin-bottom:60px;
    }

   /* .section-title h2{
      font-size:48px;
      font-weight:700;
      color:#111827;
      margin-bottom:15px;
    }*/

    .section-title p{
      color:#555;
      max-width:700px;
      margin:auto;
      line-height:1.8;
    }

    /* =========================
       ABOUT SECTION
    ========================== */

    .about-section{
      position:relative;
      padding:100px 0;
      background:#fff;
      overflow:hidden;
    }

    /* Animated Background */

    .about-section::before{
      content:'';
      position:absolute;
      width:450px;
      height:450px;
      background:rgba(255,0,128,0.08);
      border-radius:50%;
      top:-150px;
      left:-150px;
      filter:blur(120px);
      animation:moveGlow1 8s infinite alternate;
    }

    .about-section::after{
      content:'';
      position:absolute;
      width:400px;
      height:400px;
      background:rgba(0,162,255,0.08);
      border-radius:50%;
      bottom:-150px;
      right:-100px;
      filter:blur(120px);
      animation:moveGlow2 8s infinite alternate;
    }

    @keyframes moveGlow1{
      0%{transform:translateY(0);}
      100%{transform:translateY(50px);}
    }

    @keyframes moveGlow2{
      0%{transform:translateX(0);}
      100%{transform:translateX(-50px);}
    }

    .about-img{
      position:relative;
      z-index:2;
    }

    .about-img img{
      width:100%;
      border-radius:30px;
      transition:0.5s;
      box-shadow:0 20px 50px rgba(0,0,0,0.15);
    }

    .about-img img:hover{
      transform:scale(1.03);
    }

    .about-content{
      position:relative;
      z-index:2;
    }

    .about-tag{
      display:inline-block;
      padding:10px 25px;
      border-radius:50px;
      background:#f4f4f4;
      color:#ff0080;
      margin-bottom:25px;
      font-weight:600;
    }

    .about-content h1{
      font-size:55px;
      font-weight:700;
      line-height:1.3;
      margin-bottom:25px;
      color:#111827;
    }

    .about-content p{
      color:#555;
      line-height:1.9;
      margin-bottom:20px;
    }

    .about-btn{
      display:inline-block;
      padding:15px 35px;
      border-radius:50px;
      background:linear-gradient(45deg,#ff0080,#7928ca);
      color:#fff;
      text-decoration:none;
      font-weight:600;
      transition:0.4s;
      margin-top:15px;
    }

    .about-btn:hover{
      transform:translateY(-5px);
      color:#fff;
      box-shadow:0 10px 25px rgba(255,0,128,0.3);
    }

    /* =========================
       MISSION SECTION
    ========================== */

    .mission-section{
      padding:100px 0;
      background:#ffffff;
    }

    .mission-card{
      background:#fff;
      border:1px solid #eee;
      border-radius:30px;
      padding:40px 30px;
      text-align:center;
      transition:0.5s;
      height:100%;
      position:relative;
      overflow:hidden;
      box-shadow:0 10px 30px rgba(0,0,0,0.08);
    }

    .mission-card::before{
      content:'';
      position:absolute;
      width:100%;
      height:4px;
      background:linear-gradient(45deg,#ff0080,#00c6ff);
      top:0;
      left:0;
    }

    .mission-card:hover{
      transform:translateY(-12px);
      box-shadow:0 20px 40px rgba(0,0,0,0.12);
    }

    .mission-icon{
      width:90px;
      height:90px;
      margin:auto;
      margin-bottom:25px;
      border-radius:50%;
      background:linear-gradient(45deg,#ff0080,#7928ca);
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:35px;
      color:#fff;
      transition:0.5s;
    }

    .mission-card:hover .mission-icon{
      transform:rotate(360deg) scale(1.1);
    }

    .mission-card h4{
      margin-bottom:18px;
      font-weight:600;
      color:#111827;
    }

    .mission-card p{
      color:#555;
      line-height:1.8;
    }

   

    /* =========================
       WHY CHOOSE SECTION
    ========================== */

    .why-choose{
      position:relative;
      padding:100px 0;
      overflow:hidden;

      background:#fff;
    }

    /* Background Glow */

    .why-choose::before{
      content:'';
      position:absolute;
      width:350px;
      height:350px;
      background:rgba(255,136,0,0.08);
      border-radius:50%;
      top:-120px;
      left:-120px;
      filter:blur(120px);
      animation:moveGlow 6s infinite alternate;
    }

    .why-choose::after{
      content:'';
      position:absolute;
      width:350px;
      height:350px;
      background:rgba(255,0,128,0.08);
      border-radius:50%;
      bottom:-120px;
      right:-120px;
      filter:blur(120px);
      animation:moveGlow2 6s infinite alternate;
    }

    @keyframes moveGlow{
      100%{
        transform:translateY(40px);
      }
    }

    @keyframes moveGlow2{
      100%{
        transform:translateX(-40px);
      }
    }

    /* =========================
       TITLE
    ========================== */

    .section-title{
      text-align:center;
      margin-bottom:70px;
      position:relative;
      z-index:2;
    }

  

   /* .section-title h2{
      font-size:58px;
      font-weight:800;
      color:#111827;
      margin-bottom:15px;
    }*/

    .section-title h2 span{
      color:#ff8800;
    }

    .section-title p{
      max-width:800px;
      margin:auto;
      color:#666;
      line-height:1.9;
      font-size:18px;
    }

    /* =========================
       CARD
    ========================== */

    .choose-card{
      position:relative;
      background:#fff;
      border-radius:30px;
      padding:40px 30px;
      height:100%;
      overflow:hidden;
      transition:0.5s;
      z-index:2;
      border:1px solid #eee;
      box-shadow:0 15px 40px rgba(0,0,0,0.05);

   
      transform:translateY(60px);
    }

    .choose-card.show{
      opacity:1;
      transform:translateY(0);
      transition:0.8s ease;
    }

    .choose-card:hover{
      transform:translateY(-6px);
      box-shadow:0 20px 60px rgba(0,0,0,0.08);
    }

    /* Top Border */

    .choose-card::before{
      content:'';
      position:absolute;
      top:0;
      left:0;
      width:100%;
      height:6px;
      background:linear-gradient(45deg, #ff0080, #270415);
    }

    /* Glow Circle */

    .choose-card::after{
      content:'';
      position:absolute;
      width:200px;
      height:200px;
      background:rgba(255,136,0,0.06);
      border-radius:50%;
      top:-80px;
      right:-80px;
      transition:0.5s;
    }

    .choose-card:hover::after{
      transform:scale(1.2);
    }

    /* ICON */

    .choose-icon{
      width:90px;
      height:90px;
      border-radius:25px;
      background:linear-gradient(45deg,#ff0080,#7928ca);
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:38px;
      margin-bottom:30px;
      box-shadow:0 15px 35px rgba(255,136,0,0.25);

      animation:floatIcon 4s ease-in-out infinite;
    }

    @keyframes floatIcon{

      0%{
        transform:translateY(0);
      }

      50%{
        transform:translateY(-10px);
      }

      100%{
        transform:translateY(0);
      }

    }

    /* CONTENT */

    .choose-card h4{
      font-size:28px;
      font-weight:700;
      color:#111827;
      margin-bottom:18px;
    }

    .choose-card p{
      color:#666;
      line-height:1.9;
      margin-bottom:0;
      font-size:17px;
    }

    /* =========================
       RESPONSIVE
    ========================== */

    @media(max-width:991px){

      .section-title h2{
        font-size:42px;
      }

    }

    @media(max-width:767px){

      .why-choose{
        padding:80px 0;
      }

      .section-title h2{
        font-size:34px;
      }

      .section-title p{
        font-size:16px;
      }

      .choose-card{
        padding:35px 25px;
      }

      .choose-card h4{
        font-size:24px;
      }

    }

    /* =========================
       FLOATING IMAGE
    ========================== */

    .floating{
      animation:float 4s ease-in-out infinite;
    }

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

    /* =========================
       RESPONSIVE
    ========================== */

    @media(max-width:768px){

      .about-content h1{
        font-size:38px;
      }

      .section-title h2{
        font-size:35px;
      }

    }


/*    product page desing*/

.product-hero{
      position:relative;
      padding:120px 0 100px;
      overflow:hidden;
      background:#fff;
    }

    .product-hero::before{
      content:'';
      position:absolute;
      width:450px;
      height:450px;
      background:rgba(255,0,128,0.08);
      border-radius:50%;
      top:-180px;
      left:-150px;
      filter:blur(120px);
      animation:moveGlow1 8s infinite alternate;
    }

    .product-hero::after{
      content:'';
      position:absolute;
      width:400px;
      height:400px;
      background:rgba(0,162,255,0.08);
      border-radius:50%;
      bottom:-150px;
      right:-100px;
      filter:blur(120px);
      animation:moveGlow2 8s infinite alternate;
    }

    @keyframes moveGlow1{
      0%{transform:translateY(0);}
      100%{transform:translateY(60px);}
    }

    @keyframes moveGlow2{
      0%{transform:translateX(0);}
      100%{transform:translateX(-60px);}
    }

    .hero-content{
      position:relative;
      z-index:2;
      text-align:center;
    }

    .hero-content span{
      display:inline-block;
      padding:10px 25px;
      border-radius:50px;
      background:#f4f4f4;
      color:#ff0080;
      font-weight:600;
      margin-bottom:20px;
    }

    .hero-content h1{
      font-size:60px;
      font-weight:700;
      color:#111827;
      margin-bottom:20px;
    }

    .hero-content p{
      color:#555;
      max-width:750px;
      margin:auto;
      line-height:1.9;
      font-size:17px;
    }

    .img_zoom{
    overflow: hidden;
    border-radius: 10px;
}

.img_zoom img{
    width: 100%;
    transition: transform 0.5s ease;
}

.img_zoom:hover img{
    transform: scale(1.1);
}




    /* =========================
       SECTION
    ========================== */

    .table-section{
      position:relative;
      overflow:hidden;
      background:#f4f7fb;
    }

    .table-section::before{
      content:'';
      position:absolute;
      width:350px;
      height:350px;
      background:rgba(255,0,128,0.08);
      border-radius:50%;
      top:-120px;
      left:-120px;
      filter:blur(100px);
      animation:glow1 8s infinite alternate;
    }

    .table-section::after{
      content:'';
      position:absolute;
      width:350px;
      height:350px;
      background:rgba(0,162,255,0.08);
      border-radius:50%;
      bottom:-120px;
      right:-120px;
      filter:blur(100px);
      animation:glow2 8s infinite alternate;
    }

    @keyframes glow1{
      0%{transform:translateY(0);}
      100%{transform:translateY(50px);}
    }

    @keyframes glow2{
      0%{transform:translateX(0);}
      100%{transform:translateX(-50px);}
    }

    /* =========================
       TITLE
    ========================== */

    .section-title{
      text-align:center;
      margin-bottom:0px;
      position:relative;
      z-index:2;
    }

    .section-title h2{
      font-size:40px;
      font-weight:700;
      color:#111827;
      margin-bottom:25px;
    }

    .section-title p{
      color:#555;
      max-width:700px;
      margin:auto;
      line-height:1.8;
    }

    /* =========================
       TABLE DESIGN
    ========================== */

    .custom-table-wrapper{
      background:#fff;
      border-radius:30px;
      padding:30px;
      box-shadow:0 20px 50px rgba(0,0,0,0.08);
      position:relative;
      z-index:2;
      overflow:hidden;
      animation:fadeUp 1s ease;
    }

    @keyframes fadeUp{
      from{
        opacity:0;
        transform:translateY(40px);
      }
      to{
        opacity:1;
        transform:translateY(0);
      }
    }

    .table{
      margin:0;
      border-collapse:separate;
      border-spacing:0 12px;
    }

    .table thead th{
      background:linear-gradient(45deg,#ff0080,#7928ca);
      color:#fff;
      border:none;
      padding:18px 25px;
      font-size:20px;
      font-weight:600;
    }

    .table thead th:first-child{
      border-radius:15px 0 0 15px;
    }

    .table thead th:last-child{
      border-radius:0 15px 15px 0;
    }

    .table tbody tr{
      transition:0.4s;
    }

    .table tbody tr:hover{
      transform:translateX(8px);
    }

    .table tbody td{
      background:#f9fafb;
      border:none;
      padding:18px 22px;
      vertical-align:middle;
      font-size:16px;
      color:#444;
      transition:0.4s;
    }

    .table tbody td:first-child{
      width:35%;
      font-weight:600;
      color:#111827;
      border-radius:15px 0 0 15px;
      background:#eef2ff;
    }

    .table tbody td:last-child{
      border-radius:0 15px 15px 0;
    }

    .table tbody tr:hover td{
      background:#ffffff;
      box-shadow:0 10px 25px rgba(0,0,0,0.05);
    }

    /* =========================
       ICON STYLE
    ========================== */

    .table-icon{
      width:38px;
      height:38px;
      border-radius:12px;
      background:linear-gradient(45deg,#ff0080,#7928ca);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      margin-right:12px;
      font-size:16px;
    }

    /* =========================
       RESPONSIVE
    ========================== */

    @media(max-width:768px){

      .section-title h2{
        font-size:34px;
      }

      .custom-table-wrapper{
        padding:20px;
      }

      .table thead{
        display:none;
      }

      .table,
      .table tbody,
      .table tr,
      .table td{
        display:block;
        width:100%;
      }

      .table tr{
        margin-bottom:20px;
      }

      .table td{
        border-radius:15px !important;
        margin-bottom:8px;
      }

      .table td:first-child{
        background:linear-gradient(45deg,#ff0080,#7928ca);
        color:#fff;
      }

    }




  /* =========================
     SECTION TITLE
  ========================== */

  .section-title .sub-title{
   display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    background: #000000;
    color: #ffebf5;
    font-weight: 600;
    margin-bottom: 20px;
  }



  .section-title p{
    color:#555;
    max-width:700px;
    margin:auto;
    line-height:1.8;
  }

  /* =========================
     PRODUCT CARD
  ========================== */

  .sale_product{
    position:relative;
    background:#fff;
    border-radius:30px;
    padding:40px 30px;
    text-align:center;
    overflow:hidden;
    transition:0.5s;
    z-index:1;
    height:100%;
    border:1px solid #eee;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
  }

  .sale_product:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
  }

  /* Animated Shape */

  .shape{
    position:absolute;
    width:180px;
    height:180px;
    background:linear-gradient(45deg,#ff0080,#7928ca);
    border-radius:50%;
    top:-80px;
    right:-80px;
    opacity:0.08;
    transition:0.5s;
  }

  .sale_product:hover .shape{
    transform:scale(1.3) rotate(25deg);
  }

  /* =========================
     ICON
  ========================== */

  .icon_withd{
    width:100px;
    height:100px;
    background:linear-gradient(45deg,#ff0080,#7928ca);
    border-radius:50%;
    margin:auto;
    margin-bottom:25px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.6s;
    position:relative;
    z-index:2;
    box-shadow:0 10px 25px rgba(255,0,128,0.25);
  }

  .icon_withd::before{
    content:'';
    position:absolute;
    width:115px;
    height:115px;
    border:2px dashed rgba(255,0,128,0.3);
    border-radius:50%;
    animation:rotate 10s linear infinite;
  }

  @keyframes rotate{
    100%{
      transform:rotate(360deg);
    }
  }

  .sale_product:hover .icon_withd{
    transform:rotateY(360deg) scale(1.1);
  }

  .icon_withd img{
    width:55px;
    height:55px;
    object-fit:contain;
    filter:brightness(0) invert(1);
  }

  /* =========================
     TEXT
  ========================== */

  .sale_product h4{
    font-size:24px;
    font-weight:700;
    color:#111827;
    margin-bottom:15px;
  }

  .sale_product p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
  }

  /* =========================
     BUTTON
  ========================== */

  .product-btn{
    display:inline-block;
    padding:12px 28px;
    border-radius:50px;
    background:linear-gradient(45deg,#ff0080,#7928ca);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
  }

  .product-btn:hover{
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 10px 20px rgba(255,0,128,0.3);
  }

  /* =========================
     SCROLL ANIMATION
  ========================== */

  .sale_product{
    opacity:0;
    transform:translateY(50px);
  }

  .sale_product.show{
    opacity:1;
    transform:translateY(0);
    transition:0.8s ease;
  }

  /* =========================
     RESPONSIVE
  ========================== */

  @media(max-width:768px){

    .section-title h2{
      font-size:34px;
    }

    .sale_product{
      padding:35px 25px;
    }

  }

  .about-home-section{
  position:relative;
  padding:120px 0;
  overflow:hidden;
  background:#fff;
}

/* Background Glow */

.about-home-section::before{
  content:'';
  position:absolute;
  width:400px;
  height:400px;
  background:rgba(255,0,128,0.08);
  border-radius:50%;
  top:-120px;
  left:-120px;
  filter:blur(120px);
  animation:moveGlow 6s infinite alternate;
}

.about-home-section::after{
  content:'';
  position:absolute;
  width:400px;
  height:400px;
  background:rgba(0,162,255,0.08);
  border-radius:50%;
  bottom:-150px;
  right:-120px;
  filter:blur(120px);
  animation:moveGlow2 6s infinite alternate;
}

@keyframes moveGlow{
  0%{
    transform:translateY(0);
  }
  100%{
    transform:translateY(40px);
  }
}

@keyframes moveGlow2{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-40px);
  }
}

/* =========================
   IMAGE SIDE
========================== */

.about-image-wrapper{
  position:relative;
  z-index:2;
}

.about-main-img{
  width:100%;
  border-radius:30px;
  position:relative;
  z-index:2;
  animation:floatImg 4s ease-in-out infinite;
  box-shadow:0 20px 60px rgba(0,0,0,0.12);
}

@keyframes floatImg{

  0%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-15px);
  }

  100%{
    transform:translateY(0);
  }

}

/* Circle Border */

.about-circle{
  position:absolute;
  width:450px;
  height:450px;
  border:2px dashed rgba(255,0,128,0.2);
  border-radius:50%;
  top:-20px;
  left:-20px;
  animation:rotateCircle 15s linear infinite;
}

@keyframes rotateCircle{

  100%{
    transform:rotate(360deg);
  }

}

/* Experience Box */

.experience-box{
  position:absolute;
  bottom:30px;
  right:-20px;
  background:linear-gradient(45deg, #000000, #2d0f4b);
  padding:25px 30px;
  border-radius:25px;
  color:#fff;
  text-align:center;
  z-index:3;
  animation:bounceBox 3s infinite;
  box-shadow:0 15px 35px rgba(255,0,128,0.3);
}

.experience-box h3{
  font-size:40px;
  font-weight:700;
  margin-bottom:5px;
}

.experience-box span{
  font-size:15px;
}

@keyframes bounceBox{

  0%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-10px);
  }

  100%{
    transform:translateY(0);
  }

}

/* =========================
   CONTENT SIDE
========================== */

.about-content{
  position:relative;
  z-index:2;
}

.about-tag{
  display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    background: #000000;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content h2{
  font-size:40px;
  font-weight:600;
  line-height:1.3;
  color:#111827;
  margin-bottom:25px;
}

.about-content p{
  color:#555;
  line-height:1.9;
  margin-bottom:25px;
}

/* =========================
   FEATURE BOX
========================== */

.about-feature{
  display:flex;
  align-items:flex-start;
  gap:18px;
  margin-bottom:25px;
  padding:18px;
  border-radius:20px;
  background:#fff;
  transition:0.4s;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.about-feature:hover{
  transform:translateX(10px);
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.feature-icon{
  width:55px;
  height:55px;
  min-width:55px;
  border-radius:15px;
  background:linear-gradient(45deg,#ff0080,#7928ca);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:22px;
}

.about-feature h5{
  font-weight:600;
  margin-bottom:6px;
  color:#111827;
}

.about-feature p{
  margin:0;
  font-size:15px;
  color:#666;
}

/* =========================
   BUTTON
========================== */

.about-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 35px;
  border-radius:50px;
  background:linear-gradient(45deg,#ff0080,#7928ca);
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:0.4s;
  margin-top:15px;
}

.about-btn:hover{
  color:#fff;
  transform:translateY(-5px);
  box-shadow:0 15px 30px rgba(255,0,128,0.3);
}

/* =========================
   SCROLL ANIMATION
========================== */

.about-content,
.about-image-wrapper{
  opacity:1;
  transform:translateY(50px);
  transition:1s ease;
}

.about-content.show,
.about-image-wrapper.show{
  opacity:1;
  transform:translateY(0);
}

/* =========================
   RESPONSIVE
========================== */

@media(max-width:991px){

  .about-content h2{
    font-size:38px;
  }

  .experience-box{
    right:10px;
    bottom:10px;
    padding:20px;
  }

}

@media(max-width:767px){

  .about-home-section{
    padding:80px 0;
  }

  .about-content h2{
    font-size:32px;
  }

  .about-circle{
    width:300px;
    height:300px;
  }

}
.review-card 
{
  z-index: -1;
}
.review-img
{
  width: 25%;
  height: 25%;
  border-radius: 50%;
  margin: auto;
  margin-top: -2.5rem;
  
}
.review-img img 
{
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 50%;
  border: 4px solid #dee2e6;
}

 .review-card h4{
      font-size:20px;
      font-weight:600;
      color:#333;
      margin-bottom:15px;
      padding-top: 1rem;
    }

    .review-card p{
      color:#555;
      line-height:1.4;
      font-size:16px;
      margin-bottom:20px;
    }


    .stars{
      display:flex;
      justify-content:center;
      gap:8px;
    }

    .stars i{
      color:#ff8800;
      font-size:24px;
      animation:starPulse 1.5s infinite;
    }

    .stars i:nth-child(2){
      animation-delay:0.2s;
    }

    .stars i:nth-child(3){
      animation-delay:0.4s;
    }

    .stars i:nth-child(4){
      animation-delay:0.6s;
    }

    .stars i:nth-child(5){
      animation-delay:0.8s;
    }

    @keyframes starPulse{

      0%{
        transform:scale(1);
      }

      50%{
        transform:scale(1.3);
      }

      100%{
        transform:scale(1);
      }

    }


    /* Slider Main */
    .brand-slider{
      overflow:hidden;
      position:relative;
      width:100%;
      background:#fff;
    }

    .brand-track{
      display:flex;
      width:calc(250px * 12);
      animation:scroll 20s linear infinite;
    }

    .brand-slide{
      width:250px;
      padding:15px;
      flex-shrink:0;
    }

    .brand-slide img{
      width:100%;
      height:90px;
      object-fit:cover;
      padding: 0rem 0.3rem;
      border-radius:10px;
      transition:0.4s;
      box-shadow:0 5px 15px rgba(0,0,0,0.1);
    }

    .brand-slide img:hover{
      transform:scale(1.05);
    }

    /* Animation */
    @keyframes scroll {
      0%{
        transform:translateX(0);
      }
      100%{
        transform:translateX(calc(-250px * 6));
      }
    }

    /* Pause on hover */
    .brand-slider:hover .brand-track{
      animation-play-state:paused;
    }



    /* =========================
       DIRECTOR SECTION
    ========================== */

    .director-section{
      position:relative;
      background:#f5f5f5;
      padding:100px 0;
      overflow:hidden;
      background:#f5f5f5;
    }

    /* Background Glow */

    .director-section::before{
      content:'';
      position:absolute;
      width:350px;
      height:350px;
      background:rgba(255,136,0,0.08);
      border-radius:50%;
      top:-120px;
      left:-120px;
      filter:blur(120px);
      animation:moveGlow 6s infinite alternate;
    }

    .director-section::after{
      content:'';
      position:absolute;
      width:350px;
      height:350px;
      background:rgba(255,0,128,0.08);
      border-radius:50%;
      bottom:-120px;
      right:-120px;
      filter:blur(120px);
      animation:moveGlow2 6s infinite alternate;
    }

    @keyframes moveGlow{
      100%{
        transform:translateY(40px);
      }
    }

    @keyframes moveGlow2{
      100%{
        transform:translateX(-40px);
      }
    }

    /* =========================
       SECTION TITLE
    ========================== */

 

/*    .section-title h2{
      font-size:64px;
      font-weight:800;
      color:#a7a7a7;
      line-height:1.2;
      margin-bottom:0;
      animation:fadeDown 1s ease;
    }*/

    .section-title h2 span{
      color:#10051B;
      position:relative;
    }

    .section-title h2 span::after{
      content:'';
      position:absolute;
      left:0;
      bottom:-8px;
      width:100%;
      height:6px;
      border-radius:10px;
      background:#10051B;
      animation:lineMove 2s infinite alternate;
    }

    @keyframes lineMove{

      0%{
        width:40%;
      }

      100%{
        width:100%;
      }

    }

    @keyframes fadeDown{

      from{
        opacity:0;
        transform:translateY(-50px);
      }

      to{
        opacity:1;
        transform:translateY(0);
      }

    }

    /* =========================
       MESSAGE BOX
    ========================== */

    .director-box{
      background:#fff;
      border-radius:35px;
      padding:60px;
      position:relative;
      overflow:hidden;
      z-index:2;
      box-shadow:0 20px 60px rgba(0,0,0,0.08);
      transition:0.5s;
      opacity:0;
      transform:translateY(60px);
    }

    .director-box.show{
      opacity:1;
      transform:translateY(0);
      transition:1s ease;
    }

    .director-box:hover{
      transform:translateY(-10px);
      box-shadow:0 25px 70px rgba(0,0,0,0.12);
    }

    /* Decorative Shape */

    .director-box::before{
      content:'';
      position:absolute;
      width:250px;
      height:250px;
      background:linear-gradient(45deg,#f58220,#ff0080);
      border-radius:50%;
      top:-120px;
      right:-120px;
      opacity:0.08;
    }

    /* Quote Icon */

    .quote-icon{
      width:90px;
      height:90px;
      border-radius:25px;
      background:linear-gradient(45deg, #000000, #791145);
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:40px;
      margin-bottom:30px;
      animation:floatIcon 3s ease-in-out infinite;
      box-shadow:0 15px 35px rgba(245,130,32,0.3);
    }

    @keyframes floatIcon{

      0%{
        transform:translateY(0);
      }

      50%{
        transform:translateY(-12px);
      }

      100%{
        transform:translateY(0);
      }

    }

    /* Content */

    .director-content h3{
      font-size:35px;
      font-weight:700;
      color:#111827;
      margin-bottom:20px;
    }

    .director-content p{
      font-size:18px;
      line-height:2;
      color:#666;
      margin-bottom:30px;
    }

    /* Director Info */

    .director-img img{
      width:100%;
      height:100%;
      object-fit:cover;
      border-top-right-radius: 10px;
      border-top-left-radius: 10px;
    }

    .director-text h4{
      font-size:24px;
      font-weight:700;
      color:#111827;
      margin-bottom:5px;
    }

    .director-text span{
      color:#CB0F9C;
      font-weight:600;
    }

    /* Button */

    .director-btn{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:15px 35px;
      border-radius:50px;
      background:linear-gradient(45deg, #000000, #791145);
      color:#fff;
      text-decoration:none;
      font-weight:600;
      transition:0.4s;
      margin-top:30px;
    }

    .director-btn:hover{
      color:#fff;
      transform:translateY(-5px);
      box-shadow:0 15px 30px rgba(245,130,32,0.3);
    }

    /* =========================
       RESPONSIVE
    ========================== */

    @media(max-width:991px){

      .section-title h2{
        font-size:48px;
      }

      .director-box{
        padding:40px;
      }

      .director-content h3{
        font-size:34px;
      }

    }

    @media(max-width:767px){

      .section-title h2{
        font-size:36px;
      }

      .director-box{
        padding:30px 25px;
      }

      .director-content h3{
        font-size:28px;
      }

      .director-content p{
        font-size:16px;
      }

      .director-info{
        flex-direction:column;
        text-align:center;
      }

    }



    /* =========================
       BREADCRUMB SECTION
    ========================== */

    .breadcrumb-section{
      position:relative;
      background:#f5f7fb;
      padding:140px 0 120px;
      overflow:hidden;
      background:
      linear-gradient(
      135deg,
      #111827 0%,
      #1f2937 50%,
      #111827 100%);
    }

    /* Animated Glow */

    .breadcrumb-section::before{
      content:'';
      position:absolute;
      width:450px;
      height:450px;
      background:rgba(255,0,128,0.15);
      border-radius:50%;
      top:-150px;
      left:-150px;
      filter:blur(120px);
      animation:moveGlow 7s infinite alternate;
    }

    .breadcrumb-section::after{
      content:'';
      position:absolute;
      width:450px;
      height:450px;
      background:rgba(255,136,0,0.15);
      border-radius:50%;
      bottom:-180px;
      right:-150px;
      filter:blur(120px);
      animation:moveGlow2 7s infinite alternate;
    }

    @keyframes moveGlow{

      100%{
        transform:translateY(50px);
      }

    }

    @keyframes moveGlow2{

      100%{
        transform:translateX(-50px);
      }

    }

    /* Floating Shapes */

    .shape{
      position:absolute;
      border-radius:50%;
      animation:floatShape 6s infinite ease-in-out;
      opacity:0.15;
    }

    .shape1{
      width:80px;
      height:80px;
      background:#ff0080;
      top:20%;
      left:10%;
    }

    .shape2{
      width:60px;
      height:60px;
      background:#ff8800;
      top:70%;
      left:20%;
      animation-delay:2s;
    }

    .shape3{
      width:90px;
      height:90px;
      background:#00bfff;
      top:25%;
      right:15%;
      animation-delay:1s;
    }

    .shape4{
      width:50px;
      height:50px;
      background:#7928ca;
      bottom:15%;
      right:10%;
      animation-delay:3s;
    }

    @keyframes floatShape{

      0%{
        transform:translateY(0);
      }

      50%{
        transform:translateY(-25px);
      }

      100%{
        transform:translateY(0);
      }

    }

    /* =========================
       CONTENT
    ========================== */

    .breadcrumb-content{
      position:relative;
      z-index:2;
      text-align:center;
      color:#fff;
    }

    .breadcrumb-content h1{
      font-size:72px;
      font-weight:800;
      margin-bottom:25px;
      line-height:1.2;
      animation:fadeDown 1s ease;
    }

    .breadcrumb-content h1 span{
      color:#E3088F;
      position:relative;
    }

    .breadcrumb-content h1 span::after{
      content:'';
      position:absolute;
      left:0;
      bottom:-8px;
      width:100%;
      height:5px;
      border-radius:10px;
      background:#ff8800;
      animation:lineWidth 2s infinite alternate;
    }

    @keyframes lineWidth{

      0%{
        width:40%;
      }

      100%{
        width:100%;
      }

    }

    @keyframes fadeDown{

      from{
        opacity:0;
        transform:translateY(-60px);
      }

      to{
        opacity:1;
        transform:translateY(0);
      }

    }

    /* =========================
       BREADCRUMB
    ========================== */

    .custom-breadcrumb{
      display:inline-flex;
      align-items:center;
      gap:15px;
      padding:18px 35px;
      border-radius:60px;
      background:rgba(255,255,255,0.08);
      backdrop-filter:blur(10px);
      border:1px solid rgba(255,255,255,0.12);
      animation:fadeUp 1.2s ease;
    }

    @keyframes fadeUp{

      from{
        opacity:0;
        transform:translateY(60px);
      }

      to{
        opacity:1;
        transform:translateY(0);
      }

    }

    .custom-breadcrumb a{
      color:#fff;
      text-decoration:none;
      font-weight:500;
      transition:0.4s;
      position:relative;
    }

    .custom-breadcrumb a:hover{
      color:#ff8800;
    }

    .custom-breadcrumb i{
      color:#ff8800;
      font-size:14px;
    }

    .custom-breadcrumb span{
      color:#ff8800;
      font-weight:600;
    }

    /* =========================
       BUTTON
    ========================== */

    .breadcrumb-btn{
      display:inline-flex;
      align-items:center;
      gap:10px;
      margin-top:35px;
      padding:15px 35px;
      border-radius:50px;
      background:linear-gradient(45deg,#ff8800,#ff0080);
      color:#fff;
      text-decoration:none;
      font-weight:600;
      transition:0.4s;
      animation:fadeUp 1.5s ease;
    }

    .breadcrumb-btn:hover{
      color:#fff;
      transform:translateY(-5px);
      box-shadow:0 15px 35px rgba(255,136,0,0.35);
    }

    /* =========================
       RESPONSIVE
    ========================== */

    @media(max-width:991px){

      .breadcrumb-content h1{
        font-size:52px;
      }

    }

    @media(max-width:767px){

      .breadcrumb-section{
        padding:110px 0 90px;
      }

      .breadcrumb-content h1{
        font-size:38px;
      }

      .custom-breadcrumb{
        padding:14px 22px;
        gap:10px;
        flex-wrap:wrap;
      }

    }


    .counter-section{
          width: 100%;
    position: relative;
    background: linear-gradient(135deg, #0f172a, #111827, #1e293b);
    color: #fff;
    overflow: hidden;
    padding: 3rem 0rem;
    }

    /* Background Glow */

    .counter-section::before{
      content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 0, 150, 0.2);
    border-radius: 50%;
    top: -200px;
    left: -100px;
    filter: blur(120px);
    animation: moveGlow 8s infinite alternate;
    }

    .counter-section::after{
         content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(0, 150, 255, 0.2);
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
    filter: blur(120px);
    animation: moveGlow2 8s infinite alternate;
    }

    @keyframes moveGlow{

      100%{
        transform:translateY(40px);
      }

    }

    @keyframes moveGlow2{

      100%{
        transform:translateX(-40px);
      }

    }

       /* =========================
       COUNTER CARD
    ========================== */

    .counter-card{
      position:relative;
      background:#fff;
      border-radius:30px;
      padding:50px 30px;
      text-align:center;
      overflow:hidden;
      transition:0.5s;
      z-index:2;
      border:1px solid #eee;
      box-shadow:0 15px 40px rgba(0,0,0,0.05);
      opacity:0;
      transform:translateY(60px);
    }

    .counter-card.show{
      opacity:1;
      transform:translateY(0);
      transition:0.8s ease;
    }

    .counter-card:hover{
      transform:translateY(-12px);
      box-shadow:0 20px 60px rgba(0,0,0,0.08);
    }

    /* Top Gradient Border */

    .counter-card::before{
      content:'';
      position:absolute;
      top:0;
      left:0;
      width:100%;
      height:6px;
      background:linear-gradient(45deg,#ff8800,#ff0080);
    }

    /* ICON */

    .counter-icon{
      width:80px;
      height:80px;
      border-radius:30px;
      margin:auto;
      margin-bottom:5px;
      background:linear-gradient(45deg,#ff0080,#7928ca);
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:42px;
      box-shadow:0 15px 35px rgba(255,136,0,0.25);
      animation:floatIcon 4s ease-in-out infinite;
    }

    @keyframes floatIcon{

      0%{
        transform:translateY(0);
      }

      50%{
        transform:translateY(-12px);
      }

      100%{
        transform:translateY(0);
      }

    }

    /* COUNTER */

    .counter-number{
      font-size:40px;
      font-weight:800;
      color:#111827;
      
    }

    .counter-number span{
      color:#ff8800;
    }

    .counter-title{
      font-size:22px;
      font-weight:600;
      color:#555;
    }

    /* Hover Glow */

    .counter-card::after{
      content:'';
      position:absolute;
      width:200px;
      height:200px;
      background:rgba(255,136,0,0.08);
      border-radius:50%;
      top:-80px;
      right:-80px;
      transition:0.5s;
    }

    .counter-card:hover::after{
      transform:scale(1.2);
    }

    .whatsapp_main {
    position: fixed;
    bottom: 20px;
    left: 20px;
    text-align: center;
    z-index: 10;
  }


