@charset "UTF-8";
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

/* 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 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;
}


.nav-links li a {
	text-decoration: none;
	color: white;
	padding: 8px 12px;
	transition: all 0.3s ease;
}

.nav-links li a:hover {
	
	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;
   
}

/* 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; 
}


.bottom-line {
   width: 100%;
    height: 2px;
    background-color: #ffffff;
    margin-top: 2px;
}


.services-section{
padding:80px 10%;
background:#f8f9fa;
text-align:center;
}

.services-section h2{
font-size:34px;
color:#1F3A93;
margin-bottom:10px;
}

.subtitle{
color:#555;
margin-bottom:50px;
}

.services-container{
display:flex;
flex-wrap:wrap;
gap:30px;
justify-content:center;
}

/* CARD DESIGN */

.service-card{
background:white;
width:300px;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* ICON */

.service-card i{
font-size:35px;
color:#27AE60;
margin-bottom:15px;
}

.service-card h3{
color:#1F3A93;
margin-bottom:10px;
}

.service-card p{
font-size:14px;
color:#666;
line-height:1.6;
}
/* FOOTER */
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;
}


/* WHY USE WEBSITE */
.why-section {
	padding: 70px 40px;
	background: #f6f8fb;
	text-align: center;
}
/* ================= MEDIA QUERIES ================= */

/* ================= MOBILE (max-width: 480px) ================= */
@media only screen and (max-width: 480px) {

    /* NAVBAR */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-container {
        margin-right: auto;
    }

    .hamburger {
        display: block;
        font-size: 26px;
        color: white;
        cursor: pointer;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        width: 220px;
        background: #2B3D5B;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
        display: none;
        box-shadow: -2px 0 8px rgba(0,0,0,0.2);
        margin: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        padding: 12px 20px;
        text-align: left;
    }

    /* SERVICES SECTION */
    .services-section {
        padding: 40px 20px;
        text-align: center;
    }

    .services-section h2 {
        font-size: 26px;
    }

    .subtitle {
        font-size: 14px;
    }

    .services-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .service-card {
        width: 100%;
        padding: 20px;
    }

    /* FOOTER */
    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .footer-map iframe {
        width: 100%;
        height: 180px;
    }

    .footer-bottom {
        font-size: 13px;
        padding: 15px 0;
    }
}


/* ================= TABLET (481px - 768px) ================= */
@media only screen and (min-width: 481px) and (max-width: 768px) {

    .services-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ================= DESKTOP (769px+) ================= */
@media only screen and (min-width: 769px) {

    .services-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
}