@charset "UTF-8";
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial;
}

/* Navbar */
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 40px;
	background: #2B3D5B;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	color:white;
	height:70px;
}
/* HAMBURGER DEFAULT HIDE */
.hamburger {
    display: none;
}
.logo {
	font-size: 28px;
	font-weight: bold;
	color: white;
	display: flex;
	align-items: center;
	gap: 10px;
}
.nav-links {
	display: flex;
	list-style: none;
	gap: 25px;
	margin-left: auto;
	margin-right: 20px;
}

.auth {
	display: flex;
	gap: 10px;
}

.login {
	background: #27AE60;
	color: white;
	border: none;
	padding: 8px 15px;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
}
.login:hover {
	background-color: #ff6677;
	transform: translateY(-2px);
}

/*.login {
	background: transparent;
	border: none;
	margin-right: 10px;
}*/
.nav-links li a {
	text-decoration: none;
	color: white;
	padding: 8px 12px;
	transition: all 0.3s ease;
}

.nav-links li a:hover {
	color: #F39C12; /* Accent color */
	background-color: rgba(255,255,255,0.1);
	border-radius: 5px;
	transform: translateY(-2px);
}
/* Logo Main Container */
.logo-container {
   display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 5px;
}

.logo-box {
position: relative;
    display: flex;
    align-items: flex-end;
    padding-top: 15px;;
}

/* House Outline - हिरवी बॉर्डर */
.house-shape {
    position: absolute;
    top: -5px;
    left: -2px;
    width: 45px;
    height: 35px;
    border-left: 2px solid #ffffff; /* पांढरी बॉर्डर */
    border-top: 2px solid #ffffff;
    clip-path: polygon(0% 100%, 0% 35%, 50% 0%, 100% 35%, 100% 100%, 85% 100%, 85% 45%, 50% 20%, 15% 45%, 15% 100%);
    background-color: #ffffff;
}

/* खिडकी (Window) */
.window {
    position: absolute;
    top: 18px;
    left: 22px;
    width: 12px;
    height: 10px;
    background: white;
   
}

/* Text Styling */
.logo-text-wrapper {
   font-size: 26px;
    font-weight: 800;
    margin-left: 8px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.rent-text {
   color: #ffffff;/* गडद राखाडी */
}

.ify-text {
   color: #a3cf62;
    font-weight: 400; /* 'ify' थोडं बारीक */
}

/* खालची हिरवी लाईन */
.bottom-line {
   width: 100%;
    height: 2px;
    background-color: #ffffff;
    margin-top: 2px;
}
/* BLOG SECTION */

.blog-section{
padding:80px 10%;
background:#f8f9fa;
text-align:center;
}

.blog-title{
font-size:32px;
color:#1F3A93;
margin-bottom:40px;
}

/* CONTAINER */

.blog-container{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
}

/* BLOG CARD */

.blog-card{
width:320px;
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.blog-card:hover{
transform:translateY(-8px);
box-shadow:0 12px 25px rgba(0,0,0,0.15);
}

/* IMAGE */

.blog-card img{
width:100%;
height:200px;
object-fit:cover;
}

/* CONTENT */

.blog-content{
padding:20px;
text-align:left;
}

.blog-content h3{
color:#1F3A93;
margin-bottom:10px;
font-size:20px;
}

.blog-content p{
font-size:14px;
color:#555;
line-height:1.6;
margin-bottom:15px;
}

/* BUTTON */

.read-btn{
display:inline-block;
text-decoration:none;
background:#27AE60;
color:white;
padding:8px 15px;
border-radius:6px;
font-size:14px;
transition:0.3s;
}

.read-btn:hover{
background:#219150;
}
footer {
	background: #2B3D5B;
	color: white;
	padding: 60px 20px 0;
}

.footer-container {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.footer-brand h2 {
	margin-bottom: 15px;
}

.footer-brand p {
	font-size: 14px;
	color: #ddd;
	line-height: 1.6;
}

/* SOCIAL ICONS */
.social-icons {
	margin-top: 15px;
}

.social-icons a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	background: #ffffff20;
	color: white;
	margin-right: 10px;
	font-size: 16px;
	transition: 0.3s;
}

.social-icons a:hover {
	background: #ff4d5a;
	transform: translateY(-3px);
}

/* LINKS */
.footer-links ul {
	list-style: none;
	padding: 0;
}

.footer-links ul li {
	margin-bottom: 10px;
}

.footer-links ul li a {
	text-decoration: none;
	color: #ddd;
	font-size: 14px;
	transition: 0.3s;
}

.footer-links ul li a:hover {
	color: #ff4d5a;
	padding-left: 5px;
}

/* CONTACT */
.footer-contact p {
	font-size: 14px;
	color: #ddd;
}

.footer-bottom {
	text-align: center;
	margin-top: 20px;
	padding: 15px;
	background: #7C8594;
	font-size: 14px;
	width: 100%;
	box-sizing: border-box; /* include padding */
}

.footer-map iframe {
	width: 100%;
	height: 150px;
	border-radius: 10px;
}
/* ================= MEDIA QUERIES ================= */

/* Mobile Devices (max-width: 480px) */
@media only screen and (max-width: 480px) {

    .navbar {
       justify-content: space-between;
        align-items: center;
    }
 .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #2B3D5B;
        flex-direction: column;
        align-items: flex-end; /* <-- center → left */
        gap: 20px;
        padding: 20px;
        display: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        padding: 12px 20px; /* left padding for nice spacing */
    }

    /* SHOW MENU */
    .nav-links.active {
        display: flex;
    }
    /* LOGO LEFT */
    .logo-container {
        margin-right: auto;
    }

    /* HAMBURGER RIGHT */
    .hamburger {
          display: block;
        font-size: 26px;
        color: white;
        cursor: pointer;
    }

    /* MENU HIDDEN */
    .nav-links {
         position: absolute;
        top: 70px;
        right: 0; /* right edge la attach */
        width: 200px; /* menu width fix */
        background: #2B3D5B;
        flex-direction: column;
        align-items: flex-start; /* links left align inside menu */
        gap: 0;
        padding: 10px 0;
        display: none;
        box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    }

    /* SHOW MENU */
    .nav-links.active {
        display: flex;
    }
   
       
.nav-links li a {
        display: block;
        width: 100%;
        padding: 12px 20px; /* spacing inside right menu */
        text-align: left;
    }
     /* Footer container column layout for mobile */
    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center; /* center all text in mobile */
    }

    .footer-brand, 
    .footer-links, 
    .footer-contact, 
    .footer-map {
        text-align: center;
    }

    /* Social icons in column */
    .social-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }

    .social-icons a {
        margin: 0; /* remove extra right margin */
    }

    .footer-map iframe {
        height: 180px;
        margin: 0 auto;
    }

    .footer-bottom {
        text-align: center;
        font-size: 13px;
        padding: 15px 0;
    }

}
    

/* Tablets (481px - 768px) */
@media only screen and (min-width: 481px) and (max-width: 768px) {

   

    .nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-map iframe {
        height: 180px;
    }
     

}


/* Desktops (769px and above) */
@media only screen and (min-width: 769px) {

   

    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }

}


