/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica;
  background-color: #171717;
  color: #fff;
}



/* General Styles */
/* General Styles */
/* Default styles for larger devices */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  background-color: none; /* Dark background for the header */
  color: #fff;
  position: relative;
}

.logo img{
  margin-left: 20px;
  width: 50%;
}

nav a {
  color: #fff;
  font-size: 14px;
  margin: 0 15px;
  text-decoration: none;
}

nav a:hover {
  color: #FF6B4D;
}

.quote-button1 {
  background-color: #d74426;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 0.8em;
  cursor: pointer;
  font-weight: bold;
}

.burger-menu {
  font-size: 3em;
  cursor: pointer;
  display: none;
  color: #f15638;
}

.burger-menu .bar {
  width: 35px;
  height: 5px;
  background-color: #f15638;
  margin: 6px 0;
  transition: all 0.3s ease;
}

/* Disable scrolling when nav-links is active */
.nav-links.active ~ body {
  overflow-x: hidden;
  overflow-y: hidden;
}

/* Transform into "X" */
.burger-menu.active .top {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active .middle {
  opacity: 0;
}

.burger-menu.active .bottom {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Navigation */


.logo img{
  margin-left: 20px;
  width: 50%;
}

nav a {
  color: #fff;
  font-size: 14px;
  margin: 0 15px;
  text-decoration: none;
}

nav a:hover {
  color: #FF6B4D;
}

.quote-button1 {
  background-color: #d74426;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 0.8em;
  cursor: pointer;
  font-weight: bold;
}

.burger-menu {
  font-size: 3em;
  cursor: pointer;
  display: none;
  color: #f15638;
}

.burger-menu .bar {
  width: 35px;
  height: 5px;
  background-color: #f15638;
  margin: 6px 0;
  transition: all 0.3s ease;
}

/* Disable scrolling when nav-links is active */
.nav-links.active ~ body {
  overflow-x: hidden;
  overflow-y: hidden;
}

/* Transform into "X" */
.burger-menu.active .top {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active .middle {
  opacity: 0;
}

.burger-menu.active .bottom {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Navigation */
@media (max-width: 600px) {
  .nav-links.active ~ body {
    overflow-x: hidden;
    overflow-y: hidden;
  }
  
  header {
    background-color: #141414;
  }

  .burger-menu {
    display: block;
  }

  .nav-links {
    visibility: hidden; /* Hidden initially */
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 80px;
    left: 0;
    background: linear-gradient(180deg, rgba(38, 38, 38) 50%, rgba(233, 68, 35, 0.9) 100%);
    width: 100%;
    height: 900px;
    padding: 40px 0;
    z-index: 10;
    opacity: 0; /* Hidden initially */
    transform: translateY(-100%); /* Start off-screen */
    transition: transform 600ms cubic-bezier(0.17, 0.04, 0.03, 0.94), opacity 0.5s ease, visibility 0s 600ms; /* Transition for sliding effect and fading */
    display: flex; /* Ensure it's flexbox */
    flex-direction: column; /* Make the links stack vertically */
    align-items: center; /* Center the links horizontally */
  }

  .nav-links.active {
    visibility: visible; /* Make it visible */
    opacity: 1; /* Fade in */
    transform: translateY(0); /* Slide in from top */
    transition: transform 600ms cubic-bezier(0.17, 0.04, 0.03, 0.94), opacity 0.5s ease, visibility 0s 0s; /* Ensure visibility happens immediately */
  }

  .nav-links a {
    color: #fff;
    font-size: 1.2em; /* Adjust the size if needed */
    padding: 10px 20px;
    text-align: center;
    width: 100%;
    margin: 10px 0; /* Space between links */
    text-decoration: none;
  }

  .nav-links a:hover {
    color: #FF6B4D; /* Hover effect */
  }
}


/* Base styles */

/* Header */
.header {
  padding: 50px;
  background-color: #191919;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.header h2 {
  font-size: 2.5rem;
  font-weight: lighter;
  color: #f15638;
}

.header p {
  font-size: 1.5rem;
  font-weight: 500;
}



.contact-section {
  height: 90vh;
  padding: 20px;
  margin-top: 10px;
  background: linear-gradient(180deg, rgb(27, 27, 27) 30%, rgba(233, 68, 35, 0.04) 100%); /* Dark background */
  color: #fff;
  }
  
  /* Container for contact information and form */
  .contact-container {
  margin-top: 200px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap; /* Ensures responsive layout */
  margin: 0 100px;
  }
  
  /* Contact Info Styles */
  .contact-info {
    margin-top: 200px;
  flex: 1;
  max-width: 50%;
  padding-right: 20px;
  }
  
  .contact-info h2 {
    color: #FF6B4D;
  font-size: 3em;
  margin-bottom: 20px;
  
  }
  
  .contact-info h3 {
  font-size: 1.8em;
  font-weight: lighter;
  margin-bottom: 15px;
  
  }
  
  .contact-info p {
  font-size: 1em;
  margin-bottom: 20px;
  line-height: 1.6;
  
  }
  
  .contact-info h4 {
  font-size: 1.5em;
  margin-bottom: 10px;
  
  }
  
  .phone-number {
  font-size: 1.8em;
  color: #FF6B4D; /* Yellow color */
  margin-bottom: 20px;
  
  }
  
  /* Social Icons */
  .social-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  justify-content: left; /* Center icons */
  }
  
  .social-icons img {
  color: #fff;
  font-size: 2em;
  text-decoration: none;
  height: 30px;
  }
  
  /* Contact Form Styles */
  .contact-form {
  flex: 1;
  max-width: 45%;
  background-color: #2a2a2a;
  border: #FF6B4D solid 1px;
  padding:30px;
  
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form img {
    
    height: 70px;
  }
  /* Form Layout */
  .contact-form form {
  display: flex;
  flex-direction: column;
  }
  
  .contact-form h3 {
    font-size: 1.5rem;
    margin: 10px;
    text-align: left;
    align-items: center;
  }
  
  .contact-form p {
    text-align: left;
    font-size: .8rem;
    color: #aaa;
    margin-bottom: 10px;
    }
  /* Form Group Styles */
  .form-group {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  }
  
  /* Input Styles */
  .form-group input {
  width: 100%;
  padding: 20px;
  font-size: 1em;
  border: 1px solid #f15638;
  border-radius: 5px;
  background-color: #dedede;
  color: #181818;
  }
  
  /* Placeholder Text */
  .form-group input::placeholder {
  color: #999;
  }
  
  /* Button Styles */
  .btn-yellow {
    background-color: #1335f5;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.3s;
  }
  
  .btn-yellow:hover {
  background-color: #FF6B4D;
  }
  
  /* Media Query for 600px and smaller screens */
@media (max-width: 600px) {

  .contact-section {
    padding: 10px;
    margin-top: 100px;
    background: linear-gradient(180deg, rgb(27, 27, 27) 30%, rgba(233, 68, 35, 0.04) 100%); /* Dark background */
    color: #fff;
  }
  
  /* Container for contact information and form */
  .contact-container {
    display: flex;
    flex-direction: column; /* Stack contact info and form vertically */
    align-items: center;
    margin: 0 10px;
  }
  
  /* Contact Info Styles */
  .contact-info {
    margin-top: 20px; /* Reduced margin for smaller screens */
    flex: 1;
    max-width: 100%;
    padding-right: 0;
    text-align: center; /* Center text for better readability */
  }
  
  .contact-info h2 {
    color: #FF6B4D;
    font-size: 2em; /* Reduced font size */
    margin-bottom: 20px;
  }
  
  .contact-info h3 {
    font-size: 1.4em; /* Reduced font size */
    font-weight: lighter;
    margin-bottom: 15px;
  }
  
  .contact-info p {
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.4; /* Adjusted line height */
  }
  
  .contact-info h4 {
    font-size: 1.3em; /* Reduced font size */
    margin-bottom: 10px;
  }
  
  .phone-number {
    font-size: 1.4em; /* Reduced font size */
    color: #FF6B4D;
    margin-bottom: 20px;
  }
  
  /* Social Icons */
  .social-icons {
    display: flex;
    gap: 15px;
    justify-content: center; /* Center social icons */
    margin-top: 10px;
  }
  
  .social-icons img {
    font-size: 1.5em; /* Reduced icon size */
    height: 25px;
  }
  
  /* Contact Form Styles */
  .contact-form {
    flex: 1;
    max-width: 100%; /* Full width for form */
    background-color: #2a2a2a;
    border: #FF6B4D solid 1px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
  }
  
  .contact-form img {
    height: 50px; /* Adjusted image height */
  }
  
  /* Form Layout */
  .contact-form form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form h3 {
    font-size: 1.3rem; /* Reduced font size */
    margin: 10px;
    text-align: left;
    align-items: center;
  }
  
  .contact-form p {
    text-align: left;
    font-size: 0.9rem; /* Reduced font size */
    color: #aaa;
    margin-bottom: 10px;
  }
  
  /* Form Group Styles */
  .form-group {
    display: flex;
    flex-direction: column; /* Stack form groups vertically */
    gap: 10px;
    margin-bottom: 20px;
  }
  
  /* Input Styles */
  .form-group input {
    width: 100%;
    padding: 15px;
    font-size: 1em;
    border: 1px solid #f15638;
    border-radius: 5px;
    background-color: #dedede;
    color: #181818;
  }
  
  /* Placeholder Text */
  .form-group input::placeholder {
    color: #999;
  }
  
  /* Button Styles */
  .btn-yellow {
    background-color: #1335f5;
    color: #fff;
    padding: 12px 25px; /* Reduced padding for smaller screens */
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.3s;
  }
  
  .btn-yellow:hover {
    background-color: #FF6B4D;
  }
  
}
