* {
	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;
	min-height:70px;
}
.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);
}


.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-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 {
    position: absolute;
    top: 18px;
    left: 22px;
    width: 12px;
    height: 10px;
    background: white;
   
}


.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; 
}

.bottom-line {
   width: 100%;
    height: 2px;
    background-color: #ffffff;
    margin-top: 2px;
}

/* HEADER */
.about-header {
	background: #1F3A93;
	color: white;
	text-align: center;
	padding: 80px 20px;
}

.about-header h1 {
	font-size: 40px;
	margin-bottom: 10px;
}
/* ================= ABOUT SECTION ================= */

.about-section {
    padding: 70px 10%;
    background: #f8f9fa;
}

/* TITLE */
.about-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: #1F3A93;
    margin-bottom: 10px;
}

.underline {
    width: 80px;
    height: 3px;
    background: #ff4d5a;
    margin: 0 auto 50px;
    border-radius: 5px;
}

/* CONTAINER */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/* IMAGE */
.about-image {
    flex: 1;
     display: flex;
    justify-content: center;
}

.about-image img {
width: 100%;
    max-width: 620px;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* TEXT */
.about-text {
    flex: 1;
     max-width: 500px;
}

.about-text p {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* POINTS */
.about-points {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.about-points ul {
    list-style: none;
    padding: 0;
}

.about-points li {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;

}

/* RED DOT */
.about-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff4d5a;
    font-size: 18px;
}


/*vision */
.vision-mission{
padding:80px 10%;
background:#f8f9fa;
}

.vm-container{
display:flex;
gap:40px;
justify-content:center;
flex-wrap:wrap;
}

/* CARD */
.vm-card{
background:#fff;
width:420px;        /* 200px ऐवजी */
border-radius:12px;
overflow:hidden;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.3s;
padding-bottom:20px;
}

.vm-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* IMAGE 
.vm-image{
width:50%;
height:200px;
}
*/
.vm-image img{
width:100%;
height:160px;   /* 220 → 160 */
object-fit:cover;
display:block;
}

/* CONTENT */
.vm-content{
display:flex;
flex-direction:column;   /* side ऐवजी vertical */
align-items:flex-start;
gap:10px;
padding:20px 25px;
}

.vm-content i{
font-size:28px;
color:#27AE60;
margin-bottom:10px;
}

.vm-content h3{
font-size:22px;
margin-bottom:8px;
color:#1F3A93;
}

.vm-content p{
line-height:1.7;
margin-bottom:12px;
color:#555;
font-size:14px;
text-align:justify;
}
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;
    }
    .about-section {
        padding: 40px 10px;
    }

    .about-container {
        flex-direction: column;
        gap: 25px;
    }

    .about-image {
        width: 100%;
    }

    .about-image img {
        width: 100%;
        height: auto; /* Maintain aspect ratio */
        max-width: 100%;
    }

    .about-text {
        max-width: 100%;
        text-align: center;
    }

    .about-text p {
        font-size: 16px; /* Reduce font for mobile */
        line-height: 1.6;
    }

    .about-points {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .about-points li {
        font-size: 13px;
        padding-left: 0;
    }
.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) {

    .about-container {
        flex-direction: column;
        gap: 40px;
        padding: 30px 10%;
    }

    .about-image img {
        width: 100%;
        height: auto;
    }

    .vm-container {
        flex-direction: column;
        gap: 30px;
    }

    .vm-card {
        width: 100%;
    }

    .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;
    }
     .about-section {
        padding: 50px 5%;
    }

    .about-container {
        flex-direction: column;
        gap: 35px;
    }

    .about-image img {
        width: 100%;
        height: auto;
    }

    .about-text p {
        font-size: 18px;
        line-height: 1.7;
    }

    .about-points {
        gap: 25px;
    }

    .about-points li {
        font-size: 14px;
    }

}


/* Desktops (769px and above) */
@media only screen and (min-width: 769px) {

    .about-container {
        flex-direction: row;
        padding: 70px 10%;
    }

    .about-image img {
        width: 100%;
        height: 420px;
    }

    .vm-container {
        flex-direction: row;
    }

    .vm-card {
        width: 420px;
    }

    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }

}

