/* ========== Google Fonts ========== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700;800&display=swap');

:root {
    --gold: #d4af37;
    --gold-light: #f7e278;
    --dark: #1a1a2e;
    --dark-light: #16213e;
    --accent: #e94560;
    --text: #333;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: #fafafa;
    overflow-x: hidden;
}

h1 {
    font-family: 'Playfair Display', serif;
}

.text-gold {
    color: var(--gold);
}

/* ========== Pulse Effect ========== */
.pulse-text {
  display: inline-block;
  font-weight: bold;
  animation: glowPulse 12s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes glowPulse {
  0%, 100% {
    transform: scale(1);
    text-shadow: 0 0 5px rgba(255, 121, 25, 0.859);
  }

  50% {
    transform: scale(1.1);
    text-shadow:
      0 0 10px rgba(191, 255, 0, 0.955),
      0 0 20px rgba(0, 255, 8, 0),
      0 0 30px rgba(255, 217, 0, 0.696);
  }
}

/* ========== Desktop Nav Links – Hover Underline ========== */
.desktop-link {
    position: relative;
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    margin: 0 8px;
    padding-bottom: 4px;
    transition: color 0.3s;
}
.desktop-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.desktop-link:hover {
    color: var(--gold-light) !important;
}
.desktop-link:hover::after {
    width: 100%;
}
/* Active page link – persistent underline & gold text */
.desktop-link.active,
.desktop-link.active:hover {
    color: var(--gold-light) !important;
}
.desktop-link.active::after {
    width: 100%;
}

/* ========== Offcanvas (Mobile Menu) ========== */
.offcanvas {
    background: var(--dark);
    color: white;
}
.offcanvas .offcanvas-link {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: background 0.3s;
}
.offcanvas .offcanvas-link:hover,
.offcanvas .offcanvas-link.active {
    background: rgba(255,255,255,0.1);
    color: var(--gold-light);
}
.offcanvas .social-icons a {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    transition: color 0.3s;
}
.offcanvas .social-icons a:hover {
    background: #ffb703;
    color: #111827;
    transform: translateY(-3px);
}
.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Offcanvas active link */
.offcanvas-link.active {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold) !important;
    font-weight: 600;
}


/* Mobile hero text size fix */
@media (max-width: 576px) {
    .hero {
        background-attachment: scroll !important;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .navbar .btn-call {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* ========== Header / Navbar ========== */
/* ========== Navbar (default: solid dark for all pages) ========== */
.navbar {
    background: #1a1a2e;              /* solid dark by default */
    transition: background 0.3s ease, box-shadow 0.3s ease;
    padding: 0.8rem 0;
    z-index: 1000;
}

/* Homepage: make transparent only when NOT scrolled */
body.transparent-navbar .navbar:not(.scrolled) {
    background: transparent;
    box-shadow: none;
}

/* When scrolled (any page) – fully opaque dark */
.navbar.scrolled,
body.transparent-navbar .navbar.scrolled {
    background: #1a1a2e !important;   /* solid, no transparency */
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    background: linear-gradient(45deg, #f6d365, #fda085);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    margin: 0 5px;
    position: relative;
}
.nav-link:hover {
    color: var(--gold-light) !important;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background: var(--gold);
    transition: width 0.3s;
}
.nav-link:hover::after {
    width: 100%;
}
.btn-call {
    background: var(--gold);
    border: none;
    color: #000;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
    transition: var(--transition);
}
.btn-call:hover {
    background: var(--gold-light);
    transform: scale(1.05);
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* ========== Preloader ========== */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s;
}
#preloader.hide {
    opacity: 0;
    visibility: hidden;
}
.loader-content {
    text-align: center;
    color: white;
}
.loader-text {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, #f6d365, #fda085);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 15px;
    animation: fadeInDown 1s ease;
}
.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 0.8s linear infinite;
}
@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========== Form Submission Overlay ========== */
.form-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-loading-overlay .spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3rem;
}

.processing-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e6b800;
    letter-spacing: 1px;
}

/* ========== Hero Section ========== */
.hero {
    min-height: 100vh;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #f6d365, #fff, #f6d365);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero .stat-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    padding: 8px 20px;
    margin: 5px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}
.hero .stat-badge i {
    margin-right: 8px;
    color: var(--gold);
}

/* ========== Section Titles ========== */
.section-title {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--dark), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ========== Cards ========== */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
    background: white;
    position: relative;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.15);
}
.card-img-top {
    transition: transform 0.6s;
}
.card:hover .card-img-top {
    transform: scale(1.05);
}
.card .price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.btn-gold {
    background: var(--gold);
    border: none;
    color: #000;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    transition: var(--transition);
}
.btn-gold:hover {
    background: var(--gold-light);
    color: #000;
}
.btn-outline-warning {
    border: 2px solid brown;
    color: brown;
    background: transparent;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-outline-warning:hover {
    background: brown;
    color: #fdf9f9;
    border-color: var(--gold);
}

/* Premium Stats Section */
.stats-section {
    background: linear-gradient(180deg, #ffffff, #f8f9fa);
}

.stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all .35s ease;
    border: 1px solid rgba(212,175,55,.15);
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f7d774);
}

.stat-card:hover {
    box-shadow: 0 5px 30px 0.5rem rgba(88, 130, 249, 0.793);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #d4af37, #f7d774);
    color: #fff;
    font-size: 2rem;

    box-shadow: 0 10px 25px rgba(212,175,55,.35);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #16213e;
    margin-bottom: .5rem;
    line-height: 1;
}

.stat-number::after {
    content: "+";
    color: #d4af37;
}

.stat-label {
    color: #6c757d;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 0;
}

/* ========== Testimonials ========== */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-size: 5rem;
    color: var(--gold);
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: serif;
    opacity: 0.3;
}


/* ========== Form Styling ========== */
form input, form select, form textarea {
    border-radius: 10px !important;
    border: 1px solid #ddd !important;
    padding: 0.6rem 1rem !important;
    transition: border-color 0.3s;
}
form input:focus, form select:focus, form textarea:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25) !important;
}

/* ========== Animations ========== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======= FOOTER ======= */ 
.footer{ 
    position:relative; 
    background:var(--dark); 
    color:#ccc; overflow:hidden;
    border-top:1px solid var(--gold); 
} 

.footer>.container{ 
    position:relative; 
    z-index:2; 
} 

.footer p{ 
    line-height:1.8; 
} 

.footer a{ 
    color:#bdbdbd; 
    text-decoration:none; 
    transition:var(--transition); 
} 

.footer a:hover{ 
    color:var(--gold-light); 
}

/* ======= SOCIAL ICONS ======= */
.social-icons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.social-icons a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    transition:var(--transition);
}

.social-icons a.facebook:hover{
    background:#1877F2;
    color:#fff;
    transform:translateY(-3px);
}

.social-icons a.instagram:hover{
    background:linear-gradient(45deg,#F9CE34,#EE2A7B,#6228D7);
    color:#fff;
    transform:translateY(-3px);
}

.social-icons a.whatsapp:hover{
    background:#25D366;
    color:#fff;
    transform:translateY(-3px);
}

.social-icons a.twitter:hover{
    background:#fff;
    color:#111;
    transform:translateY(-3px);
}

/* ======== QUICK LINKS ========= */
.footer-links{
    padding-left:0;
}

.footer-links li{
    list-style:none;
    margin-bottom:12px;
}

.footer-links li a{
    display:flex;
    align-items:center;
}

.footer-links li a::before{
    content:"›";
    color:var(--gold);
    margin-right:8px;
    font-size:18px;
}

.footer-links li a:hover{
    padding-left:6px;
}

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

.contact-info p{
    margin-bottom:15px;
}

.contact-info p i{
    color:var(--gold);
}

.contact-number-item{
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.contact-number-item a{
    color:#ccc;
}

.contact-number-item a:hover {
    color: #ffb703;
}

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

.footer .input-group {
    display: flex;
    flex-wrap: nowrap;
    border:1px solid #ced4da;
    border-radius:30px;
    overflow:hidden;
}

.footer .input-group-text {
    border: none !important;
    border-radius: 30px 0 0 30px;
    background: #fff;
    padding: 12px 18px;
    font-size: 16px;
}

.footer .form-control {
    flex:1;
    border: none !important;
    border-radius: 0;
    padding: 12px 15px;
    box-shadow: none;
}

.footer .form-control:focus {
    box-shadow: none;
}

.footer .btn-subscribe {
    border: none !important;
    border-radius: 0 30px 30px 0;
    background: var(--gold);
    color: #000;
    font-weight: 600;
    padding: 0 20px;
    transition: var(--transition);
}

.footer .btn-subscribe:hover {
    background: var(--gold-light);
}

/* ======== COPYRIGHT ========= */

.footer-bottom{
    padding-top:10px;
}

.footer-bottom a{
    margin-left:10px;
}

.copyright-text{
    color:#bbb;
}

/* ========== Mobile Footer Fixes ========== */
@media (max-width: 768px) {

    .footer {
        text-align: center;
        padding-top: 3rem !important;
    }

    /* Better spacing between sections */
    .footer .row > [class*="col-"] {
        margin-bottom: 2rem;
        padding-bottom: 1.8rem;
        border-bottom: 1px solid rgba(255,255,255,0.10);
    }

    .footer .row > [class*="col-"]:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    /* Headings */
    .footer h4,
    .footer h5 {
        text-align: center;
    }

    .line-animate {
        display: inline-block;
    }

    /* About text */
    .footer p {
        font-size: 14px;
        line-height: 1.8;
    }

    /* Social Icons */
    .social-icons {
        justify-content: center;
        gap: 15px;
        margin-top: 1rem;
    }

    .social-icons a {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    /* Quick Links */
    .footer-links {
        margin: 0;
        padding: 0;
    }

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

    .footer-links li a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
    }

    /* Contact Section */
    .contact-info p {
        margin-bottom: 14px;
    }

    .contact-number-item {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 8px;
    }

   /* Support Form */

    .footer .input-group {
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
        border:1px solid #ced4da;
        border-radius:30px;
        overflow:hidden;
    }

    .footer .input-group-text {
        border:none !important;
        border-radius: 30px 0 0 30px;
        padding: 12px 15px;
        white-space: nowrap;
    }

    .footer .form-control {
        flex:1;
        border:none !important;
        border-radius: 0;
        padding: 12px;
        font-size: 15px;
    }

    .footer .btn-subscribe {
        border:none !important;
        border-radius: 0 30px 30px 0;
        padding: 12px 18px;
    }
    
    /* Copyright */
    .footer hr {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .copyright-text {
        font-size: 13px;
        line-height: 1.7;
        padding: 0 10px;
    }

    /* Back To Top */
    #back-to-top {
        width: 42px;
        height: 42px;
        right: 15px;
        bottom: 15px;
    }

    /* Animated Line */
    .line-animate::after {
        width: 50px;
    }

    .line-animate::before {
        width: 18px;
    }

    @keyframes lineMove {
        0% {
            left: 0;
        }
        100% {
            left: 50px;
        }
    }
}

/* ======= Scroll-Placeholder ======= */
.input-wrapper{
    position:relative;
    flex:1;
    overflow:hidden;
    background-color:#fffffff0;
}

#supportPhone{
    position:relative;
    z-index:2;
    background:transparent;
}

/* Hide original placeholder on Desktop */
#supportPhone::placeholder{
    color:transparent;
}

/* Desktop Scrolling Placeholder */
.scroll-placeholder{
    position:absolute;
    top:50%;
    left:10px;
    transform:translateY(-50%);
    white-space:nowrap;
    color:#6c757d;
    pointer-events:none;
    z-index:1;
    animation:inputMarquee 8s linear infinite;
}
/* Animation */
@keyframes inputMarquee{

    from{
        transform:translate(100%,-50%);
    }

    to{
        transform:translate(-100%,-50%);
    }

}
/* Hide while typing */
#supportPhone:focus + .scroll-placeholder{
    display:none;
}

@media (max-width:768px){

    /* Disable marquee completely */
    .scroll-placeholder{
        display:none !important;
        animation:none !important;
    }
    /* Show normal placeholder */
    #supportPhone::placeholder{
        color:#6c757d;
    }
}

 /* ======= Premium Footer Glow Effect ======= */
.footer {
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: -20%;
    left: -500px;
    width: 500px;
    height: 140%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.05) 20%,
        rgba(255, 215, 0, 0.35) 50%,
        rgba(212, 175, 55, 0.05) 80%,
        transparent
    );

    filter: blur(20px);
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 0;

    animation: footerGlow 8s linear infinite;
}

.footer > .container {
    position: relative;
    z-index: 1;
}

@keyframes footerGlow {
    0% {
        left: -500px;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: calc(100% + 500px);
        opacity: 0;
    }
}

/* ======== Animated underline for headings ======== */ 
.line-animate {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}
.line-animate::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 90px;
    height: 3px;
    background: #d4af37;
}
.line-animate::before {
    content: '';
    position: absolute;
    bottom: -8px;
    width: 90px;
    height: 3px;
    background: white;
    animation: lineMove 2s infinite;
}
@keyframes lineMove {
    0% { left: 0; }
    100% { left: 70px; }
}
.support-heading::after{
    width:120px;
}

.support-heading::before{
    width:115px;
}

@keyframes supportLineMove{
    0%{
        left:0;
    }
    100%{
        left:110px;
    }
}

.support-heading::before{
    animation:supportLineMove 2s infinite;
}

/* ========== Back to Top ========== */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold);
    color: #000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}
#back-to-top.show {
    opacity: 1;
    visibility: visible;
}
#back-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .row.g-5 {
        --bs-gutter-x: 0.5rem;
    }

    .col-lg-5,
    .col-lg-7 {
        flex: 0 0 auto;
        width: 100%;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        padding-top: 2rem;
    }

    .card.shadow-lg {
        max-width: 100%;
        margin: 0 auto 2rem;        
        border-radius: 12px;
    }

    form input,
    form select,
    form textarea {
        width: 100% !important;
        box-sizing: border-box;
    }
}

/* ========== Booking Card Styles ========== */
.booking-card {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    transition: box-shadow 0.3s;
}
.booking-card:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}
.booking-card-header {
    background: linear-gradient(135deg, #e94560, #ff6f00);
    padding: 1.5rem;
    text-align: center;
    color: white;
}
.booking-card-header i {
    margin-bottom: 0.5rem;
}
.booking-card-body {
    padding: 1.5rem;
    background: white;
}

.price-tag .display-6 {
    font-size: 2rem;
    font-weight: 800;
}

/* Custom book button */
.btn-book {
    background: linear-gradient(45deg, #e94560, #ff6f00);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 69, 96, 0.4);
    color: white;
}

/* Outline call button */
.btn-call-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s;
}
.btn-call-outline:hover {
    background: var(--gold);
    color: black;
}

/* Input groups – soft box shadow */
.input-group-text {
    background: #f8f9fa;
    border-radius: 0.375rem 0 0 0.375rem;
    border-right: none;
}
.form-control {
    border-left: none;
}
.input-group .form-control:focus {
    box-shadow: none;
    border-color: var(--gold);
}
.input-group:focus-within .input-group-text {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* ========= Hover Line Effect ========= */
.line-effect {
    position: relative;
}

.line-effect::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    box-shadow: 0 -30px 45px 0.5rem rgb(0, 60, 255);
    background: #0357ff;
    transition: width .3s ease;
}

.line-effect:hover::after {
    width: 100%;
}

.schover a:hover {
    color: #f4ff23;
}
