:root {
    --primary-orange: #E96C28;

    --primary-red: #9A031E;
    --secondary-red: #CE5524;
    --gradient-primary: linear-gradient(135deg, #E96C28 0%, #FB8B24 100%);
    --gradient-nav: linear-gradient(135deg, #9A031E 0%, #CE5524 100%);
    --gradient-footer: #FB8B24;
    --gradient-hero: linear-gradient(135deg, rgba(233, 108, 40, 0.9) 0%, rgba(251, 139, 36, 0.9) 100%);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
    line-height: 1.7;
    background-color: #ffffff;
}

/* ADD 'html' here to strictly block mobile horizontal scrolling */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;

    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Modern Header */
.temple-header {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    padding: 0.5rem 0;
    color: white;
}


.temple-nav::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;

    background: linear-gradient(90deg,
            transparent 0%,
            #ff6b00 15%,
            #ffd700 35%,
            #ffffff 50%,
            #ffd700 65%,
            #ff6b00 85%,
            transparent 100%);

    box-shadow: 0 0 10px rgba(255, 170, 0, 0.7);
}

.temple-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.temple-header .container {
    position: relative;
    z-index: 2;
}

.temple-header h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    letter-spacing: -0.5px;
}

.temple-header h2 {
    font-size: clamp(1rem, 3vw, 1.4rem);
    font-weight: 400;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Ultra Modern Navigation */
.temple-nav {
    background: var(--primary-red);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: all 0.3s ease;
}

.temple-nav.scrolled {
    background: rgba(154, 3, 30, 0.95);
    backdrop-filter: blur(20px);
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.8rem 1.2rem !important;
    border-radius: 50px;
    margin: 0 0.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.admin-btn {
    background: var(--gradient-primary) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 0.8rem 2rem !important;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(233, 108, 40, 0.4);
}

.admin-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(233, 108, 40, 0.6);
}

/* Floating Marquee */
.temple-marquee {
    background: #4ca728;
    color: white;
    padding: 0.5rem 0;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.temple-marquee::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Section Titles with Modern Typography */
.section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 600;
    padding-top: 3px;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.text-title {
    font-size: clamp(1rem, 5vw, 2rem);
    font-weight: 400;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;



}

.text-titles {
    font-size: clamp(1rem, 2.5vw, 2rem);
    font-weight: 400;
    background: black;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;



}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 50px;
    animation: scaleIn 0.8s ease-out 0.3s both;
}

@keyframes scaleIn {
    from {
        width: 0;
    }

    to {
        width: 100px;
    }
}

/* Ultra Modern Cards */
.temple-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}


.temple-cards {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.temple-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 108, 40, 0.1), transparent);
    transition: left 0.6s;
}

.temple-card:hover::before {
    left: 100%;
}

.temple-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    /* box-shadow: var(--shadow-hover); */
    /* border-color: rgba(233, 108, 40, 0.3); */
}

.contact-card {
    text-align: center;
    padding: 2rem;

    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-cards {
    text-align: center;
    padding: 2rem;

    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-cards h4 {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-card:hover::after {
    transform: scaleX(1);
}

.contact-card h4 {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.contact-card-link {
    color: inherit;
}

.card-hover-effect {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
    background: #ffffff;
}

.card-hover-effect:hover,
.card-hover-effect:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.12);
    border-color: rgba(233, 108, 40, 0.18);
    background: #fffdf9;
}

.badge-soft-success,
.badge-soft-info,
.badge-soft-warning {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.7rem;
    border-radius: 1.00rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.badge-soft-success {
    background: #eaf7ef;
    color: #1d7a3a;
}

.badge-soft-info {
    background: #e7f2ff;
    color: #165d93;
}

.badge-soft-warning {
    background: #fff4e1;
    color: #b36c00;
}

/* Modern Buttons */
.btn-temple-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(233, 108, 40, 0.3);
    position: relative;
    overflow: hidden;
}

.booking-tab-btn {
    flex: 0 0 calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
    min-width: 140px;
    border-radius: 50px !important;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 0;
}

@media (max-width: 576px) {
    .booking-tab-btn {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.btn-temple-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;

    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-temple-primary:hover::before {
    left: 100%;
}

.btn-temple-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(233, 108, 40, 0.5);
    color: white;
}

/* Hero Carousel */
.temple-slider {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.temple-slider .carousel-item {
    height: 80vh;
    min-height: 40px;
    position: relative;
}

.temple-slider .carousel-item img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: transform 0.6s ease;
}

.temple-slider .carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: var(--gradient-hero); */
    opacity: 0.3;
}

.temple-slider:hover .carousel-item img {
    transform: scale(1.05);
}

/* Advanced Form Styling */
.form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.25rem rgba(233, 108, 40, 0.1);
    transform: translateY(-2px);
}

.form-label {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

/* Gallery with Hover Effects */
.gallery-item {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #f8f9fa;
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
    opacity: 0.1;
}

.gallery-item:hover {
    transform: translateY(-10px) rotateY(5deg);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-hover);
}

.gallery-item h4 {
    position: relative;
    z-index: 2;
}

/* Location Image with 3D Effect */
.location-container {
    position: relative;

    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-soft);
}

/* .location-container:hover {
            transform: perspective(1000px) rotateX(10deg) rotateY(10deg) scale(1.02);
            box-shadow: var(--shadow-hover);
        } */

.location-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(233, 108, 40, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Modern Footer */


.social-links a {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 0.5rem;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: #FFD700;
    color: #8B4513;
    transform: translateY(-5px) rotate(360deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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

/* Responsive Design */
@media (max-width: 768px) {
    .temple-header {
        padding: 1.5rem 0;
    }

    .temple-slider .carousel-item {
        height: 50vh;
        min-height: 300px;
    }

    .contact-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .btn-temple-primary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: .5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .temple-slider .carousel-item {
        height: 40vh;
        min-height: 250px;
    }

    .contact-card {
        padding: 1rem;
    }

    .btn-temple-primary {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Content Sections */
.content-section {
    padding: 0;
}

.temple-info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(10px);
    margin: 10px;
}

.temple-info-card-new {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(10px);
}

/* Enhanced Mobile Navigation */
@media (max-width: 991px) {
    .navbar-nav {
        background: rgba(154, 3, 30, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        margin-top: 1rem;
        padding: 1rem;
    }

    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        text-align: center;
    }
}

/* Room Cards Enhancement */
.room-card {
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
}

.room-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.room-price {
    color: var(--secondary-orange);
    font-size: 1.8rem;
    font-weight: 700;
}

/* Modal Enhancement */
.modal-content {
    border-radius: 25px;
    border: none;
    box-shadow: var(--shadow-hover);
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: 25px 25px 0 0;
}

.rotate-90 {
    transform: rotate(90deg);
}

@media (max-width: 576px) {
    .admin-btn {
        padding: 5px 10px;
        font-size: 0.8rem;
    }

    .language-toggle-container {
        font-size: 0.8rem;
    }
}

.rotate-phone {
    transform: rotate(90deg);
}

.fa-whatsapp {
    font-size: 18px;
}

/* Base Footer Styling */
.temple-footer {
    /* Replaced solid color with your custom gradient variable */
    background: var(--gradient-primary);
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Perfect alignment for list items with icons */
.footer-icon-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-icon-list li i {
    width: 25px;
    /* Forces all text to align perfectly vertically */
    margin-top: 4px;
    /* Centers the icon with the text */
    opacity: 0.8;
}

/* Quick Links Styling & Hover Animation */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    font-weight: 500;
    transform: translateX(5px);
    /* Professional subtle slide effect */
}

/* Video Container Styling */
.video-wrapper {
    transition: transform 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    /* Lifts the video slightly on hover */
}

.video-container {
    aspect-ratio: 16 / 9;
    background-color: #000;
}

.video-thumb {
    object-fit: cover;
    height: 100%;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-thumb {
    opacity: 1;
    /* Brightens on hover */
}

/* Custom Play Button */
.play-overlay {
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.video-wrapper:hover .play-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.play-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.video-wrapper:hover .play-icon {
    transform: scale(1.1);
    /* Pop effect on the play button */
    background-color: #ff0000 !important;
}

/* YouTube Button Below Video */
.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: #333 !important;
    border-color: #ffffff;
}

/* ===== UNIFIED HEADING STYLE ===== */

/* Section titles (h5.section-title) */
.section-title {
    font-size: clamp(1.2rem, 3vw, 1.45rem) !important;
    font-weight: 500 !important;
    letter-spacing: -0.2px;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 50px;
}

/* Card headings (h4 inside contact-card, temple-card) */
.contact-card h4,
.contact-cards h4,
.temple-card .card-body>h4,
.temple-cards .card-body>h4 {
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    color: var(--primary-orange) !important;
    margin-bottom: 0.6rem;
}

/* Large info-card headings (h3, h5 inside temple-info-card) */
.temple-info-card h3,
.temple-info-card h5,
.temple-info-card-new h3,
.temple-info-card-new h5 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem) !important;
    font-weight: 500 !important;
    color: var(--primary-orange) !important;
}

/* .text-title used for main card headings */
.text-title {
    font-size: clamp(1.05rem, 2.5vw, 1.3rem) !important;
    font-weight: 500 !important;
}

/* Booking section heading */
#booking .card-body h3,
#contact .card-body h3,
#donation .card-body h3,
#gallery .card-body h3,
#nearby .card-body h3,
#trustees .card-body h3,
#history .card-body h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem) !important;
    font-weight: 500 !important;
}

/* Uniform card body text size */
.card,
.contact-card,
.temple-card,
.temple-cards {
    font-size: 1rem !important;
    line-height: 1.65 !important;
}

.card p,
.card .card-text,
.card small,
.card span,
.card li,
.card label,
.card .lead,
.card .text-muted {
    font-size: 1rem !important;
    line-height: 1.6 !important;
}

/* Floating Action Button for phone call */
.fab-phone-call {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-orange);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fab-phone-call:hover,
.fab-phone-call:focus {
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.fab-phone-call i {
    font-size: 1.3rem;
    /* Added rotation here */
    transform: rotate(90deg);
}