      :root {
            --primary: #c19a6b;
            --primary-dark: #a67c52;
            --secondary: #2c3e50;
            --light: #f8f9fa;
            --dark: #343a40;
            --gray: #6c757d;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        section {
            padding: 60px 0;
        }
        
        h1, h2, h3, h4 {
            margin-bottom: 15px;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary);
        }
        
        p {
            margin-bottom: 15px;
        }
        
        .btn1 {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            font-size: 16px;
        }
        
        .btn1:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: var(--transition);
        }
        
        .header-scrolled {
            background-color: white;
            padding: 10px 0;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            text-decoration: none;
			padding-bottom: 10px;
    padding-top: 2px;
        }
        
        .logo span {
            color: var(--primary);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
			padding-top: 12px;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            font-size: 16px;
        }
        
        .nav-menu a:hover {
            color: var(--primary);
        }
        
        .nav-menu a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }
        
        .nav-menu a:hover:after {
            width: 100%;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
        }
        
        /* Hero Slider */
        /* General Styles for the Slider */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
	
}

.slider-container {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center center;
}

.slide.active {
    opacity: 1;
}

/* Background images with black overlay */
.slide:nth-child(1) {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
}

.slide:nth-child(2) {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1584132967334-10e028bd69f7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
}

.slide:nth-child(3) {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1611892440504-42a792e24d32?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
}

.slide-content {
    max-width: 800px;
    padding: 20px;
    text-align: center;
    z-index: 2;
}

.slide h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.slide p {
    font-size: 17px;
    margin-bottom: 30px;
}

.hero-btns1 {
    margin-top: 20px;
}

.btn1-hero {
    margin: 0 10px;
    padding: 10px 20px;
    background-color: #c19a6b;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn1-hero:hover {
    background-color: #9b7649;
}

.btn1-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn1-outline:hover {
    background-color: white;
    color: #282828;
}

/* Navigation Arrows */
.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.slider-arrow:hover {
    background-color: rgba(255,255,255,0.8);
}

/* Navigation Dots */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.slider-dot.active {
    background-color: white;
    transform: scale(1.2);
}
        
        /* About Section */
        .about {
            background-color: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .about-bg-shape {
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background-color: rgba(193, 154, 107, 0.1);
            border-radius: 50%;
            z-index: 0;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
            position: relative;
            z-index: 1;
			margin-top: 50px;
        }
        .about-content h3{font-size: 22px;}
        .about-content p{font-size: 16px;
    text-align: justify;}
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-image:before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100px;
            height: 100px;
            border: 5px solid var(--primary);
            z-index: -1;
            opacity: 0.5;
        }
        
        .about-image:after {
            content: '';
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            border: 5px solid var(--primary);
            z-index: -1;
            opacity: 0.5;
        }
        
        .about-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(0,0,0,0.1);
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            display: block;
        }
        
        .stat-text {
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        /* Facilities Section */
        .facilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
			margin-top:50px;
        }
        
        .facility-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            position: relative;
        }
        
        .facility-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .facility-img {
            height: 200px;
            overflow: hidden;
        }
        
        .facility-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .facility-card:hover .facility-img img {
            transform: scale(1.1);
        }
        
        .facility-content {
            padding: 20px;
        }
        
        .facility-content h3 {
            color: var(--secondary);
                font-size: 19px;
        }
        .facility-content p{font-size: 16px;}
        
        /* Rooms Section */
        .rooms {
            background-color: var(--light);
        }
        
        .rooms-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
			margin-top:50px;
        }
        
        .room-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        
        .room-card:hover {
            transform: translateY(-10px);
        }
        
        .room-img {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .room-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .room-card:hover .room-img img {
            transform: scale(1.1);
        }
        
        .room-price {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background-color: var(--primary);
            color: white;
            padding: 8px 15px;
            border-radius: 4px;
            font-weight: 600;
        }
        
        .room-content {
            padding: 20px;
        }
        
        .room-content h3 {
            color: var(--secondary);
            font-size: 20px;
        }

        .room-content p{font-size: 17px;}
        
        .room-features {
            display: flex;
            justify-content: space-between;
            margin: 15px 0;
        }
        
        .room-feature {
            display: flex;
            align-items: center;
        }
        
        .room-feature i {
            color: var(--primary);
            margin-right: 5px;
        }
        
        /* Services Section */
        .services {
            position: relative;
            overflow: hidden;
        }
        
        .services-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1558618047-3c8c76ca7d13?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2128&q=80') no-repeat center center/cover;
            opacity: 0.05;
            z-index: -1;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
			margin-top:50px;
        }
        
        .service-card {
            text-align: center;
            padding: 40px 20px;
            border-radius: 10px;
            transition: var(--transition);
            background-color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background-color: var(--primary);
            transition: var(--transition);
            z-index: -1;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            color: white;
        }
        
        .service-card:hover:before {
            height: 100%;
        }
        
        .service-card:hover .service-icon {
            background-color: rgba(255,255,255,0.2);
        }
        
        .service-card:hover .service-icon i {
            color: white;
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(193, 154, 107, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: var(--transition);
        }
        
        .service-icon i {
            font-size: 35px;
            color: var(--primary);
            transition: var(--transition);
        }

        .service-card h3{font-size: 19px;}
        .service-card p{font-size: 16px;}

        
        /* How to Reach Section */
        .reach {
            background-color: var(--light);
        }
        
        .reach-content {
            display: flex;
            gap: 50px;
            align-items: flex-start;
			margin-top:50px;
        }
        
        .reach-info {
            flex: 1;
        }
        
        .reach-info h3{font-size: 20px;}
        .reach-info p{font-size: 16px;
    text-align: justify;}
        .reach-methods {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .reach-method {
            display: flex;
            gap: 20px;
            padding: 25px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        
        .reach-method:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .method-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(193, 154, 107, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .method-icon i {
            font-size: 25px;
            color: var(--primary);
        }
        
        .method-content h3 {
            margin-bottom: 10px;
            color: var(--secondary);
			font-size: 20px;
        }
        .method-content p{font-size: 16px;}
        
        /* Testimonials Section */
        .testimonials {
            position: relative;
            overflow: hidden;
        }
        
        .testimonials-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1564501049412-61c2a3083791?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1932&q=80') no-repeat center center/cover;
            opacity: 0.05;
            z-index: -1;
        }
        
        .testimonials-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
			    margin-top: 50px;
        }
        
        .testimonials-slider {
            overflow: hidden;
            position: relative;
        }
        
        .testimonials-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .testimonial-card {
            flex: 0 0 100%;
            padding: 0 15px;
            box-sizing: border-box;
        }
        
        .testimonial-content {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            position: relative;
        }
        
        .testimonial-content:before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 80px;
            color: rgba(193, 154, 107, 0.2);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            margin-bottom: 5px;
            color: var(--secondary);
        }
        
        .author-info p {
            margin: 0;
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .testimonials-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }
        
        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .testimonial-dot.active {
            background-color: var(--primary);
            transform: scale(1.2);
        }
        
        /* Gallery Section */
        .gallery {
            background-color: var(--light);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
			margin-top:50px;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 10px;
            position: relative;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay i {
            color: white;
            font-size: 30px;
        }
        
        /* Contact Section */
        .contact {
            position: relative;
            overflow: hidden;
        }
        
        .contact-bg-shape {
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            background-color: rgba(193, 154, 107, 0.1);
            border-radius: 50%;
            z-index: 0;
        }
        
        .contact-content {
            display: flex;
            gap: 50px;
            position: relative;
            z-index: 1;
			margin-top:50px;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-info h3{font-size: 22px;}
        .contact-info h4{font-size: 17px;margin-bottom: 0px;}
        .contact-info p{font-size: 16px;}

        .contact-form {
            flex: 1;
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .contact-item {
            display: flex;
            margin-bottom: 25px;
            align-items: flex-start;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(193, 154, 107, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .contact-icon i {
            color: var(--primary);
            font-size: 20px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            transition: var(--transition);
        }
        
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.2);
        }
        
        textarea.form-control {
            height: 150px;
            resize: vertical;
        }
        
        .contact-map {
            margin-top: 40px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .contact-map iframe {
            width: 100%;
            height: 300px;
            border: none;
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        .footer-content p{font-size: 16px;}
        .footer-column {
            flex: 1;
            margin-right: 30px;
        }
        
        .footer-column:last-child {
            margin-right: 0;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .footer-logo span {
            color: var(--primary);
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 25px;
            position: relative;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;font-size: 15px;
        }
        .footer-links li i{padding-right: 5px;}
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-5px);
        }
        .footer-blogs h3{font-size:30px;text-align:center;padding-top:20px;padding-bottom:20px;}
.footer-blogs{    border-top: 1px solid rgba(255, 255, 255, 0.1);}
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #bbb;
            font-size: 14px;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        

/*Blogs*/
/* Hero Section */
        .hero {
            width: 1164px;
            margin: 0 auto;
            height: 400px;
            background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-1.2.1&auto=format&fit=crop&w=1164&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border-radius: 8px;
            margin-top: 20px;
        }
       
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.4);
            border-radius: 8px;
        }
       
        .hero-content {
            text-align: center;
            color: white;
            z-index: 1;
            max-width: 800px;
            padding: 0 20px;
        }
       
        .hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
       
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
        }
       
        .btn1 {
            display: inline-block;
            padding: 12px 30px;
            background-color: #2c5530;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
       
        .btn1:hover {
            background-color: #1e3a23;
        }
       
        /* Main Content */
        .main-content {
    padding-left: 30px;
    padding-right: 30px;
        }

.main-content h2{ font-size: 28px;
    margin: 30px 0 15px;
    color: #2c5530;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 700!important;}

.main-content p{margin-bottom: 20px;
	font-size: 16px;}

.main-content h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #444;
font-weight:700;}

.u-link li{line-height: 32px;
    font-size: 17px;}
.content-image {
            width: 100%;
            max-width: 1160px;
            height: auto;
            margin: 30px 0;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
       
        /* Box Styles */
        .full-width-box {
            padding: 30px;
            border-radius: 8px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
       
        .whatsapp-box {
            background-color: #25D366;
            color: white;
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s;
        }
       
        .whatsapp-box:hover {
            transform: translateY(-5px);
        }
       
        .tips-box {
            background-color: #ffe6d5; /* Light peach */
        }
       
        .package-box {
            background-color: #e0f7ff; /* Light sky blue */
        }
       
        .offer-box {
            background-color: #e0f7ff; /* Light sky blue */
            text-align: center;
        }
       
        .box h3 {
            margin-top: 0;
            color: #2c5530;
            font-size: 24px;
        }
       
        .box ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }
       
        .box li {
            margin-bottom: 8px;
        }
       
        .green-btn {
            background-color: #25D366;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
            margin-top: 15px;
            font-size: 16px;
        }
       
        .green-btn:hover {
            background-color: #1da851;
        }
       
        /* Contact Section */
        .contact-section1 {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 8px;
            margin-top: 40px;
        }
       
        .contact-info1 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
       
        .contact-item1 {
            display: flex;
            align-items: center;
        }
       
        .contact-item1 i {
            margin-right: 15px;
            font-size: 20px;
            color: #2c5530;
        }
       
        /* Links Section */
        .links-section {
            margin: 40px 0;
            padding: 20px;
            background-color:#ffffff;
            border-radius: 8px;
        }
       
        .links-section a {
            color: #2c5530;
            text-decoration: none;
            font-weight: 500;
        }
       
        .links-section a:hover {
            text-decoration: underline;
        }
       
#dream-line-blog {
    background-color: #f8f9fa !important;
    color: #333 !important;
    line-height: 1.6 !important;
    max-width: 1200px !important;
    margin: 60px auto !important;
    padding: 20px !important;
border: 1px solid #eaeaea;
}

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content, .contact-content, .reach-content {
                flex-direction: column;
            }
            
            .footer-content {
                flex-wrap: wrap;
            }
            
            .footer-column {
                flex: 1 0 50%;
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background-color: white;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.05);
                padding: 20px 0;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .slide h1 {
                font-size: 2.5rem;
            }
            
            .slider-arrows {
                display: none;
            }
            
            .reach-method {
                flex-direction: column;
                text-align: center;
            }
        }
        
        @media (max-width: 576px) {
            .footer-column {
                flex: 1 0 100%;
            }
            
            .slide h1 {
                font-size: 2rem;
            }
            
            .slide p {
                font-size: 1rem;
            }
            
            .hero-btns .btn1 {
                display: block;
                margin: 10px auto;
                width: 80%;
            }
            
            .about-stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .testimonial-content {
                padding: 30px 20px;
            }
        }