        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;

        }
        

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            
            background-color: #f9f2e2;
        }

        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: #f9f2e2;
            backdrop-filter: blur(10px);
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 2px 20px #b3a992;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            
            padding: 0 20px;
        }

         .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            width: 110px;
            height: auto;
            
            object-fit: contain;
        }

        .tagline {
            font-size: 12px;
            color: #666;
            margin-left: 42px;
            margin-top: -5px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 30px;
        }

        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: #2dd4bf;
        }

        .contact-btn {
            background: #FF7F50;
            color: white;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(45, 212, 191, 0.3);
        }

        .book-visit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(45, 212, 191, 0.4);
        }

        .menu-toggle {
        display: none;
        font-size: 28px;
        cursor: pointer;
        color: #333;
        }

        @media (max-width: 768px) {
        .nav-menu {
            position: absolute;
            top: 85px; /* below header */
            right: 0;
            background: #f9f2e2;
            width: 200px;
            flex-direction: column;
            gap: 20px;
            border-radius: 8px;
            padding: 20px;
            display: none; /* hidden by default */
            box-shadow: 0 4px 10px 10px rgba(48, 43, 43, 0.1);
        }

        .nav-menu.show {
            display: flex; 
        }

        .menu-toggle {
            display: block; /* show hamburger on mobile */
        }
        }


       .hero {
    position: relative;
    color: white;
    padding: 120px 0 80px;
    margin-top: 120px;
    background: url('image/view14.jpg') center/cover no-repeat;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* make sure text stays above dark layer */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}


        /* Blog Section */
.blog-section {
    padding: 50px 30px; 
    background-color: #f9f2e2;
    margin: 0 auto;  
    max-width: 1200px;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700; /* bolder for heading */
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px; /* slightly wider for readability */
    margin: 0 auto;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* more flexible */
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.blog-image  {
    height: 200px;
    width: 100%;
    position: relative;
    
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    
    object-fit: cover;   /* keeps aspect ratio while filling */
    border-top-left-radius: 12px; 
    border-top-right-radius: 12px;
    display: block;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap; /* ensures it won’t break on small screens */
    gap: 0.5rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-date {
    color: #e91e63;
    font-weight: 500;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #222;
    line-height: 1.4;
}

.blog-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.read-more {
    color: #e91e63;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #c2185b;
}



.footer {
            background: #1f2937;
            color: white;
            padding: 70px 0 30px;
        }

        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .footer-section h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #2dd4bf;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            display: flex;
            align-items: center;
    gap: 10px;

            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #2dd4bf;
        }

    

        .social-icon {
            width: 40px;
            height: 40px;
            background: #374151;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: #2dd4bf;
            transform: translateY(-2px);
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #9ca3af;
        }
         .footer-section ul li i {
    flex-shrink: 0;
    font-size: 18px;
    color: #2dd4bf;
}

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content h1 {
                margin-top: 25px;
                font-size: 36px;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonial-slider {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            .footer-section{
            font-size: 15px;
             }
        }
