/* LOADER START HERE */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    z-index: 9999;
    pointer-events: none;
}

.loader-column {
    flex: 1;
    background: #ffffff;
    transform: translateY(0);
    transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.loader-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    font-size: 2rem;
    font-weight: bold;
    color: white;
    z-index: 10000;
    opacity: 1;
    transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.remove-loader {
    display: none !important;
}

.loader.remove .column:nth-child(1) {
    transform: translateY(-100%);
    transition-delay: 0s;
}

.loader.remove .loader-column:nth-child(2) {
    transform: translateY(-100%);
    transition-delay: 0.2s;
}

.loader.remove .loader-column:nth-child(3) {
    transform: translateY(-100%);
    transition-delay: 0.4s;
}

.loader.remove .loader-column:nth-child(4) {
    transform: translateY(-100%);
    transition-delay: 0.6s;
}

.loader.remove .loader-column:nth-child(5) {
    transform: translateY(-100%);
    transition-delay: 0.8s;
}

.logo-ring {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 0 12px rgba(255, 255, 255, 0.15),
        0 0 25px rgba(255, 255, 255, 0.1),
        inset 0 0 10px rgba(255, 255, 255, 0.04);
    animation: pulseWhiteRing 2.5s infinite ease-in-out;
}

.logo-ring img {
    max-width: 100px;
}

@keyframes pulseWhiteRing {

    0%,
    100% {
        box-shadow:
            0 0 12px rgba(31, 30, 30, 0.349),
            0 0 25px rgba(27, 27, 27, 0.288),
            inset 0 0 10px rgba(10, 10, 10, 0.199);
    }

    50% {
        box-shadow:
            0 0 18px rgb(255, 255, 255),
            0 0 30px rgba(255, 255, 255, 0.15),
            inset 0 0 12px rgba(255, 255, 255, 0.07);
    }
}

.loading-text {
    position: absolute;
    top: calc(100% + 50px);
    left: 55%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.918);
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0;
    animation: fadeInText 1s ease forwards 0.5s, blink 1.5s infinite;
    text-align: center;
}


@keyframes fadeInText {
    to {
        opacity: 1;
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}


/* LOADER END HERE */


* {
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    max-width: 100%;
    background-color: #f5f2f2 !important;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

li {
    list-style-type: none !important;
}

a {
    text-decoration: none !important;
    font-size: 16px !important;
    color: #000000 !important;
    font-family: "Poppins", sans-serif !important;
}

p {
    font-family: "Poppins", sans-serif !important;
    font-size: 16px;
    color: #222222a6 !important;
    font-weight: 300 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif !important;
    color: #222222 !important;
}

/* BUTTON START */

.frutiger-button {
    cursor: pointer;
    position: relative;
    padding: 0 2px;
    border-radius: 20px;
    border: 0;
    text-shadow: 1px 1px #000a;
    background: linear-gradient(#000000, #494949);
    box-shadow: 0px 4px 6px 0px #0008;
    transition: 0.3s all;
}

.frutiger-button:hover {
    box-shadow: 0px 6px 12px 0px #0009;
}

.frutiger-button:active {
    box-shadow: 0px 0px 0px 0px #0000;
}

.b-inner {
    position: relative;
    inset: 0px;
    padding: 1em;
    border-radius: 20px;
    background: radial-gradient(circle at 50% 100%, #4a4b4b 10%, #30f8f800 55%),
        linear-gradient(#000000, #19191a);
    overflow: hidden;
    transition: inherit;
}

.b-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-65deg, #0000 40%, #fff7 50%, #0000 70%);
    background-size: 200% 100%;
    background-repeat: no-repeat;
    animation: thing 3s ease infinite;
}

@keyframes thing {
    0% {
        background-position: 130%;
        opacity: 1;
    }

    to {
        background-position: -166%;
        opacity: 0;
    }
}

.b-top-white {
    position: absolute;
    border-radius: inherit;
    inset: 0 -8em;
    background: radial-gradient(circle at 50% -270%,
            #fff 45%,
            #fff6 60%,
            #fff0 60%);
    transition: inherit;
}

.b-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    transition: inherit;
    box-shadow: inset 0px 2px 8px -2px #0000;
}

.frutiger-button:active .b-inner::after {
    box-shadow: inset 0px 2px 8px -2px #000a;
}

.b-text {
    position: relative;
    z-index: 1;
    color: white;
    font-weight: 550;
    transition: inherit;
}

/* BUTTON END */

.sp {
    padding-top: 70px;
    padding-bottom: 70px;
}

/* SMALL CARD START HERE */

.setion-small-card {
    outline: none;
    color: #837c7c;
    padding: 10px 0;
    width: fit-content;
    margin: auto;
    display: flex;
    gap: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 15px;
    background-color: #dfdede;
    box-shadow: 0 0 0 4px #dfdede, 2px 2px 4px 2px rgba(0, 0, 0, 0.5);
    transition: .1s ease-in-out, .4s color;
}

.setion-small-card i {
    font-size: 16px;
}

.setion-small-card h4 {
    font-size: 16px !important;
    margin-bottom: 0 !important;
}

.setion-small-card:active {
    transform: translateX(0.1em) translateY(0.1em);
    box-shadow: 0 0 0 4px #EADDCA, 1.5px 1.5px 2.5px 1.5px rgba(0, 0, 0, 0.5);
}

/* SMALL CARD END HERE */

/* ARROW BUTTON START HERE */

.scroll-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgb(20, 20, 20);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    opacity: 0;
    pointer-events: none;
    z-index: 10000000;
    text-decoration: none;
    transition: opacity 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}

.scroll-btn svg {
    width: 12px;
}

.scroll-btn svg path {
    fill: white;
}

.scroll-btn:hover {
    width: 140px;
    border-radius: 50px;
    background-color: rgb(33, 33, 34);
}

.scroll-btn:hover svg {
    transform: translateY(-200%);
    transition: transform 0.3s ease;
}

.scroll-btn::before {
    position: absolute;
    bottom: -20px;
    content: "Back to Top";
    color: white;
    font-size: 0px;
}

.scroll-btn:hover::before {
    font-size: 13px;
    bottom: unset;
}

/* ARROW BUTTON END HERE */

@keyframes customFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation-name: customFadeIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

.delay-4 {
    animation-delay: 1.2s;
}



/* Fullscreen dark overlay */
.modal {
  display: none;
  position: fixed;
  inset: 0; /* top:0, right:0, bottom:0, left:0 */
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center;     /* vertical center */
  z-index: 9999;
  left: 50%;
  top: 50%;
}


/* Modal box */
.modal-content {
  background: #111; /* deep black */
  color: #fff;
  border-radius: 18px;
  padding: 40px 30px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 0.35s ease;
}

/* Title with golden touch */
.modal-title {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #fff;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 6px;
}

/* Button container */
.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Base button */
.btn {
  padding: 14px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Call Button */
.call-btn {
  background: #fff;
  color: #111;
  font-weight: 600;
}
.call-btn:hover {
  background: #d4af37; /* gold hover */
  color: #111;
  transform: translateY(-3px);
}

/* WhatsApp Button */
.whatsapp-btn {
  background: #d4af37; /* gold */
  color: #111;
  font-weight: 600;
}
.whatsapp-btn:hover {
  background: #fff;
  color: #111;
  transform: translateY(-3px);
}

/* Cancel Button */
.cancel-btn {
  background: transparent;
  color: #aaa;
  border: 1px solid #444;
}
.cancel-btn:hover {
  color: #fff;
  border-color: #d4af37;
  transform: translateY(-3px);
}

/* Smooth fade-in animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.call-btn i {
  color: #111;
}

.whatsapp-btn i {
  color: #25D366; /* official WhatsApp green */
}

.cancel-btn i {
  color: #d9534f;
}
