/*
Theme Name: Ram Jharokha Kailash Dham
Description: Bootstrap + ACF Theme
Version: 1.0
Author: Your Name
*/

body {
    font-family: 'Poppins', sans-serif;
}

/*
==========================================================================
   Header Styles - Ram Jharokha Kailash Dham
   Professional & Clean Design
==========================================================================
*/

/* ==========================================================================
   Top Bar
   ========================================================================== */

.top-bar {
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 100%);
    padding: 10px 0;
    font-size: 14px;
    color: white;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.top-bar a:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.top-bar-left a {
    font-weight: 400;
}

.top-bar-right .social-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin-left: 8px;
    transition: all 0.3s ease;
}

.top-bar-right .social-icon:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

/* ==========================================================================
   Main Header
   ========================================================================== */

.main-header {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 0;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

/* Logo Section */
.logo-section {
    flex-shrink: 0;
}

.header-logo,
.logo-section img,
.custom-logo-link img {
    height: 70px !important;
    width: auto !important;
    max-width: none !important;
    transition: transform 0.3s ease;
}

.header-logo:hover,
.logo-section img:hover,
.custom-logo-link img:hover {
    transform: scale(1.03);
}

/* ==========================================================================
   Navigation Menu - Complete Clean Version with Submenu
   ========================================================================== */

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
}

.nav-menu li {
    position: relative;
    margin: 0;
}

.nav-menu > li > a {
    display: block;
    padding: 15px 18px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

/* Hover Effect - Underline (Only for main menu items) */
.nav-menu > li > a::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #FF6B35;
    transition: width 0.3s ease;
}

.nav-menu > li > a:hover::before,
.nav-menu > li.current-menu-item > a::before {
    width: calc(100% - 36px);
}

.nav-menu > li > a:hover {
    color: #FF6B35;
}

/* Current/Active Menu Item */
.nav-menu li.current-menu-item > a,
.nav-menu li.current_page_item > a {
    color: #FF6B35;
    font-weight: 600;
}

/* Register Button - Special Styling */
.nav-menu li.register-btn a,
.nav-menu li:last-child a {
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 100%);
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    margin-left: 15px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
}

.nav-menu li.register-btn a::before,
.nav-menu li:last-child a::before {
    display: none !important;
}

.nav-menu li.register-btn a:hover,
.nav-menu li:last-child a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
    color: white !important;
}

/* ==========================================================================
   SUBMENU / DROPDOWN STYLES - CLEAN
   ========================================================================== */

/* Parent Menu Item with Children */
.nav-menu .menu-item-has-children > a {
    cursor: pointer;
}

.nav-menu .menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-menu .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Submenu Dropdown Container */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 5px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.nav-menu .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Submenu Items - Reset ALL styles */
.nav-menu .sub-menu li {
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    display: block !important;
}

/* Submenu Links - Clean */
.nav-menu .sub-menu li a {
    display: block !important;
    padding: 10px 20px !important;
    color: #333 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
    position: relative !important;
}

/* Remove ALL pseudo elements from submenu links */
.nav-menu .sub-menu li a::before,
.nav-menu .sub-menu li a::after {
    display: none !important;
    content: none !important;
}

/* Hover Effect on Submenu Items */
.nav-menu .sub-menu li a:hover {
    background: #f8f8f8 !important;
    color: #FF6B35 !important;
    padding-left: 25px !important;
}

/* Active Submenu Item */
.nav-menu .sub-menu li.current-menu-item a,
.nav-menu .sub-menu li.current_page_item a {
    background: #f0f0f0 !important;
    color: #FF6B35 !important;
}

/* ==========================================================================
   Mobile Menu Toggle
   ========================================================================== */

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: #FF6B35;
    cursor: pointer;
    padding: 8px;
}

/* ==========================================================================
   Mobile Menu
   ========================================================================== */

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    right: 0;
}

.mobile-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #FF6B35;
    cursor: pointer;
    z-index: 1002;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 70px 20px 20px;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-menu li a {
    display: block;
    padding: 15px 10px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-menu li a:hover {
    color: #FF6B35;
    padding-left: 20px;
}

.mobile-nav-menu li .mobile-register {
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 100%);
    color: white !important;
    border-radius: 50px;
    text-align: center;
    margin-top: 15px;
}

/* Mobile Submenu Styles */
.mobile-nav-menu .menu-item-has-children {
    position: relative;
}

.mobile-nav-menu .mobile-sub-menu {
    list-style: none;
    padding-left: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav-menu .submenu-open .mobile-sub-menu {
    padding-left: 20px;
    margin-top: 10px;
}

.mobile-nav-menu .mobile-sub-menu li {
    border-bottom: none;
}

.mobile-nav-menu .mobile-sub-menu a {
    display: block;
    padding: 12px 15px;
    color: #666;
    font-size: 14px;
    transition: all 0.3s ease;
}

.mobile-nav-menu .mobile-sub-menu a:hover {
    color: #FF6B35;
    padding-left: 25px;
}

.mobile-submenu-toggle i {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
    float: right;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Large Desktop - Extra Space */
@media (min-width: 1400px) {
    .nav-menu > li > a {
        padding: 15px 22px;
        font-size: 16px;
    }
}

/* Desktop */
@media (min-width: 992px) and (max-width: 1399px) {
    .nav-menu > li > a {
        padding: 15px 16px;
        font-size: 15px;
    }
}

/* Tablet & Mobile */
@media (max-width: 991px) {
    .main-navigation {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .header-logo,
    .logo-section img,
    .custom-logo-link img {
        height: 55px !important;
    }
}

/* Mobile Only */
@media (max-width: 575px) {
    .top-bar {
        font-size: 12px;
        padding: 8px 0;
    }
    
    .top-bar-left a {
        font-size: 11px;
        margin-right: 10px !important;
    }
    
    .top-bar-left a:last-child {
        display: none;
    }
    
    .top-bar-right .social-icon {
        width: 26px;
        height: 26px;
        font-size: 12px;
        margin-left: 5px;
    }
    
    .header-logo,
    .logo-section img,
    .custom-logo-link img {
        height: 50px !important;
    }
}

/* ==========================================================================
   Smooth Scroll & Performance
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

.main-header {
    will-change: transform;
}

/* Hide scrollbar on mobile menu */
.mobile-menu::-webkit-scrollbar {
    width: 5px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: #FF6B35;
    border-radius: 10px;
}




/*
==========================================================================
   About Section Styles - Poppins Font
   Ram Jharokha Kailash Dham
==========================================================================
*/

/* ==========================================================================
   Section Common Styles
   ========================================================================== */

.about-section {
    padding: 30px 0;
    background: #f8f9fa;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* ==========================================================================
   Single Image Layout
   ========================================================================== */

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   About Content
   ========================================================================== */

.about-content {
    padding-left: 20px;
}

.about-heading {
    font-size: 36px;
    font-weight: 400;
    color: #333;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
}

.about-description {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    text-align: justify;
}

/* ==========================================================================
   Features List with Icons
   ========================================================================== */

.features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 35px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 16px;
    color: #555;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    color: #333;
}

/* Feature Icon - Orange Circle with Check */
.feature-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    flex-shrink: 0;
    margin-right: 15px;
    margin-top: 2px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.feature-item span {
    flex: 1;
    line-height: 1.7;
}

/* ==========================================================================
   Custom Button
   ========================================================================== */

.btn-custom {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    color: white;
}

.btn-custom i {
    transition: transform 0.3s ease;
}

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

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Tablet */
@media (max-width: 991px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .about-heading {
        font-size: 30px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .about-section {
        padding: 10px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .title-divider {
        width: 60px;
        height: 3px;
    }
    
    .section-subtitle {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .about-heading {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .about-description {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .feature-item {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .btn-custom {
        padding: 14px 30px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .section-title {
        font-size: 28px;
    }
    
    .about-heading {
        font-size: 24px;
    }
}

/* ==========================================================================
   Animations
   ========================================================================== */

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

.about-section .row > div {
    animation: fadeInUp 0.8s ease both;
}

.about-section .row > div:nth-child(2) {
    animation-delay: 0.2s;
}

/* Smooth rendering */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



/*
==========================================================================
   Mission Vision Values Section
   Exact Match with HTML Version
==========================================================================
*/

/* Section Styles */
.values-section {
    background: #f8f9fa;
    padding: 80px;
}

/* Card Styles */
.value-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Icon Box */
.icon-box {
    margin-bottom: 1.5rem;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-wrapper i {
    font-size: 28px;
    color: white;
}

/* Icon Gradients - Exact from HTML */
.gradient-orange {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

.gradient-yellow {
    background: linear-gradient(135deg, #F7931E 0%, #FDB44B 100%);
}

.gradient-red {
    background: linear-gradient(135deg, #C1121F 0%, #E63946 100%);
}

.value-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* Text Styles */
.card-title {
    font-size: 24px;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.card-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.text-gray-600 {
    color: #6b7280;
}

/* Responsive */
@media (max-width: 991px) {
    .value-card {
        padding: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .icon-wrapper {
        width: 56px;
        height: 56px;
    }
    
    .icon-wrapper i {
        font-size: 24px;
    }
    
    .card-title {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .values-section {
        padding:20px!important;
    }
    
    .value-card {
        padding: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .icon-wrapper {
        width: 52px;
        height: 52px;
        border-radius: 0.875rem;
    }
    
    .icon-wrapper i {
        font-size: 22px;
    }
    
    .card-title {
        font-size: 20px;
        margin-bottom: 0.75rem;
    }
    
    .card-text {
        font-size: 14px;
        line-height: 1.7;
    }
}

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

.value-card {
    animation: fadeInUp 0.6s ease both;
}

.value-card:nth-child(1) {
    animation-delay: 0.1s;
}

.value-card:nth-child(2) {
    animation-delay: 0.2s;
}

.value-card:nth-child(3) {
    animation-delay: 0.3s;
}




/*
==========================================================================
   Services Section - Perfect Design
   Ram Jharokha Kailash Dham
==========================================================================
*/

/* Main Section */
.services-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Section Header */
.services-section .section-header {
    margin-bottom: 50px;
}

.section-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 2px;
    margin: 0 auto 20px;
}

.section-description {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
    max-width: 750px;
    margin: 0 auto;
}

/* Service Card Box */
.service-box {
    background: white;
    border-radius: 20px;
    padding: 35px 28px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

/* Service Icon */
.service-icon {
    width: 75px;
    height: 75px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 34px;
    color: white;
}

/* Icon Colors - 6 Different Gradients */
.icon-orange {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

.icon-yellow {
    background: linear-gradient(135deg, #F7931E 0%, #FDB44B 100%);
}

.icon-red {
    background: linear-gradient(135deg, #C1121F 0%, #E63946 100%);
}

.icon-blue {
    background: linear-gradient(135deg, #2E86DE 0%, #54A0FF 100%);
}

.icon-green {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
}

.icon-purple {
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
}

.service-box:hover .service-icon {
    transform: scale(1.12) rotate(5deg);
}

/* Service Text */
.service-heading {
    font-size: 21px;
    font-weight: 500;
    color: #333;
    margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.service-text {
    font-size: 15px;
    color: #666;
    line-height: 1.75;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    .services-section {
        padding: 60px 0;
    }
    
    .section-main-title {
        font-size: 36px;
    }
    
    .section-description {
        font-size: 16px;
        max-width: 650px;
    }
    
    .service-box {
        padding: 30px 25px;
        margin-bottom: 20px;
    }
    
    .service-icon {
        width: 68px;
        height: 68px;
        margin-bottom: 18px;
    }
    
    .service-icon i {
        font-size: 30px;
    }
    
    .service-heading {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .service-text {
        font-size: 14px;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .services-section {
        padding: 50px 0;
    }
    
    .section-main-title {
        font-size: 30px;
        margin-bottom: 12px;
    }
    
    .section-line {
        width: 60px;
        height: 3px;
        margin-bottom: 15px;
    }
    
    .section-description {
        font-size: 15px;
        padding: 0 15px;
        line-height: 1.7;
    }
    
    .service-box {
        padding: 28px 22px;
        margin-bottom: 18px;
        border-radius: 18px;
    }
    
    .service-icon {
        width: 62px;
        height: 62px;
        border-radius: 15px;
        margin-bottom: 16px;
    }
    
    .service-icon i {
        font-size: 28px;
    }
    
    .service-heading {
        font-size: 19px;
        margin-bottom: 11px;
    }
    
    .service-text {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 575px) {
    .section-main-title {
        font-size: 26px;
    }
    
    .service-icon {
        width: 58px;
        height: 58px;
    }
    
    .service-icon i {
        font-size: 26px;
    }
    
    .service-heading {
        font-size: 18px;
    }
    
    .service-text {
        font-size: 13px;
    }
}

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

.service-box {
    animation: fadeInUp 0.6s ease both;
}

.service-box:nth-child(1) { animation-delay: 0.1s; }
.service-box:nth-child(2) { animation-delay: 0.15s; }
.service-box:nth-child(3) { animation-delay: 0.2s; }
.service-box:nth-child(4) { animation-delay: 0.25s; }
.service-box:nth-child(5) { animation-delay: 0.3s; }
.service-box:nth-child(6) { animation-delay: 0.35s; }




/*
==========================================================================
   Gallery Section
==========================================================================
*/

.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Section Header */
.gallery-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.gallery-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 2px;
    margin: 0 auto 20px;
}

.gallery-subtitle {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
    max-width: 700px;
    margin: 0 auto;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    height: 300px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Gallery Image */
.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.85) 0%, rgba(193, 18, 31, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 48px;
    color: white;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* View All Button */
.btn-gallery {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-gallery:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    color: white;
}

.btn-gallery i {
    transition: transform 0.3s ease;
}

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

/* Responsive */
@media (max-width: 991px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-main-title {
        font-size: 36px;
    }
    
    .gallery-item {
        height: 280px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .gallery-section {
        padding: 50px 0;
    }
    
    .gallery-main-title {
        font-size: 30px;
    }
    
    .gallery-divider {
        width: 60px;
        height: 3px;
    }
    
    .gallery-subtitle {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .gallery-item {
        height: 250px;
        border-radius: 15px;
    }
    
    .btn-gallery {
        padding: 14px 35px;
        width: 90%;
        justify-content: center;
    }
}

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

.gallery-item {
    animation: fadeInUp 0.6s ease both;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.15s; }
.gallery-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-item:nth-child(4) { animation-delay: 0.25s; }
.gallery-item:nth-child(5) { animation-delay: 0.3s; }
.gallery-item:nth-child(6) { animation-delay: 0.35s; }



/*
==========================================================================
   Footer Section
   Ram Jharokha Kailash Dham
==========================================================================
*/

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    position: relative;
}

/* Footer Top */
.footer-top {
    padding: 80px 0 50px;
}

/* Footer Widget */
.footer-widget {
    margin-bottom: 30px;
}

.footer-widget-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 2px;
}

.footer-text {
    font-size: 15px;
    color: #b8b8b8;
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
    color: #ffffff;
}

.social-icon.facebook:hover {
    background: #1877f2;
}

.social-icon.twitter:hover {
    background: #1da1f2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.youtube:hover {
    background: #ff0000;
}

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

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

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: #FF6B35;
    padding-left: 8px;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    left: -5px;
    opacity: 1;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: #b8b8b8;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

.footer-contact i {
    width: 20px;
    color: #FF6B35;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact span {
    flex: 1;
    line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.copyright-text {
    margin: 0;
    color: #b8b8b8;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.footer-bottom-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #FF6B35;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

/* Responsive */
@media (max-width: 991px) {
    .footer-top {
        padding: 60px 0 30px;
    }
    
    .footer-widget {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .footer-top {
        padding: 50px 0 20px;
    }
    
    .footer-widget-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .footer-text,
    .footer-links a,
    .footer-contact li {
        font-size: 14px;
    }
    
    .footer-bottom {
        text-align: center;
        padding: 20px 0;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}



/*
==========================================================================
   Testimonials Section - भक्तों के अनुभव
   Ram Jharokha Kailash Dham
==========================================================================
*/

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

/* Section Header */
.testimonials-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.testimonials-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 2px;
    margin: 0 auto 20px;
}

.testimonials-subtitle {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
    max-width: 700px;
    margin: 0 auto;
}

/* Testimonial Card */
.testimonial-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #FF6B35;
    background: white;
}

/* Quote Icon */
.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.quote-icon i {
    font-size: 20px;
    color: white;
}

/* Review Text */
.review-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    min-height: 120px;
}

/* Author Info */
.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

/* Author Photo Placeholder */
.author-photo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #FF6B35;
    flex-shrink: 0;
}

.author-photo-placeholder i {
    font-size: 24px;
    color: white;
}

/* Author Details */
.author-details {
    flex: 1;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px 0;
    font-family: 'Poppins', sans-serif;
}

.author-rating {
    display: flex;
    gap: 3px;
}

.author-rating i {
    font-size: 14px;
    color: #FDB813;
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 36px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }
    
    .review-text {
        min-height: auto;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonials-title {
        font-size: 30px;
        margin-bottom: 12px;
    }
    
    .testimonials-divider {
        width: 60px;
        height: 3px;
        margin-bottom: 15px;
    }
    
    .testimonials-subtitle {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
        border-radius: 15px;
        margin-bottom: 20px;
    }
    
    .quote-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }
    
    .quote-icon i {
        font-size: 18px;
    }
    
    .review-text {
        font-size: 14px;
        margin-bottom: 20px;
        min-height: auto;
    }
    
    .author-photo-placeholder {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }
    
    .author-photo-placeholder i {
        font-size: 20px;
    }
    
    .author-name {
        font-size: 16px;
    }
    
    .author-rating i {
        font-size: 12px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .testimonials-title {
        font-size: 26px;
    }
}

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

.testimonial-card {
    animation: fadeInUp 0.6s ease both;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }




/*
==========================================================================
   Donation Section - Creative Design (No Text Shadow)
   Ram Jharokha Kailash Dham
==========================================================================
*/

.donation-section-creative {
    padding: 60px 0;
    background: linear-gradient(135deg, #C1121F 0%, #FF6B35 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.donation-section-creative::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.donation-section-creative .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.donation-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left Side - Text */
.donation-left {
    flex: 1;
    color: white;
}

.donation-title {
    font-size: 48px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    animation: fadeInLeft 0.6s ease;
}

.donation-text {
    font-size: 18px;
    color: white;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    animation: fadeInLeft 0.7s ease;
}

.bank-details {
    margin-bottom: 30px;
    animation: fadeInLeft 0.8s ease;
}

.bank-details p {
    font-size: 16px;
    color: white;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    padding-left: 25px;
    position: relative;
}

.bank-details p::before {
    content: '►';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 14px;
}

.bank-details .contact-no {
    font-weight: 700;
    font-size: 18px;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    padding-left: 20px;
}

.bank-details .contact-no::before {
    display: none;
}

.bank-details .contact-no i {
    color: #FFD700;
}

.upi-logo {
    margin-top: 25px;
    animation: fadeInLeft 0.9s ease;
}

.upi-logo img {
    width: 120px;
    height: auto;
    background: white;
    padding: 8px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.upi-logo img:hover {
    transform: scale(1.05);
}

/* Right Side - QR Code */
.donation-right {
    flex-shrink: 0;
    animation: fadeInRight 0.6s ease;
}

.qr-code-box {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: transform 0.3s ease;
}

.qr-code-box::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, #FFD700, #FF6B35, #C1121F);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.qr-code-box:hover {
    transform: translateY(-5px);
}

.qr-code-box:hover::before {
    opacity: 1;
}

.qr-code-box img {
    width: 280px;
    height: 280px;
    display: block;
    border-radius: 12px;
}

.scan-text {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.scan-text i {
    color: #FF6B35;
    font-size: 18px;
    animation: pulse 2s ease infinite;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    .donation-section-creative {
        padding: 50px 0;
    }
    
    .donation-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .donation-title {
        font-size: 38px;
    }
    
    .bank-details p {
        padding-left: 0;
    }
    
    .bank-details p::before {
        display: none;
    }
    
    .qr-code-box img {
        width: 250px;
        height: 250px;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .donation-section-creative {
        padding: 40px 0;
    }
    
    .donation-title {
        font-size: 32px;
    }
    
    .donation-text {
        font-size: 16px;
    }
    
    .bank-details p {
        font-size: 14px;
    }
    
    .qr-code-box {
        padding: 15px;
    }
    
    .qr-code-box img {
        width: 220px;
        height: 220px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 575px) {
    .donation-title {
        font-size: 28px;
    }
    
    .bank-details p {
        font-size: 13px;
    }
    
    .qr-code-box img {
        width: 200px;
        height: 200px;
    }
    
    .upi-logo img {
        width: 100px;
    }
}



/*
==========================================================================
   Contact Section - Creative Design
   Ram Jharokha Kailash Dham
==========================================================================
*/

.contact-section-creative {
    padding: 70px 0;
    background: #f8f9fa;
}

.contact-section-creative .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.contact-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #C1121F 0%, #FF6B35 100%);
    border-radius: 2px;
    margin: 0 auto 20px;
}

.contact-subtitle {
    font-size: 17px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Contact Info Cards */
.contact-info-cards {
    display: grid;
    gap: 20px;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left-color: #FF6B35;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C1121F 0%, #FF6B35 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.info-content p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.info-content a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #FF6B35;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: #FF6B35;
    background: white;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #C1121F 0%, #FF6B35 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.submit-btn i {
    font-size: 16px;
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    .contact-section-creative {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-title {
        font-size: 36px;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .contact-section-creative {
        padding: 50px 0;
    }
    
    .contact-title {
        font-size: 30px;
    }
    
    .contact-divider {
        width: 60px;
        height: 3px;
    }
    
    .contact-subtitle {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .form-control {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .contact-title {
        font-size: 26px;
    }
    
    .info-content h3 {
        font-size: 14px;
    }
    
    .info-content p {
        font-size: 13px;
    }
}



/*
==========================================================================
   Map Section - Simple (No Info Box)
   Ram Jharokha Kailash Dham
==========================================================================
*/

.map-section-simple {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.map-container iframe:hover {
    filter: grayscale(0%);
}

/* Responsive */
@media (max-width: 767px) {
    .map-section-simple {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .map-section-simple {
        height: 250px;
    }
}



/*
==========================================================================
   Maharaj Ji Section - Compact with Red-Orange Gradient
   Ram Jharokha Kailash Dham
==========================================================================
*/

.maharaj-section-compact {
    padding: 60px 0;
    background: linear-gradient(135deg, #C1121F 0%, #FF6B35 100%);
    position: relative;
    overflow: hidden;
}

.maharaj-section-compact .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Content */
.maharaj-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: center;
}

/* Image Section */
.maharaj-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.maharaj-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Text Section */
.maharaj-text-section {
    color: white;
}

.maharaj-name {
    font-size: 32px;
    font-weight: 500;
    color: #FFD700;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.maharaj-designation {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.maharaj-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    text-align: justify;
}

/* Features List */
.maharaj-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.maharaj-features li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.maharaj-features li::before {
    content: '►';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 12px;
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    .maharaj-section-compact {
        padding: 50px 0;
    }
    
    .maharaj-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .maharaj-image-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .maharaj-text-section {
        text-align: center;
    }
    
    .maharaj-features {
        text-align: left;
        max-width: 400px;
        margin: 20px auto 0;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .maharaj-section-compact {
        padding: 40px 0;
    }
    
    .maharaj-name {
        font-size: 26px;
    }
    
    .maharaj-designation {
        font-size: 14px;
    }
    
    .maharaj-description {
        font-size: 14px;
    }
    
    .maharaj-features li {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .maharaj-name {
        font-size: 24px;
    }
    
    .maharaj-description {
        font-size: 13px;
    }
    
    .maharaj-features li {
        font-size: 13px;
        padding-left: 20px;
    }
}



/* Updated Slick Button - Smaller & Better */
.view-gallery-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #C1121F 0%, #FF6B35 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
    position: relative;
    overflow: hidden;
}

.view-gallery-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.view-gallery-btn:hover::before {
    left: 100%;
}

.view-gallery-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.view-gallery-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.view-gallery-btn:hover i {
    transform: translateX(3px);
}
