/*-------------------- CSS --------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --prime_color: #00894d;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(120deg, #ca96f6, #00a67f);
}

.container {
    width: 300px;
    height: 500px;
    perspective: 1000px;
}

.card {
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(135deg, #2f3d7e, #000);
    /* background: linear-gradient(135deg, #000000, #ffffff); */
    transition: 0.5s ease-in-out;
    transform-style: preserve-3d;
    box-shadow:
        #05471100 40px 50px 25px,
        #02140033 0px 25px 25px;
}

.glass {
    transform-style: preserve-3d;
    position: absolute;
    inset: 8px;
    background: linear-gradient(#ffffff59, #ffffffd0);
    border-radius: 55px;
    border-top-right-radius: 100%;
    border-left: 1px solid white;
    border-bottom: 1px solid white;
    transition: 0.5s ease-in-out;

    transform: translate3d(0, 0, 25px);
}

.logo {
    position: absolute;
    right: 0;
    top: 0;
    transform-style: preserve-3d;
}

.logo .circle {
    position: absolute;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #ffffff59;
    top: 0;
    right: 0;
    box-shadow: #64646f33 -10px 10px 20px;
    transition: 0.5s ease-in-out;
    backdrop-filter: blur(5px);
}

.logo .circle1 {
    width: 170px;
    transform: translate3d(0, 0, 20px);
    top: 8px;
    right: 8px;
    transition-delay: 0.0s;
}

.logo .circle2 {
    width: 140px;
    transform: translate3d(0, 0, 40px);
    top: 10px;
    right: 10px;
    transition-delay: 0.4s;
}

.logo .circle3 {
    width: 110px;
    transform: translate3d(0, 0, 60px);
    top: 17px;
    right: 17px;
    transition-delay: 0.8s;
}

.logo .circle4 {
    width: 80px;
    transform: translate3d(0, 0, 80px);
    top: 23px;
    right: 23px;
    transition-delay: 1.2s;
}

.logo .circle5 {
    width: 50px;
    transform: translate3d(0, 0, 100px);
    top: 30px;
    right: 30px;
    transition-delay: 1.6s;

    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--prime_color);
}

.content {
    padding: 130px 60px 0 30px;
}

.content h1 {
    /* color: var(--prime_color); */
    color: #000;
    font-weight: 900;
    font-size: 20px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.content p {
    margin-top: 10px;
    /* color: #00a15d; */
    color: #4a4a4a;
    font-size: 15px;
}

/* call us button*/
.call{
    transform-style: preserve-3d;
    position: absolute;
    bottom: 60px;
    left: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.call .callnow {
    transform-style: preserve-3d;
    display: flex;
}

.call .callnow .social_icons {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #fff;
    /* color: var(--prime_color); */
    color: #3e88fb;
        display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: #05471180 7px 7px 5px;
    transition: 0.5s;
}

.callnow .social .social_icons:nth-child(1) {
    transition: 0.2s ease-in-out 0.2s;
}

  .button-call {
    background-color: #3e88fb; /* blue */
    border: none;
    color: white;
    padding: 5px 2px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 10px;
    margin: 2px 1px;
    /* margin: 4px 4px; */
    cursor: pointer;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
  }
  

/*call us now end*/

.footer {
    transform-style: preserve-3d;
    position: absolute;
    bottom: 20px;
    left: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer .link {
    transition: 0.2s ease-in-out;
    font-size: 14px;
    color: #000000;
    cursor: pointer;
}

.footer .link:hover {
    transform: translate3d(0, 0, 10px);
    color: var(--prime_color);
}

.footer .social {
    transform-style: preserve-3d;
    display: flex;
    gap: 10px;
}

.footer .social .social_icons {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #fff;
    /* color: var(--prime_color); */
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: #05471180 7px 7px 5px;
    transition: 0.5s;
}

.footer .social .social_icons:nth-child(1) {
    transition: 0.2s ease-in-out 0.2s;
}

.footer .social .social_icons:nth-child(2) {
    transition: 0.2s ease-in-out 0.4s;
}

.footer .social .social_icons:nth-child(3) {
    transition: 0.2s ease-in-out 0.6s;
}


/*Hover Effect*/

.container:hover .card {
    transform: rotate3d(1, 1, 0, 30deg);
    box-shadow:
        #0547110d 30px 50px 25px,
        #05471111 0px 25px 30px;
}

.container:hover .card .footer .social .social_icons {
    transform: translate3d(0, 0, 50px);
    box-shadow: #05471133 -5px 20px 10px;
}

.container:hover .card .logo .circle2 {
    transform: translate3d(0, 0, 60px);
}

.container:hover .card .logo .circle3 {
    transform: translate3d(0, 0, 80px);
}

.container:hover .card .logo .circle4 {
    transform: translate3d(0, 0, 100px);
}

.container:hover .card .logo .circle5 {
    transform: translate3d(0, 0, 120px);
}

.buttonold {
    background-color: #970d0d; /* red */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
  }
  
  .button1old {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  }

  .button {
    background-color: #ad1313; /* Green */
    border: none;
    color: white;
    padding: 5px 2px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 10px;
    margin: 2px 1px;
    /* margin: 4px 4px; */
    cursor: pointer;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
  }
  
  .button1 {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  }
  