@charset "utf-8";
/* CSS Document */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	/* outline: 1px solid red !important; */
}

body {
    font-family: Arial, sans-serif;
}

/* Navbar Styles */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo img
{
	width: 150px;
	height: auto;
}

.navbar .logo {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.navbar .nav-links ul {
    list-style-type: none;
    display: flex;
}

.navbar .nav-links ul li {
    margin: 0 15px;
}

.navbar .nav-links ul li a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.navbar .nav-links ul li a:hover {
    color: #f0a500;
	text-decoration: underline;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 4px;
    background-color: black;
    margin: 4px 0;
}



/*Home Page Header Section*/
/* Header Section */

/* Make the header fill the screen */
.header-section {
  height: 100vh;           /* Full viewport height */
  width: 100vw;            /* Full viewport width */
  position: absolute;
  overflow: hidden;
	padding-bottom: 50px;
}
.header-section {
    position: relative;
    background-image: url("Images/car-driving-over-bridge-at-sunset.jpg"); 
    background-size: cover;
    background-position: center;
	width: 100%;
    color: white;
}

.header-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text visibility */
}

.header-section .header-content {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
	padding-bottom: 0;
	margin-bottom: 0;
}

.header-section h1 {
    font-size: 48px;
    margin-bottom: 10px;
	color: white;
}

.header-section .subheader {
    font-size: 24px;
    margin-bottom: 20px;
	color: white;
}

.header-section .btn-get-started {
    padding: 12px 30px;
    background-color: #DD5320;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
	border: none;
    transi1tion: background-color 0.3s ease;
}

.header-section .btn-get-started a
{
	
	text-decoration: none;
}

.header-section .btn-get-started:hover {
    background-color: #e67e22;
}

/* 3 Boxes Section */
.boxes-section {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    background-color: white;
}

.box {
	position: relative;
    width: 30%;
    padding: 20px;
	bottom: 200px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

.box h3 {
    font-size: clamp(1.2rem, 2vw, 2rem);
    margin-bottom: 15px;
	    white-space: normal;

}

.box p {
    font-size: 1rem;
    color: #333;
}


/* Home Page Welcome Section*/
.welcome-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    background-color:none;
}

.text-content {
    flex: 1;
    max-width: 100%;     /* let it grow */
	width: 100%;
    margin: 0 auto;      /* remove hard margin */
    padding: 0 20px;     /* optional spacing */
	text-align: center;
}

.text-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.text-content p {
	display: block;
	margin: 0 auto; /* tweak for mobile if causes any issue */
    font-size: 1.1rem;
	line-height: 1.6;
    margin-bottom: 25px;
	width: 60%; /* Remove if needed */
}

.text-content button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #DD5320;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	margin-left: 170px;
	display: block;
  margin: 0 auto;
}

.text-content a
{
	text-decoration: none;
}

.text-content button:hover {
    background-color: #e67e22;
}

.image-content {
    flex: 1;
    max-width: 500px;
    text-align: right;
	margin-right: 200px;
}

.image-content img {
    width: 100%;
    border-radius: 10px;
}


 .about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: #ffffff;
  }
  .about-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
	  text-align: center;
  }
  .about-text h2 {
    font-size: 3rem;
    color: #333;
  }
  .about-text p {
    font-size: 1.1rem;
    color: black;
    line-height: 1.6;
  }
  .about-image {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    text-align: center;
  }
  .about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }




.why-us {
  background-image: url('Images/sunset.jpg');
  background-size: cover;
  background-position: center;
  padding: 50px 0;
  color: white;
		
}

.why-us-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
	width: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.bullet-points {
  width: 60%;
}

.bullet-points h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.bullet-points ul {
  list-style-type: disc;
  padding-left: 20px;
}

.schedule-appointment {
  width: 35%;
  background: rgba(0, 0, 0, 0.6);
  padding:13px;
  border-radius: 8px;
  text-align: center;
}

.schedule-appointment h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.schedule-appointment p {
  font-size: 1.2em;
}

/* Service Section */
.service-section {
    padding: 50px 20px;
    background: #f9f9f9;
  }

  .service-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
  }

  .service-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  .service-content {
    /* flex: 1;  Make 1 if needed */
  }

  .service-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
  }

  .service-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: black;
  }

a
{
	text-decoration: none;
}

.footerCompanyName 
{
	text-decoration: underline;
	text-decoration-color: aqua;
}

.footerCompanyName
{
	color: aqua;
}
.about-page {
    padding: 60px 20px;
    background-color: #ffffff;
  }

  .about-page-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .about-page-content {
    flex: 1;
  }

  .about-page-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
  }

  .about-page-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
  }

  .about-page-values {
    list-style-type: none;
    padding: 0;
    margin: 20px 0 0;
  }

  .about-page-values li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #444;
  }

  .about-page-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }


header.page-header {
      background: #004B8D;
      color: #fff;
      padding: 3rem 1rem;
      text-align: center;
    }

    header.page-header h1 {
      margin: 0;
      font-size: 3rem;
      font-weight: 600;
    }

    .page-intro {
      text-align: center;
      margin: 2rem auto;
      max-width: 800px;
      color: #555;
      font-size: 1.2rem;
    }

    .page-services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem;
    }

    .page-service {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      padding: 1.5rem;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .page-service:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    }

    .page-service h2 {
      color: #004B8D;
      margin-top: 0;
      font-size: 1.5rem;
    }

    .page-service p {
      color: #666;
      font-size: 1rem;
    }

    .page-note {
      font-style: italic;
      color: #dc3545;
      margin-top: 0.5rem;
      font-size: 0.95rem;
    }

    .page-contact {
      text-align: center;
      background: #004B8D;;
      color: #fff;
      padding: 2rem 1rem;
      margin-top: 3rem;
      border-radius: 10px;
    }

    .page-contact a {
      display: inline-block;
      margin-top: 1rem;
      padding: 0.75rem 1.5rem;
      background: #DD5320;
      color: white;
      text-decoration: none;
      border-radius: 30px;
      font-weight: 600;
      transition: background 0.3s, color 0.3s;
    }

    .page-contact a:hover {
      background: #f1f1f1;
      color: #007bff;
    }


.contact-us {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 20px;
    background-color: #f4f4f4;
    margin: 20px;
    border-radius: 8px;
}

.contact-left {
    width: 45%;
    padding-right: 30px;
	text-align: center;
}

.phone-call-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #0077cc;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.phone-call-btn:hover {
    background-color: #005fa3;
}

.contact-left h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.contact-subheader {
    font-size: 1.2em;
    background-color: #DD5320;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

/* Contact Form Styling */
.contact-right {
    width: 50%;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-right form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-right form label {
    font-size: 1.1em;
    margin-bottom: 5px;
}

.contact-right form input,
.contact-right form textarea {
    padding: 12px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-right form button {
    padding: 12px;
    background-color: #DD5320;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-right form button:hover {
    background-color: #b22222;
}



/* Footer Section */
/* Footer Styling */
footer {
    background-color: #222;
    color: white;
    padding: 40px 20px;
    font-size: 1em;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-company-info,
.footer-social-media,
.footer-location,
.footer-quick-links {
    width: 22%;
    min-width: 200px;
}

.footer-company-info h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.footer-company-info p {
    font-size: 1em;
}

.footer-social-media h3,
.footer-location h3,
.footer-quick-links h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.footer-social-media ul,
.footer-quick-links ul {
    list-style: none;
    padding: 0;
}

.footer-social-media li,
.footer-quick-links li {
    margin-bottom: 10px;
}

.footer-social-media a,
.footer-quick-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social-media a:hover,
.footer-quick-links a:hover {
    color: #f39c12;
}

/* Copyright Section Styling */
.footer-copyright {
    background-color: #111;
    color: #bbb;
    padding: 20px;
    margin-top: 20px;
}

.footer-content
{
	padding-top: 20px;
}

.footer-content a
{
	color: white;
}

.site-footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
  position: relative;
  bottom: 0;
  width: 100%;
}

.site-footer a {
  color: #00aced;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}





















/* Animations*/
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
  }

  .fade-in.show {
    opacity: 1;
    transform: translateY(0);
  }













@media screen and (max-width: 768px) {
/* Welcome Section */
	.welcome-section {
		margin-top: -35%;
		width: 100%;
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .image-content {
        width: 100%;
        max-width: 100%;
		margin-left: 45%;
        padding: 0 20px;
        display: flex;
        justify-content: center; /* Center the content horizontally */
    }
	
	.text-content 
	{
		flex: 1;
    width: 100%;
    max-width: none;
    margin-left: 0;
    padding: 0 20px;
    text-align: center;
		padding-bottom: 15px;
	}

	.text-content h1 {
    margin-bottom: 10px; /* Adjust if the gap between h1 and p is too large */
	font-size: 2.4rem;
    width: 100%;
    text-align: center; /* or left */
}
	
	.text-content p {
    margin-bottom: 0;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
    .text-content button {
        margin-top: 20px;
		margin-left: 0;
    }
	
	  .about-section {
      flex-direction: column;
      text-align: center;
    }
    .about-text, .about-image {
      padding: 10px;
    }
	
	 .service-container {
      flex-direction: column;
      text-align: center;
    }

    .service-image img {
      max-width: 90%;
      margin: 20px auto 0;
    }
	
	.about-page-container {
      flex-direction: column;
      text-align: center;
    }

    .about-page-image img {
      max-width: 90%;
      margin-top: 20px;
    }
	
	 /* Navigation System and animation */
	 .nav-links {
        position: fixed;
		width: 100%; /* if pop up menu has issues then drop the width to 75% */
        top: 23%;
        left: 0px;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1rem;
        transform: translateX(-100%);
        transition: transform 0.4s ease-in-out;
        z-index: 1000;
        box-shadow: 2px 0 8px rgba(0,0,0,0.1);
	}
	
    .nav-links ul {
         flex-direction: column;
        gap: 0.5rem;
    }

    .nav-links ul li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
		margin-right: 40px;
		height: 35px;
		overflow: visible;
    }
	
.hamburger .bar {
        width: 25px;
        height: 3px;
        background-color: black;
        margin: 5px 0;
	    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    }
	
	.systemsHamburger {
  font-size: 4rem;
  cursor: pointer;
  color: white;
  display: block;       /* ensures it's always displayed */
  z-index: 9999;         /* keep it on top of all content */
  position: relative;    /* allows layering if needed */
}
    .nav-links.active {
        transform: translateX(0);
    }
	
	/* Animate to X when active */
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(50deg) translate(12px, 10px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
	
	.boxes-section
	{
		margin-top: -70px;
	}
	
	.box
	{
		text-align: center; /* optional: in case the parent is centering it */
		max-width: 100%;            /* Prevent box overflow */
 		 box-sizing: border-box;     /* Include padding in box size */
 		 padding:3px;
	}
	.box h3
	{
		font-size: 1rem;
	}
	
	.text-content button {
        margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    display: block; /* make sure it's treated as block for margin auto to work */
    }
	
	/* Contact form section */
	.contact-us {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.contact-left, .contact-right {
    flex: 1 1 400px;
}

.contact-left h2,
.contact-right h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

.contact-subheader {
    font-size: 1.5rem;
    color: white;
}

.contact-right form {
    display: flex;
    flex-direction: column;
}

.contact-right label {
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #444;
}

.contact-right input,
.contact-right textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-right textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-right button {
    margin-top: 20px;
    padding: 12px 20px;
    background-color: #0077cc;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.contact-right button:hover {
    background-color: #005fa3;
}
	
	
	
	/* Responsive Design */
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-company-info,
    .footer-social-media,
    .footer-location,
    .footer-quick-links {
        width: 100%;
        text-align: center;
    }
}
