  :root {
            --primary-color: #AA8453; /* Deep maroon/rust color */
            --secondary-color: #fdf9f3; /* Light beige/cream */
            --accent-color: #D4AF37; /* Gold accent */
            --text-dark: #333333;
            --text-light: #666666;
            --light-bg: #f7f5f2;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-color);
        }
      .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
       /* .section-padding {
            padding: 80px 0;
        }*/

        
        /* Scale Animation */
        @keyframes scaleUp {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        @keyframes iconScale {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }
        
        @keyframes smoothScale {
            0% { transform: scale(1); }
            100% { transform: scale(1.05); }
        }
        
        /* Image Hover Effects */
        img {
            transition: transform 0.3s ease;
        }
        
        img:hover {
            animation: scaleUp 0.5s ease-in-out;
        }
        
        .room-image img:hover {
            transform: scale(1.1);
            transition: transform 0.5s ease;
        }
        
        /* Icon Hover Effects */
        .feature-icon:hover,
        .facility-icon:hover,
        .corporate-icon:hover,
        .landmarks-list i:hover,
        .long-stay-features i:hover,
        .medical-facility i:hover {
            animation: iconScale 0.4s ease-in-out;
            color: var(--accent-color);
        }
        
        /* Amenity Tag Hover */
        .amenity-tag:hover {
            animation: smoothScale 0.3s ease-in-out;
            background-color: var(--primary-color);
            color: white;
        }
        
        /* Guest Type Hover */
        .guest-type:hover {
            animation: smoothScale 0.3s ease-in-out;
            background-color: var(--primary-color);
            color: white;
        }
        
        /* Button Hover Effects */
        .btn:hover {
            animation: smoothScale 0.3s ease-in-out;
        }

        .sec-textt > span > h3{
            font-size: 28px;
            color: black;
            margin-bottom: 48px;
        }

        .sec-textt > span > h3:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        /* Hero Section */
        #hero-banner {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://picsum.photos/seed/khanna-residency-hero/1920/1080.jpg');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            font-weight: 300;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #6D0E2C;
            transform: translateY(-3px);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        /* About Section */
        #about-section {
            background-color: var(--secondary-color);
        }
        
        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
         .about-text > p{
            text-align: center;
         }
        .about-image {
            flex: 1;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            border-radius: 8px;
        }
        
        /* Why Choose Section */
        #why-choose-section {
            background-color: white;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature-item {
            text-align: center;
            padding: 20px;
            background-color: #f7f5f2;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-block;
        }
        
        .feature-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        /* Location Section */
        #location-section {
            background-color: var(--light-bg);
        }
        
        .location-content {
            display: flex;
            gap: 50px;
            align-items: center;
        }
        
        .location-map {
            flex: 1;
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .location-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .location-info {
            flex: 1;
        }
        
        .landmarks-list {
            list-style-type: none;
            margin-top: 20px;
        }
        
        .landmarks-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        
        .landmarks-list i {
            color: var(--primary-color);
            margin-right: 10px;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        /* Rooms Section */
        #rooms-section {
            background-color: white;
        }
        
        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: -168px;
        }
        
        .room-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .room-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .room-image {
            height: 200px;
            overflow: hidden;
        }
        
        .room-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .room-card:hover .room-image img {
            transform: scale(1.1);
        }
        
        .room-details {
            padding: 20px;
        }
        
        .room-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .room-amenities {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 15px;
        }

        .room-amenities  {
            display: flex;
            flex-wrap: wrap;
            margin-top: 15px;
        }
        .padd{
            margin-top: -128px;
            margin-bottom: 58px;
        }
        
        .amenity-tag {
            background-color: var(--secondary-color);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--text-dark);
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-block;
        }
        
        /* Long Stay Section */
        #long-stay-section {
            background-color: var(--secondary-color);
        }
        
        .long-stay-content {
            display: flex;
            gap: 50px;
            align-items: center;
        }
        
        .long-stay-image {
            flex: 1;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .long-stay-image img {
            width: 100%;
            border-radius: 8px;
        }
        
        .long-stay-details {
            flex: 1;
        }
        
        .long-stay-features {
            list-style-type: none;
            margin-top: 20px;
        }
        
        .long-stay-features li {
            padding: 10px 0;
            display: flex;
            align-items: center;
        }
        
        .long-stay-features i {
            color: var(--primary-color);
            margin-right: 10px;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        /* Corporate Section */
        #corporate-section {
            background-color: white;
        }
        
        .corporate-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(308px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .corporate-feature {
            background-color: var(--light-bg);
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .corporate-feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .corporate-icon {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-block;
        }

        .corporate-feature > h3{
            font-size: 28px;
        }

        .corporate-feature > h3 > p{
            font-size: 18px;
        }
        
        /* Medical Section */
        #medical-section {
            background-color: var(--secondary-color);
        }
        
        .medical-content {
            display: flex;
            gap: 50px;
            align-items: center;
        }
        
        .medical-image {
            flex: 1;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .medical-image img {
            width: 100%;
            border-radius: 8px;
        }
        
        .medical-details {
            flex: 1;
        }
        
        .medical-facilities {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 20px;
        }
        
        .medical-facility {
            display: flex;
            align-items: center;
        }
        
        .medical-facility i {
            color: var(--primary-color);
            margin-right: 10px;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        /* Facilities Section */
        #facilities-section {
            background-color: white;
        }
        
        .facilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .facility-item {
            text-align: center;
            padding: 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .facility-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .facility-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-block;
        }
        
        /* Who We Serve Section */
        #who-we-serve-section {
            background-color: var(--secondary-color);
        }
        
        .guest-types {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 50px;
        }
        
        .guest-type {
            background-color: white;
            padding: 15px 25px;
            border-radius: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-block;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .about-content,
            .location-content,
            .long-stay-content,
            .medical-content {
                flex-direction: column;
            }
            
            .medical-facilities {
                grid-template-columns: 1fr;
            }
        }