/* Reset */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
  box-sizing: border-box;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #ffffff;
  color: #333333;
  line-height: 1.6;
}
h1,h2,h3,h4,h5,span,p,a{
  font-family: "Montserrat", sans-serif !important;

}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.hero-logo {
  text-align: center;
  margin-bottom: 20px;
}

.hero-logo img {
  max-width: 220px;
  height: auto;
  display: inline-block;
}

/* Navigation */
nav {
  background-color: #1e1e1e;
  padding: 10px 0;
  border-bottom: 1px solid #333;
}

.nav-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.nav-inner a {
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  padding: 10px;
  transition: 0.3s ease;
}

.nav-inner a:hover {
  color: #b30000;
}

.book-btn {
  background-color: #b30000;
  color: white !important;
  padding: 10px 18px;
  border-radius: 5px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 40vh;
  background-image: url("../images/homepage.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 60px 20px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: white;
}

.hero-overlay h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 1.2rem;
  max-width: 800px;
}

.hero-btn {
  display: inline-block;
  background-color: #b30000;
  color: white;
  padding: 12px 24px;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 5px;
}

/* Section */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  color: #b30000;
  margin-bottom: 20px;
}

.section p {
  max-width: 800px;
  margin: 0 auto 20px auto;
}

.quote-btn {
  background-color: #b30000;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
}

/* Split Layout */
.split-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.text-column {
  flex: 1 1 500px;
}

.image-column {
  flex: 1 1 400px;
}

.image-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.carousel-item {
  min-width: 320px;
  height: 420px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.carousel-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}

.carousel-item p {
  font-weight: 500;
  padding-top: 5px;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #b30000;
  color: white;
  border: none;
  font-size: 1.5rem;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.carousel-button:hover {
  opacity: 1;
}

.carousel-button.left {
  left: 0;
}

.carousel-button.right {
  right: 0;
}

/* Finance Form */
.finance-box {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.finance-box h2 {
  margin-top: 0;
  text-align: center;
}

.finance-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 200px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  text-align: left;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

textarea {
  resize: vertical;
}

.form-radio {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.form-radio input {
  margin-right: 0.3rem;
}

button[type="submit"] {
  width: fit-content;
  padding: 10px 24px;
  background-color: #b30000;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  align-self: center;
  cursor: pointer;
}

/* Footer */
footer {
  background-color: #1e1e1e;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-column {
  flex: 1 1 250px;
  margin-bottom: 20px;
}

.footer-column h4 {
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
  padding-left: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  opacity: 0.8;
  border-top: 1px solid #fff3;
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-inner {
    flex-direction: column;
    align-items: center;
  }

  .carousel-track {
    gap: 15px;
  }

  .carousel-item {
    min-width: 260px;
    height: auto;
  }

  .carousel-button {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .split-layout {
    flex-direction: column;
  }
}



/* new code */


  .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fff !important;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 10;
}

.hero-logo img {
  max-height: 50px;
}

/* Nav links */
.nav-inner {
  display: flex;
  gap: 1.5rem;
}

.nav-inner a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s;
  font-size: 20px !important;
}

.nav-inner a:hover {
  color: #b30000;
}
.hero-logo{

  margin-bottom: 0px !important;

}
.hero-logo img{

  max-height: 100px !important;
}
.book-btn {
  background-color: #b30000;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

/* Hamburger button - hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 3px;
  transition: 0.3s ease;
}
@media (min-width:767px){
nav{

  background-color: transparent !important;
  border: unset !important;
}
.navbar{

  max-width: 1160px !important;
  margin: auto !important;
}
}

nav{

border: unset !important;
}
/* MOBILE STYLES */
@media (max-width: 768px) {
  .footer-bottom{

    margin-top: 0px !important;
  }
  .section{

    padding: 30px 20px !important;
  }
  .footer-column{
flex: unset !important;

  }
  .hamburger {
    display: flex;
  }
  .nav-inner a{

text-align: center;
margin-bottom: 0px !important;
}
.hero{

  height: 70vh !important;
}
.image-column{

  flex: unset !important;
}
  .nav-inner {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 1rem 2rem;
    display: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    animation: slideDown 0.3s ease-out;
  }

  .nav-inner.show {
    display: flex;
  }

  .nav-inner a {
    margin-bottom: 1rem;
    width: 100%;
  }
}

/* Optional animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
