.elementor-1091 .elementor-element.elementor-element-2254c7b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1091 .elementor-element.elementor-element-912a465{--display:flex;}.elementor-1091 .elementor-element.elementor-element-de4ba31{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1091 .elementor-element.elementor-element-e17c7e9{--display:flex;}.elementor-1091 .elementor-element.elementor-element-a859040{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1091 .elementor-element.elementor-element-5a4953a{--display:flex;}.elementor-1091 .elementor-element.elementor-element-d1721e4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1091 .elementor-element.elementor-element-4b9e858{--display:flex;}.elementor-1091 .elementor-element.elementor-element-d0f00b9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1091 .elementor-element.elementor-element-b79eca0{--display:flex;}/* Start custom CSS for html, class: .elementor-element-639f2f4 *//* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Poppins:wght@300;500;700&display=swap');

/* Main Container */
.shivala-deck-container {
    position: relative;
    width: 100%;
    height: 90vh; /* Full Height */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f0c29; 
    background: linear-gradient(to right, #24243e, #302b63, #0f0c29);
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Background Mandala Animation */
.divine-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mandala-spin {
    width: 800px;
    height: 800px;
    border: 2px dashed #FFD700;
    border-radius: 50%;
    animation: spin 60s linear infinite;
}

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

/* The Deck Wrapper */
.deck-wrapper {
    display: flex;
    width: 95%;
    max-width: 1400px;
    height: 80%;
    z-index: 10;
    gap: 15px;
}

/* Individual Cards */
.deck-card {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    height: 100%;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    flex: 0.5; /* Default shrunk state */
    margin: 10px;
    position: relative;
    transition: flex 0.7s cubic-bezier(0.05, 0.6, 0.4, 0.9); /* Smooth expansion */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Active Card (Expanded) */
.deck-card.active {
    flex: 5; /* Expands significantly */
    border: 2px solid #FF9933; /* Saffron Glow */
    box-shadow: 0 0 25px rgba(255, 153, 51, 0.4);
}

/* Overlay Gradient */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0) 100%);
    transition: background 0.5s;
}

.deck-card.active .card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 60%);
}

/* Text Content Area */
.card-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    opacity: 0; /* Hidden by default */
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
}

/* Only show content when active */
.deck-card.active .card-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

/* Typography Styling */
.peeth-tag {
    display: inline-block;
    background: rgba(255, 153, 51, 0.2);
    color: #FF9933;
    border: 1px solid #FF9933;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    backdrop-filter: blur(5px);
}

.guru-name {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px #000;
}

.veda-info {
    font-size: 1.1rem;
    margin-bottom: 20px;
    border-left: 3px solid #FFD700;
    padding-left: 15px;
}

.veda-info span {
    color: #aaa;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mahavakya {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFD700;
    font-family: 'Cinzel', serif;
    margin-top: 5px;
    font-style: italic;
}

/* Connect Button */
.connect-btn {
    background: linear-gradient(to right, #FF512F, #DD2476);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
    box-shadow: 0 5px 15px rgba(221, 36, 118, 0.4);
}

.connect-btn:hover {
    transform: scale(1.05);
}

/* Responsive Design (Mobile) */
@media (max-width: 768px) {
    .shivala-deck-container {
        height: auto;
        padding: 20px 0;
    }
    
    .deck-wrapper {
        flex-direction: column;
        height: 600px; /* Fixed height for scroll/stack feel on mobile */
    }

    .deck-card {
        flex: 1;
        width: 100%;
        margin: 5px 0;
        background-position: center 20%;
    }

    .deck-card.active {
        flex: 6;
    }

    .guru-name {
        font-size: 1.8rem;
    }
    
    .card-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-56d8d4d *//* Import Fonts (Standard for the whole site) */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Poppins:wght@300;500;600&display=swap');

/* ================= SECTION STYLING ================= */
.encyclopedia-section {
    padding: 80px 20px;
    background-color: #fff; /* Clean White Base */
    background-image: radial-gradient(#FF993315 1px, transparent 1px); /* Subtle Saffron Dots Pattern */
    background-size: 20px 20px;
    position: relative;
    overflow: hidden;
}

.encyclo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* ================= LEFT CONTENT ================= */
.encyclo-content {
    flex: 1;
    min-width: 300px;
}

/* Badge */
.encyclo-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #FF9933; /* Saffron */
    background: rgba(255, 153, 51, 0.1);
    padding: 5px 15px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 153, 51, 0.3);
}

/* Headings */
.encyclo-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: #002D62; /* Deep Blue */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-saffron {
    color: #FF9933;
}

/* Descriptions */
.encyclo-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

.encyclo-subdesc {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    border-left: 3px solid #D4AF37; /* Gold Border */
    padding-left: 15px;
}

/* Stats Row */
.encyclo-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #002D62;
}

.stat-label {
    font-size: 0.8rem;
    color: #777;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background-color: #ddd;
}

/* Button */
.btn-explore {
    padding: 14px 35px;
    background: #002D62; /* Deep Blue */
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 45, 98, 0.3);
}

.btn-explore:hover {
    background: #FF9933; /* Saffron on Hover */
    transform: translateY(-3px);
}

/* ================= RIGHT VISUALS (Floating Cards) ================= */
.encyclo-visuals {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Circle */
.circle-bg {
    width: 350px;
    height: 350px;
    background: rgba(212, 175, 55, 0.1); /* Gold Tint */
    border-radius: 50%;
    position: absolute;
    border: 1px dashed #D4AF37;
    animation: spinSlow 30s linear infinite;
}

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

/* Floating Cards Styling */
.feature-card {
    background: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    width: 280px;
    transition: 0.3s;
    border-left: 4px solid #002D62;
    animation: float 4s ease-in-out infinite;
}

.feature-card:hover {
    transform: scale(1.05);
    border-color: #FF9933;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #f4f4f4;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #002D62;
}

.feat-text h4 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #002D62;
    font-size: 1rem;
    margin-bottom: 2px;
}

.feat-text p {
    font-size: 0.8rem;
    color: #666;
}

/* Positioning Cards */
.card-1 { top: 20px; right: 20px; animation-delay: 0s; }
.card-2 { top: 140px; left: 0px; animation-delay: 1.5s; z-index: 2; }
.card-3 { bottom: 40px; right: 40px; animation-delay: 3s; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .encyclo-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .encyclo-subdesc {
        border-left: none;
        border-top: 3px solid #D4AF37;
        padding-top: 15px;
    }

    .encyclo-stats {
        justify-content: center;
    }

    .encyclo-visuals {
        height: 350px;
        width: 100%;
    }
    
    .circle-bg { width: 280px; height: 280px; }
    
    /* Adjust card positions for mobile */
    .feature-card { width: 240px; padding: 10px 15px; }
    .card-1 { top: 0; right: 10%; }
    .card-2 { top: 110px; left: 5%; }
    .card-3 { bottom: 20px; right: 5%; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c99fee7 *//* Import Fonts (Standard for the whole site) */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Poppins:wght@300;500;600&display=swap');

/* ================= SECTION STYLING ================= */
.encyclopedia-section {
    padding: 80px 20px;
    background-color: #fff; /* Clean White Base */
    background-image: radial-gradient(#FF993315 1px, transparent 1px); /* Subtle Saffron Dots Pattern */
    background-size: 20px 20px;
    position: relative;
    overflow: hidden;
}

.encyclo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* ================= LEFT CONTENT ================= */
.encyclo-content {
    flex: 1;
    min-width: 300px;
}

/* Badge */
.encyclo-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #FF9933; /* Saffron */
    background: rgba(255, 153, 51, 0.1);
    padding: 5px 15px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 153, 51, 0.3);
}

/* Headings */
.encyclo-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: #002D62; /* Deep Blue */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-saffron {
    color: #FF9933;
}

/* Descriptions */
.encyclo-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

.encyclo-subdesc {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    border-left: 3px solid #D4AF37; /* Gold Border */
    padding-left: 15px;
}

/* Stats Row */
.encyclo-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #002D62;
}

.stat-label {
    font-size: 0.8rem;
    color: #777;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background-color: #ddd;
}

/* Button */
.btn-explore {
    padding: 14px 35px;
    background: #002D62; /* Deep Blue */
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 45, 98, 0.3);
}

.btn-explore:hover {
    background: #FF9933; /* Saffron on Hover */
    transform: translateY(-3px);
}

/* ================= RIGHT VISUALS (Floating Cards) ================= */
.encyclo-visuals {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Circle */
.circle-bg {
    width: 350px;
    height: 350px;
    background: rgba(212, 175, 55, 0.1); /* Gold Tint */
    border-radius: 50%;
    position: absolute;
    border: 1px dashed #D4AF37;
    animation: spinSlow 30s linear infinite;
}

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

/* Floating Cards Styling */
.feature-card {
    background: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    width: 280px;
    transition: 0.3s;
    border-left: 4px solid #002D62;
    animation: float 4s ease-in-out infinite;
}

.feature-card:hover {
    transform: scale(1.05);
    border-color: #FF9933;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #f4f4f4;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #002D62;
}

.feat-text h4 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #002D62;
    font-size: 1rem;
    margin-bottom: 2px;
}

.feat-text p {
    font-size: 0.8rem;
    color: #666;
}

/* Positioning Cards */
.card-1 { top: 20px; right: 20px; animation-delay: 0s; }
.card-2 { top: 140px; left: 0px; animation-delay: 1.5s; z-index: 2; }
.card-3 { bottom: 40px; right: 40px; animation-delay: 3s; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .encyclo-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .encyclo-subdesc {
        border-left: none;
        border-top: 3px solid #D4AF37;
        padding-top: 15px;
    }

    .encyclo-stats {
        justify-content: center;
    }

    .encyclo-visuals {
        height: 350px;
        width: 100%;
    }
    
    .circle-bg { width: 280px; height: 280px; }
    
    /* Adjust card positions for mobile */
    .feature-card { width: 240px; padding: 10px 15px; }
    .card-1 { top: 0; right: 10%; }
    .card-2 { top: 110px; left: 5%; }
    .card-3 { bottom: 20px; right: 5%; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4ef1cfa *//* Import Fonts (Standard) */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Poppins:wght@300;500;600&display=swap');

/* ================= SECTION STYLING ================= */
.setu-section {
    position: relative;
    padding: 100px 20px;
    background-color: #002D62; /* Deep Blue base */
    background-image: linear-gradient(135deg, #001a3d 0%, #002D62 100%);
    overflow: hidden;
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Pattern (Subtle Geometry) */
.setu-bg-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 153, 51, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 20%);
    z-index: 1;
}

.setu-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

/* ================= ICON & TYPOGRAPHY ================= */
.setu-icon {
    font-size: 3rem;
    color: #FF9933; /* Saffron */
    margin-bottom: 20px;
    display: inline-block;
    padding: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 153, 51, 0.2);
    box-shadow: 0 0 30px rgba(255, 153, 51, 0.1);
}

.setu-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.setu-title .text-gold {
    color: #D4AF37;
    position: relative;
    display: inline-block;
}

/* Decorative Line under Setu */
.setu-title .text-gold::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: #D4AF37;
    margin-top: 5px;
    border-radius: 2px;
}

.sub-title {
    display: block;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    color: #e0e0e0;
    margin-top: 10px;
}

.setu-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.setu-desc strong {
    color: #FF9933;
    font-weight: 600;
}

/* ================= BUTTON (Modern CTA) ================= */
.btn-get-started {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 45px;
    background: linear-gradient(90deg, #FF9933, #FF512F); /* Saffron Gradient */
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 81, 47, 0.4);
    letter-spacing: 0.5px;
}

.btn-get-started:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 81, 47, 0.6);
    background: linear-gradient(90deg, #FF512F, #FF9933);
}

.btn-get-started i {
    transition: transform 0.3s;
}

.btn-get-started:hover i {
    transform: translateX(5px);
}

/* ================= ANIMATION ================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .setu-section {
        padding: 60px 20px;
    }
    .setu-icon {
        font-size: 2.5rem;
        padding: 15px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-59d5bab *//* Import Fonts (Standard) */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Poppins:wght@300;500;600&display=swap');

/* ================= FOOTER STYLING ================= */
.shivala-footer {
    background-color: #001a33; /* Very Dark Blue */
    background-image: linear-gradient(to bottom, #002D62, #000f1f);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    border-top: 5px solid #FF9933; /* Saffron Top Border */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

/* ================= COLUMNS ================= */
.footer-col {
    display: flex;
    flex-direction: column;
}

/* Logo Area */
.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.footer-desc {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

/* Titles */
.footer-title {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: #FF9933; /* Saffron */
    margin-bottom: 20px;
    position: relative;
    font-weight: 700;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #D4AF37; /* Gold */
}

/* Links List */
.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.7rem;
    color: #FF9933;
}

.footer-links a:hover {
    color: #FF9933;
    padding-left: 5px; /* Slight slide effect */
}

/* Contact Area */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-item i {
    color: #FF9933;
    font-size: 1.1rem;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

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

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: 0.3s;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background: #FF9933;
    color: #000;
    transform: translateY(-3px);
    border-color: #FF9933;
}

/* ================= BOTTOM BAR ================= */
.footer-bottom {
    background-color: #000f1f;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

.footer-bottom strong {
    color: #fff;
}

.sanskrit {
    font-family: 'Cinzel', serif;
    color: #D4AF37;
    font-weight: 600;
    margin-left: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr; /* Stack columns */
        gap: 30px;
    }
}/* End custom CSS */