body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: visible;
}

header {
    background: #333;
    color: #fff;
    padding-top: 5px;
    min-height: 80px;
    border-bottom: #dddddd 3px solid;
    padding-bottom: 10px;
}

header h1 {
    float: left;
    margin: 0;
}

header nav {
    float: right;
    margin-top: 10px;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
/* ── Nav links ── */
.dv-nav { display: flex; align-items: center; gap: 4px; }

.dv-nav .nav-link {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.75);
  padding: 7px 14px;
  border-radius: 5px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all 0.2s ease;
}
.dv-nav .nav-link:hover,
.dv-nav .nav-link.active {
  color: #FF9900;
  border-color: rgba(255,153,0,0.4);
  background: rgba(255,153,0,0.08);
}

/* CTA button */
.dv-nav .dv-cta {
  background: #FF9900 !important;
  color: #0a1628 !important;
  border-color: #FF9900 !important;
  font-weight: 700;
  margin-left: 8px;
}
.dv-nav .dv-cta:hover {
  background: #e68800 !important;
  border-color: #e68800 !important;
}

/* Divider between links and CTA */
.dv-nav-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,153,0,0.3);
  margin: 0 4px;
}

/* ── Sub-strip ── */
.dv-substrip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: #071020;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,153,0,0.15);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.45);
}
.dv-substrip .dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: #FF9900;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.hero {
  background: #dddddd;
  color: #000;
  padding: 0px 0;
  text-align: center;
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}

.slideshow-container {
  position: relative;
  width: 100%; /* Adjust based on your design */
  margin: auto;
}

.mySlides {
  display: none; /* Hide all slides by default */
  text-align: center;
}

.mySlides img {
  display: inline-block;
  margin: auto;
  vertical-align: middle;
}

.prev, .next {
  cursor: pointer;
  position: fixed;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}



.services {
    padding: 20px 0;
    background: #f4f4f4;
    text-align: center;
}

.services h2 {
    margin-bottom: 20px;
}

.service-item {
    margin: 10px 0;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.about {
    padding: 30px 0;
    background: #f4f4f4;
    text-align: center;
}
.about-item {
    margin: 10px 0;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}


.contact {
    padding: 30px 0;
    background: #f4f4f4;
    text-align: center;
}

.google-form {
  margin-top: 20px;
  /* Add any additional styling here */
}


#topBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it stays on top */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #0c0c0d; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  transition: all 0.5s ease; /* Smooth transition */
}

#topBtn:hover {
  background-color: #555; /* Darker background on hover */
}


footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 5px 0;
}
footer a {
    margin: 0 15px;
    color: #fff;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
/* Basic Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #333;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  margin-right: 20px;
}

.nav-list a {
  color: white;
  text-decoration: none;
}

/* Hide menu toggle on larger screens */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: inline-block;
    margin-bottom: 5px;
    color: #333;
    width: 30%;
    text-align: center;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 40%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #007BFF;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

button[type="submit"] {
    width: 100%;
    background-color: #333;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-items: center;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.error {
    color: red;
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

#collage {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 20px;
}
.image-container {
    position: relative;
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Styles */
@media (max-width: 480px) {
.image-container {
        width: 100px;
        height: 100px;
}
}
@media (max-width: 768px) {
  .nav-list {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #333;
  }
  
  .nav-list li {
    text-align: center;
    padding: 10px 0;
    margin: 0;
  }
  
  .menu-toggle {
    display: block;
  }

  .nav-list.active {
    display: flex;
  }

  button[type="submit"] {
    font-size: 16px; /* Adjust the font size if needed */
  }
}
