:root {
    --theme-color: #0d5ef4;
    --theme-color2: #f20f10;
    --title-color: #0f2239;
    --body-color: #4d5765;
    --smoke-color: #f3f7fb;
    --black-color: #000;
    --white-color: #fff;
    --light-color: #72849b;
    --yellow-color: #ffb539;
    --success-color: #28a745;
    --error-color: #dc3545;
    --border-color: #ecf1f9;
    --title-font: 'Jost', sans-serif;
    --body-font: 'Roboto', sans-serif;
    --icon-font: "Font Awesome 5 Free";
    --main-container: 1380px;
    --container-gutters: 24px;
    --section-space: 70px;
    --section-space-mobile: 50px;
    --section-title-space: 30px;
    --ripple-ani-duration: 5s;
    --ripple-ani-duration: 5s;
    --font-large: 40px;
}
.gradient-btn {
    position: relative;
    padding: 12px 30px;
    border: none;
    background: transparent;
    color: #000;
    font-weight: 500;
    border-radius: 999px;
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
}
.gradient-btn::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(to right, #a3dd64, #155d9d, #a3dd64, #3f2a6c, #1261a1, #a3dd64, #155d9d);
    border-radius: inherit;
    z-index: -2;
}
.gradient-btn::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: white;
    border-radius: inherit;
    z-index: -1;
    transition: background 0.4s ease;
}
.gradient-btn:hover::after {
    background: conic-gradient(from 90deg at 50% 50%, #a3dd64 -43.35deg, #155d9d 52.25deg, #a3dd64 143.17deg, #3f2a6c 223.38deg, #1261a1 266.07deg, #a3dd64 316.65deg, #155d9d 412.25deg);
    color: #fff;
}
.primay-btn {
    position: relative;
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    color: #000;
    background: transparent;
    border-radius: 50px;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease;
    background-color: #fff;
}
.primay-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
   /* border thickness */
    background: conic-gradient(from 90deg at 50% 50%, #a3dd64 -43.35deg, #155d9d 52.25deg, #a3dd64 143.17deg, #3f2a6c 223.38deg, #1261a1 266.07deg, #a3dd64 316.65deg, #155d9d 412.25deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
    transition: all 0.4s ease;
}
.primay-btn:hover {
    color: #fff;
    background: conic-gradient(from 90deg at 50% 50%, #a3dd64 -43.35deg, #155d9d 52.25deg, #a3dd64 143.17deg, #3f2a6c 223.38deg, #1261a1 266.07deg, #a3dd64 316.65deg, #155d9d 412.25deg);
}
.primay-btn:hover::before {
    -webkit-mask: none;
    mask: none;
    padding: 0;
}
.secondary-btn {
    position: relative;
    display: inline-block;
    padding: 12px 20px 10px 20px;
    font-weight: 500;
    color: #000000;
    background: transparent;
    border-radius: 50px;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    font-size: 16px !important;
    text-align: center;
    transition: all 0.4s ease;
}

/* Gradient border */
.secondary-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px; /* fixed thickness */
    background: linear-gradient(137.02deg, #EEFF00 1.7%, #1C84A3 86.13%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
    transition: all 0.4s ease;
    box-sizing: border-box; /* prevents jerk */
}

/* Hover state */
.secondary-btn:hover {
    color: #fff;
    background: linear-gradient(137.02deg, #EEFF00 1.7%, #1C84A3 86.13%);
}

/* Make gradient border fade smoothly instead of resizing */
.secondary-btn:hover::before {
    opacity: 0;
}

a.btn-one {
    color: #ff675e;
    text-decoration: none;
    transition: color 0.4s ease, background-color 0.4s ease, transform 0.4s ease;
}
a.btn-one i {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.4s ease;
    transform: rotate(45deg);
}
/* Hover effects */
a.btn-one:hover {
    color: #000;
}
a.btn-one:hover i {
    transform: rotate(90deg);
}
a.btn-two {
    color: #9b24f6;
    text-decoration: none;
    transition: color 0.4s ease, background-color 0.4s ease, transform 0.4s ease;
}
a.btn-two i {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.4s ease;
    transform: rotate(45deg);
}
/* Hover effects */
a.btn-two:hover {
    color: #000;
}
a.btn-two:hover i {
    transform: rotate(90deg);
}
.home-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    background: transparent;
    border: none;
        width: 250px;

    z-index: 1;
    animation: pulse 1.5s infinite ease-in-out; /* 👈 animation */
}

/* Pulse animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}


/* Gradient border */
.home-button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px; /* border thickness */
    background: #000;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    z-index: -1;
}

/* Gradient text */
.home-button span {
 color: #000000;
}

/* Hover effect */
.home-button:hover {
    transform: scale(1.05);
}
.super-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(145deg, #0f0f0f, #1c1c1c);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    color: #000000 !important;
    letter-spacing: 0.5px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    z-index: 1;
}
.super-button::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, #A3DD64, #155D9D, #00ffff);
    animation: rotate 4s linear infinite;
    z-index: -2;
}
.super-button::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: #ffffff;
    border-radius: inherit;
    z-index: -1;
}
.super-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
}
.super-button:hover .arrow {
    transform: translateX(6px);
}
.super-button.white-super-button{
    position: relative;
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(145deg, #0f0f0f, #1c1c1c);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    color: #000000 !important;
    letter-spacing: 0.5px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    z-index: 1;
}
.super-button.white-super-button::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, #A3DD64, #155D9D, #00ffff);
    animation: rotate 4s linear infinite;
    z-index: -2;
}
.super-button.white-super-button::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: #ffffff;
    border-radius: inherit;
    z-index: -1;
}
.super-button.white-super-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
}
.super-button.white-super-button:hover .arrow {
    transform: translateX(6px);
}
.arrow {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease-in-out;
    color: #00ffff;
}
.super-button .arrow-icon {
    display: inline-block;
    margin-left: 10px;
    position: relative;
    animation: moveArrow 1.5s infinite;
}
@keyframes moveArrow {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
    /* Move down */
    100% {
        transform: translateY(0);
    }
    /* Move back to top */
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@media (max-width: 768px) {
    .secondary-btn {
        padding: 13px 10px 10px 10px;
        font-size: 9px;
        border-radius: 50px;
   }
    .primay-btn {
        padding: 10px 10px;
        font-size: 9px;
        border-radius: 50px;
   }
}
.location-sec a:visited {
    background-color: transparent;
   color: #000;
    text-decoration: none;
    border-bottom: none;
}