* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI' , Tahoma, Geneva, Verdana, sans-serif;
}
body{
	background: #f9f9f9;  
	color: #333;
}
.top-bar {
	background: #222;
	color: #fff;
	text-align: right;
	font-size: 0.9rem;
	padding: 0.5rem 1rem;
}
.top-bar a {
	color: #fff;
	text-decoration: none;
	margin-left: 5px;
}
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: grey;
	padding: 1rem;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.logo {
	font-size: 1.5rem;
	font-weight: bold;
	color: #007BFF;
}
.nav-links {
	list-style: none;
	display: flex;
	gap: 1rem;
}
.nav-links a {
	text-decoration: none;
	color: black;
	padding: 0.5rem 0.75rem;
	transition: color 0.3s ease;
}
.nav-links a:hover {
	color: #f28c28;
}
.dropdown {
	position: relative;
}
.dropdown-menu {
	display: none;
	position: absolute;
	background: #fff;
	box-shadow: 0 2px 6px rgba(0,0,0,0.2);
	list-style: none;
	padding: 0.5rem 0;
	min-width: 160px;
}
.dropdown:hover .dropdown-menu {
display: block;
}
.dropdown-menu li a {
	display: block;
	padding: 0.5rem 1rem;
	color: #333;
	white-space: nowrap;
}
.showcase {
	position: relative;
	height: 100vh;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.bg-video {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
	z-index: -1;
}
.overlay {
	background: rgba(0,0,0,0.0);
	padding: 2rem;
	border-radius: 12px;
	color: #f28c28;
	max-width: 600px;
	margin: 0 1rem;
}
.overlay h1 {
	font-size: 1.2rem;
	margin-top: 0.5rem;
	color: #f28c28;
	font-weight:bold;
	margin-bottom:15px; 
}
.overlay p {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: blue;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif; 
}
.qoute-form-container {
	background:rgba(0,0,0,0.0);
	color: #333;
	padding: 1.5rem;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.qoute-form h2 {
	margin-bottom: 2rem;
	color: #f28c28;
}
.form-group {
	margin-bottom: 1rem;
}
.form-group input,
.form-group textarea {
	padding: 0.75;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 1rem;
    width: 100%;
}
button {
	padding: 0.75;
	border: none;
	background: #f28c28;
	color: #fff;
	font-size: 1rem;
	border-radius: 5px;
	cursor: pointer;
	width: 25%;
	transition: background o.3s ease;
}
 button:hover {
	background: #0056b3;
}
footer {
	background: #222;
	color: #fff;
	text-align: center;
   padding: 1rem;
}
@media (max-width: 768px) {
	.qoute-form-container {
		margin-bottom: 1.5 rem
	}
	 .qoute-form h2 {
		 font-size: 2rem;
	 }

  /* Navbar layout: logo left, menu right stacked vertically */
  .navbar {
    display: flex;
    flex-direction: row;       /* keep logo and menu on same line */
    justify-content: space-between; /* logo left, menu right */
    align-items: flex-start;   /* top-align logo & menu */
    padding: 1rem;
  }

  .logo {
    flex: 0 0 auto;            /* keep logo size fixed */
  }

  .nav-links {
    flex-direction: column;    /* stack links vertically */
    align-items: flex-end;     /* keep them to the right */
    gap: 8px;
  }

  .nav-links a {
    display: block;
    padding: 8px 12px;
    background: #eee;
    border-radius: 4px;
    width: auto;
    color: #222;
    font-size: 1rem;
  }

	.overlay h1 {
		font-size: 2rem;
	}
	.overlay p {
		font-size: 1rem;
	}
	.qoute-form h2 {
		padding: 1rem;
	}
}
.social-icons {
	position: absolute;
	top: 1.5rem;
	left: 1.5rem;
	display: flex;
	gap: 1.1rem;
	z-index: 10;
}
.social-icons a {
	color: none;
	font-size: 1.4rem;
	transition: color 0.3s;
	background: none;
	padding: 0.3rem;
}
.whatsapp-icon i {
	color: white;
	background: green;
	border-radius: 20%;
	font-size: 35px;
}
.facebook-icon i {
	color: white;
	background: blue;
	border-radius: 20%;
	font-size: 35px;
}
.tiktok-icon i {
	color: white;
	background: black;
	font-size: 35px;
	border-radius: 20%;
}
.search-button {
	position: absolute;
	bottom: 1.5rem;
	right:1.5rem;
	display: flex;
	align-items: center;
	background: rgba(255,255,255,0.15);
	padding: 0.4rem 0.6rem;
	border-radius: 30px;
	backdrop-filter: blur(5px);
}
.search-button input {
	border: none;
	background: transparent;
	color: #007BFF;
	padding: 0.3rem;
	outline: none;
	width: 60px;
	font-size: 1.1rem;
}
.search-button button {
	background: transparent;
	border: none;
	color: #f28c28;
	cursor: pointer;
	font-size: 1rem;
	padding-left: 0.5rem;
	transition: color 0.3s;
}
.search-buttom button:hover {
	color: #B8860B;
}
.about-us {
	background: #e8dccb;
	padding: 4rem 2rem;
}
.about-us .container {
	max-width: 1100px;
	margin: auto;
}
.about-us h3 {
	text-align: center;
	font-size: 1.5rem;
	margin-bottom: 2rem;
	color: #f28c28;
	font-family: sans-serif;
}
.about-content {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
	justify-content: center;
}
.about-text {
	flex: 1 1 300px;
	font-size: 1.2rem;
	line-height: 1.6;
	color: #333333;
	font-weight: bold;
}
.about-image {
	flex: 1 1 300px;
}
.about-image img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.our-story {
	background: lightgrey;
	padding: 4rem 2rem;
	text-align: center;
}
.our-story .container {
	max-width: 1000px;
	margin: auto;
}
.our-story h4 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	color: #f28c28;
	font-family: sans-serif;
}
.our-story p {
	font-size: 1.2rem;
	color: #333333;
	margin-bottom: 2.2rem;
	line-height: 1.6;
	font-weight: bold;
}


.form-group input:focus,
.form-group textarea:focus {
  border-color: #FFFDDO;
  outline: none;
}


@media (max-width: 480px) {
  .quote-form-container {
    padding: 1rem;
  }

  button {
    font-size: 0.95rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.95rem;
  }
}
