    
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #0a4a6a;
            --secondary: #f8b500;
            --accent: #e63946;
            --light: #f1faee;
            --dark: #1d3557;
            --text: #333;
            --gray: #6c757d;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: #f9f9f9;
            color: var(--text);
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background: rgba(10, 74, 106, 0.95);
   height: 70px;
    color: #fff;
    position: fixed;
    width: 100%;
    z-index: 1000;
            transition: background 0.3s;
        }

        header.scrolled {
            background: rgba(10, 74, 106, 0.98);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
       
.logo a{color:#fff;text-decoration:none;}

        .logo i {
            color: var(--secondary);
            margin-right: 10px;
        }

        .nav-links {
            display: flex;
            list-style: none;
			  padding-top:18px;
        }

        .nav-links li {
            margin-left: 25px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size:17px;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--secondary);
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Slider Section */
        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
            
        }

        .slides {
            display: flex;
            width: 400%;
            height: 100%;
            transition: transform 0.8s ease-in-out;
        }

        .slide {
            width: 25%;
            height: 100%;
            position: relative;
        }

        .slide-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            background: rgba(10, 74, 106, 0.5);
            padding: 0 20px;
        }

        .slide-content h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s forwards 0.5s;
        }

   .slide-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s forwards 0.5s;
        }

        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s forwards 0.7s;
        }

        .btn {
            display: inline-block;
            background: var(--secondary)!important;
            color: var(--dark);
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s forwards 0.9s;
            margin-top: 20px;
        }

        .btn:hover {
            background: #e6a500;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

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

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgb(181 181 181 / 50%);
            cursor: pointer;
            transition: background 0.3s;
        }

        .slider-dot.active {
            background: var(--secondary);
        }

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

        .arrow {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            backdrop-filter: blur(5px);
        }

        .arrow:hover {
            background: var(--secondary);
            color: var(--dark);
        }

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

        /* Section Styles */
        section {
            padding: 70px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary);
            font-size: 2.2rem;
            position: relative;
        }
#rooms a{text-decoration:none;}

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--secondary);
            margin: 15px auto;
            border-radius: 2px;
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--gray);
            font-size: 17px;
        }

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

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

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

        /* Facilities Section */
        .facilities {
            background-color: var(--light);
        }

        .facilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .facility-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
                font-size: 15px;
        }

        .facility-card:hover {
            transform: translateY(-10px);
        }

        .facility-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .facility-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

/* Hover Effect: Background color change */
.facility-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.facility-card:hover {
    background-color: var(--primary-light); /* Light background color */
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.facility-card h3,
.facility-card p {
    color: var(--primary-dark);
}


        /* Rooms Section */
        .rooms-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .room-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
                font-size: 17px;
        }

        .room-card:hover {
            transform: translateY(-10px);
        }

        .room-img {
            height: 300px;
            width: 100%;
            object-fit: cover;
        }

        .room-info {
            padding: 20px;
        }

        .room-name {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .room-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 15px;
        }

        .room-features {
            list-style: none;
            margin-bottom: 20px;
        }

        .room-features li {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }

        .room-features i {
            color: var(--secondary);
            margin-right: 10px;
        }

       
/* Hover effect */
.room-card:hover {
    transform: translateY(-10px) scale(1.05);  /* Card lifts and scales */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);  /* Deepened shadow */
}


        /* How to Reach Section */
       /* Reach Section */
.reach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.reach-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s, background-color 0.3s;
}

.method:hover {
    transform: translateY(-5px); /* Lift effect */
    background-color: var(--light); /* Light background on hover */
}

.method-icon {
    font-size: 1.5rem;
    color: var(--primary);
    background: var(--light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s, background-color 0.3s;
}

.method-icon:hover {
    transform: scale(1.2); /* Scale effect on hover */
    background-color: var(--primary); /* Change background on hover */
    color: #fff; /* White icon on hover */
}

.method-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.method-info p {
    font-size: 16px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.map-container:hover {
    transform: scale(1.05);  /* Slight zoom-in effect */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);  /* Deeper shadow */
}

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

       
/* Services Section */
.services {
    background-color: var(--light);
    padding: 50px 0; /* Optional: Adds padding to the section */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 16px;
}

.service-card:hover {
    transform: translateY(-10px); /* Card lift effect */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Deeper shadow on hover */
    background-color: var(--primary-light); /* Slight background color change on hover */
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: transform 0.3s, color 0.3s; /* Smooth icon scaling and color change */
}

.service-card:hover .service-icon {
    transform: scale(1.2); /* Icon scales up on hover */
    color: #f8b500; /* Icon color change on hover */
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
    transition: color 0.3s;
}

.service-card:hover h3 {
    color: #f8b500; /* Title color change on hover */
}

.service-card p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.5;
    transition: color 0.3s;
}

.service-card:hover p {
    color: var(--primary); /* Change paragraph text color on hover */
}



        

        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            height: 250px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

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

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(10, 74, 106, 0.8);
            color: white;
            padding: 10px;
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }



   /* Testimonials Section */
.testimonials {
    background: linear-gradient(rgba(10, 74, 106, 0.9), rgba(10, 74, 106, 0.9)), url('https://images.unsplash.com/photo-1551632811-561732d1e306?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 50px 0;
}

.testimonials .section-title {
    color: white;
}

.testimonials .section-title::after {
    background: var(--secondary);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s, box-shadow 0.3s ease, background-color 0.3s;
}

/* Hover Effect for Testimonial Cards */
.testimonial-card:hover {
    transform: translateY(-10px); /* Lift the card */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* Stronger shadow */
    background: rgba(255, 255, 255, 0.15); /* Slightly brighter background */
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    font-size: 16px;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--secondary);
    position: absolute;
    top: -15px;
    left: -20px;
    opacity: 0.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    transition: color 0.3s ease; /* Smooth color transition */
}

/* Hover Effect for Author's Name */
.testimonial-card:hover .author-info h4 {
    color: #f8b500; /* Change text color of author on hover */
}

.author-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--secondary);
    transition: transform 0.3s ease; /* Icon scaling effect */
}

/* Hover Effect for Author's Image */
.testimonial-card:hover .author-img {
    transform: scale(1.1); /* Slightly scale up the author image */
}



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

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
                font-size: 17px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-icon {
            font-size: 1.2rem;
            color: var(--primary);
            background: var(--light);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-details h3 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--primary);
        }

        .contact-form {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--primary);
        }

        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }

        .form-control:focus {
            border-color: var(--primary);
            outline: none;
        }

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


        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 30px 0 1px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
                font-size: 16px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }

.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);}

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

.footer-links li {
    margin-bottom: 15px; /* More space between items */
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

/* Icon styling */
.footer-links i {
    margin-right: 10px;
    color: var(--secondary);
    width: 20px;
    transition: color 0.3s ease;
}

/* Link styling */
.footer-links a {
    color: #ddd;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

/* Hover effect for links */
.footer-links a:hover {
    color: var(--secondary);
    padding-left: 10px; /* Slide the link slightly to the right */
}

/* Hover effect for icons */
.footer-links a:hover i {
    color: var(--secondary); /* Change icon color when hovered */
}

/* Hover effect for list items */
.footer-links li:hover {
    transform: translateX(5px); /* Slide the list item slightly to the right on hover */
}




.footer-column h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}


        .footer-contact {
            list-style: none;
        }

        .footer-contact li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .footer-contact i {
            margin-right: 10px;
            color: var(--secondary);
            width: 20px;
            margin-top: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
                background: rgb(15 78 109);
            border-radius: 50%;
            color: white;
            transition: background 0.3s;
        }

        .social-links a:hover {
            background: var(--secondary);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
            font-size: 16px;
        }
       
        .copyright a{color: #fff;text-decoration: none;}
        .copyright a:hover {color: #f8b500;}


        /* Responsive Design */
        @media (max-width: 992px) {
            .about-content, .reach-content, .contact-content {
                grid-template-columns: 1fr;
            }
            
            .about-image, .map-container {
                order: -1;
            }
            
            .slide-content h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 50px;
                left: 0;
                right: 0;
                background: var(--primary);
                flex-direction: column;
                padding: 20px;
                text-align: center;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
            }
			header{height:50px;}
			section{padding: 50px 0}

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 10px 0;
            }

            .mobile-menu {
                display: block;
            }

            .slide-content h1 {
                font-size: 2.2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }
            
            .slider-arrows {
                display: none;
            }
			.about-text h3{text-align:center;}
			.about-text p{text-align:center;}
			.rooms-grid {grid-template-columns: 1fr 0fr;gap:0;margin-bottom:20px;}
			.room-img{height:auto;}
			.footer-column h3{text-align:center;}
			.footer-column p{text-align:center;}
			.social-links{display:block;text-align:center;}
			.footer-links{text-align:center;}
			.footer-links li{display:inline-flex;}
			ul{padding-left:0px!important;}
			.hero-slider{height:55vh;}
        }


/*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 Design */
        @media (max-width: 1200px) {
            .container {
                width: 100%;
                margin: 0 10px;
            }
           
            .hero {
                width: calc(100% - 40px);
            }
        }
       
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }
			.main-content{padding-left:0px;padding-right:0px;}
        }
  