        :root {
            --primary: #0c4da2;
            --secondary: #b38a2d;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
        }
        
        body {
            font-family: 'Poppins', sans-serif!important;
            color: #333!important;
            line-height: 1.6!important;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
        }
        
        h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        
        h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 10px 25px;
            font-weight: 500;
        }
        
        .btn-primary:hover {
            background-color: #08367a;
            border-color: #08367a;
        }
        
        .btn-outline-primary {
            color: var(--primary);
            border-color: var(--primary);
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary);
            color: white;
        }
        
        /* Header & Navigation */
        .navbar {
            padding: 15px 0;
            background-color: white !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.8rem!important;
            color: var(--primary) !important;
        }
        
        .nav-link {
            font-weight: 500!important;
            color: var(--dark) !important;
            margin: 0 10px;
            transition: all 0.3s!important;
        }
        
        .nav-link:hover {
            color: var(--primary) !important;
        }
        
        /* Hero Section */
        .hero-slider {
            height: 90vh;
            min-height: 600px;
        }
        
        .carousel-item {
            height: 90vh;
            min-height: 600px;
            background-position: center;
            background-size: cover;
        }
        
        .carousel-caption {
            bottom: 30%;
            text-align: left;
            padding: 0 5%;
        }
        
        .carousel-caption h1 {
            font-size: 3.5rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .carousel-caption h2 {
            font-size: 3.1rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            color:#fff;
        }
        
        .carousel-caption p {
            font-size: 1.2rem;
            max-width: 600px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
        }
        
        /* Section Styling */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
#about{margin-top:60px;}
        
        /* Facilities Section */
        .facility-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .facility-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .facility-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        /* Room Categories */
        .room-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }
        
        .room-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .room-img {
            height: 250px;
            object-fit: cover;
        }
        
        .room-price {
            font-size: 1.5rem;
            color: var(--secondary);
            font-weight: 600;
        }
        
        /* Testimonials */
        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            margin: 15px 0;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--primary);
        }
        
        /* Gallery */
        .gallery-item {
            margin-bottom: 30px;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
        }
        
        .gallery-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .gallery-item:hover .gallery-img {
            transform: scale(1.1);
        }
        
        /* How to Reach */
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        /* Footer */
        footer {
            background-color: #1a1a1a;
            color: white;
            padding: 80px 0 30px;
        }
        
        .footer-title {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: var(--secondary);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links li:before {
            content: "•";
            color: var(--secondary);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
            margin-left: 5px;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: white;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
        }


/*Post*/
  .post-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px;
margin-top: 70px;
}

.wp-block-post-content p{font-size:16px;text-align:justify;line-height:32px;}
.wp-block-post-title{text-align:center;font-size:30px;color:#0c4da2;padding-bottom:20px;}


        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .carousel-caption h1 {
                font-size: 2.8rem;
            }
            
            .carousel-caption {
                bottom: 20%;
            }
            
            .hero-slider, .carousel-item {
                height: 70vh;
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .carousel-caption h1 {
                font-size: 2.2rem;
            }
            
            .carousel-caption p {
                font-size: 1rem;
            }
            
            .hero-slider, .carousel-item {
                height: 60vh;
                min-height: 500px;
            }
        }
        
        @media (max-width: 576px) {
            .carousel-caption {
                text-align: center;
                bottom: 15%;
            }
            
            .carousel-caption h1 {
                font-size: 1.8rem;
            }
            
            .hero-slider, .carousel-item {
                height: 50vh;
                min-height: 400px;
            }
        }
   