body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  background-color: #f5f5f5;
  color: #333;
}

/* Navbar Wrapper */
.navbar {
  background-color: #ff9800;
  color: white;
  position: relative;
  top: 0;
  z-index: 1000;
  padding: 5px 20px;
  transition: top 0.4s ease-in-out;
}

/* Slogan Always at Top & Center */
.slogan {
  text-align: center;
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 16px;
}

/* Main Navbar Row */
.main-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Area */
.logo-container {
  display: flex;
  align-items: center;
}
.logo {
  width: 65px;
  height: 65px;
  margin-right: 10px;
}
.firm-name {
  font-weight: bold;
  font-size: 18px;
  white-space: nowrap;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 20px;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #0b3d91;
}

/* Hamburger Menu Button */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .firm-name {
    display: none; /* Hide firm name on mobile */
  }

  .menu-toggle {
    display: block; /* Show hamburger */
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #ff9800;
    text-align: center;
    margin-top: 10px;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
  }
}




/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  background: url("img/Landing.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(11, 61, 145, 0.3);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.btn {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.call { background-color: #ff9800; }
.whatsapp { background-color: #25d366; }

/* About Section */
.about-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  max-width: 1370px;
  margin: 40px auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
}
.about-text {
  flex: 1;
  min-width: 300px;
}
.about-image {
  flex: 1;
  min-width: 300px;
}
.about-image img {
  width: 100%;
  border-radius: 10px;
}

.section, .about-section{
    margin: 50px;
}

.market-section, .service-section, .contact-section{
  background: white;
  padding: 20px;
  border-radius: 10px;
}

h2{
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    margin-top: 10px;
  }
  .nav-links a {
    display: inline-block;
    margin: 5px 10px 0 0;
  }
  .about-section {
    flex-direction: column;
    text-align: center;
  }
  .about-image img {
    max-width: 90%;
    margin: auto;
  }
}

.rates-grid{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-top: 30px;
}


/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}
.service-card {
  background-color: #f8f9fa;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  transition: 0.3s;
}
.service-card:hover {
  background-color: #ff9800;
  color: white;
}
.service-card i {
  font-size: 40px;
  color: #0b3d91;
  margin-bottom: 10px;
}
.service-card:hover i {
  color: white;
}

/* Market Form */
.market-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.market-form input, .market-form button {
  padding: 10px;
  font-size: 16px;
}
.market-form button {
  background-color: #0b3d91;
  color: white;
  border: none;
  cursor: pointer;
}
.market-form button:hover {
  background-color: #ff9800;
}


/* Contact Section Layout */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}
.contact-info {
  flex: 1;
  min-width: 250px;
}
.contact-info p, .contact-info a {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.contact-form {
  flex: 1;
  min-width: 280px;
}
.contact-form form {
  display: flex;
  flex-direction: column;
}
.contact-form label {
  margin-top: 10px;
  font-weight: bold;
}
.contact-form input, 
.contact-form textarea {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.contact-form button {
  margin-top: 15px;
  background-color: #ff9800;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}
.contact-form button:hover {
  background-color: #e68a00;
}

.phone ul li a{
  text-decoration: none;
}


/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background-color: #333;
  color: white;
}

/* Responsive */
@media (max-width: 600px) {
  .hero {
    padding: 30px 10px;
  }
  header nav a {
    display: block;
    margin: 5px 0;
  }
}