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

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



/* 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 */
/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* General Styles */
/* General Styles */
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 */
@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 {
padding: 50px;
  background-color: #0e0e0e;
  display: column;
  align-items: center;
  text-align: center;
}

.header h1{
  font-size: 3rem;
}

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

.container {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 0;
  overflow-x: hidden; /* Prevents horizontal overflow */
  max-width: 100%;
  background-color: #0e0e0e;
}

.left {
  flex: 1;
  display: flex;
  justify-content: center;
  width: 50%;
}

.left img {
  margin-top: -80px;
  border-radius: 10px;
  width: 90%;
  height: 40%;
  margin-left: 30px;
}

.right {
  flex: 1;
  padding-left: 10px; /* Reduced padding */
  max-width: 700px;
  align-items: left;
  margin-left: 100px;
  width: 50%;
}

.right h1 {
  font-size: 2rem;
  text-align: left;
  max-width: 80%;
  font-weight: lighter;
}

.subtitle {
  font-size: 1rem;
  color: #FF6B4D;
  text-align: left;
  width: 80%;
  font-weight: lighter;
  border-radius: 10px;
  font-weight: bold;
}

.right p {
  text-align: left;
  width: 80%;
}

.description .bold {
  color: #fff;
  font-weight: bold;
  font-size: 110%;
}

.description {
  color: #aaa;
  font-size: 16px;
  line-height: 1.5;
  text-align: right;
}

.right .quote-button {
border-radius: 5px;
  background-color: #1335f5;
  color: #fff;
  padding: 15px 30px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  text-align: center; /* Center-aligns text inside button */
  display: inline-block; /* Keeps the button aligned with text */
  margin-top: 20px; /* Adds space above the button */
  margin-left: 300px;
}

.numbers-title {
  justify-content: center;
  font-size: 1.6rem;
  text-align: center;
  font-weight: bold;
  padding: 20px;
  background-color: #0e0e0e;
}

.numbers-title .highlight {
  color: #FF6B4D;
}

.numbers-title h2 {
  margin-bottom: 10px;
}

.numbers-title h3 {
  font-size: 1.2rem;
  font-weight: 300;
  color: #FF6B4D;
}

.numbers-wrap {
  width: 100%;
  min-height: 30vh; /* Ensure the height adjusts with content */
  padding-bottom: 0; /* Remove or reduce padding */
  display: flex;
  justify-content: center; /* Centers content horizontally */
  align-items: center; /* Centers content vertically */
  gap: 10px;
  background-color: #0e0e0e;
}

.numbers-container {
  gap: 0.5rem;
  width: 32vmin;
  height: 32vmin;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center; /* Centers content horizontally */
  padding: 1em 0;
  font-size: 1.3rem;
  border-radius: 0.5em;
  background: rgb(23, 23, 23);
  background:  linear-gradient(180deg, rgba(38, 38, 38, 1) 50%, rgba(15, 42, 196, 0.8) 100%);
  border: 0px solid rgba(233, 68, 35, 1);
  text-align: center; /* Ensures text alignment for child elements */
  margin-bottom: 70px;
}
.numbers-container img {
  width: 25%;
  margin-bottom: 10px;
}
.numbers-container .counter {
  display: flex;
  align-items: center; /* Ensures the number and icon are vertically aligned */
  justify-content: center; /* Centers the content horizontally within the container */
  margin: 20px;
  gap: 0.25rem; /* Adds spacing between the number and icon */
}

.numbers-container .num {
  color: #a4a4a4;
}

.numbers-container .icon {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff; /* Ensures the % symbol stands out */
}

.numbers-container .text {
  font-size: 1rem;
  font-weight: bold;
}

.numbers-container p {
  font-size: 0.8rem;
  text-align: center;
  color: #c6c6c6;
  width: 220px;
  margin: 0 auto; /* Centers the paragraph within the container */
}

i {
  color: #18f98f;
  font-size: 2.5em;
  text-align: center;
}

span.num {
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 3em;
}

span.text {
  color: #e0e0e0;
  font-size: 1.2em;
  font-weight: lighter;
  text-align: center;
}

@media (max-width: 1200px) {

  .right p {
    font-size: 0.9rem;
  }
  .right .quote-button {
margin-left: 200px;
  }
.numbers-container {
  height: 300px;
  width: auto;
  gap: 10px;
  margin: 10px;
}
.numbers-container p {
  font-size: 0.8rem;
  margin: 0;
}
}

/* Media query for screens <= 600px */
@media (max-width: 600px) {
  .container {
    flex-direction: column; /* Stack items vertically */
    padding: 20px; /* Adjust padding for smaller screens */
  }

  .left,
  .right {
    width: 100%; /* Make both sections take full width */
    margin: 0; /* Remove margins for mobile */
    padding: 0; /* Remove padding */
  }

  .left img {
    margin-top: 2px;
    margin-bottom: 20px;
    margin-left: 0; /* Remove margin */
  }

  .right h1 {
    font-size: 2.2rem; /* Adjust font size */
    margin: auto;
    text-align: center; /* Center-align the text */
  }

  .right .quote-button {
    margin-left: 0; /* Center button */
    margin-top: 20px; /* Adjust top margin */
    display: block; /* Make button display as block */
    width: 100%; /* Make the button full-width */
  }

  .subtitle,
  .right p,
  .description {
    font-size: 1rem; /* Adjust font size */
    text-align: center; /* Center-align text */
    width: 100%; /* Ensure full width */
  }

  .numbers-title {
    font-size: 1.5rem; /* Adjust title size */
  }

  .numbers-wrap {
    flex-direction: column; /* Stack items vertically */
    padding: 10px 0; /* Adjust padding */
  }

  .numbers-container {
    width: 70%; /* Adjust container width */
    height: auto; /* Let container adjust its height */
    margin-bottom: 30px; /* Adjust bottom margin */
  }

  .numbers-container .counter {
    font-size: 1.5rem; /* Adjust counter font size */
  }

  .numbers-container p {
    width: 90%; /* Make the paragraph full-width */
  }
}



.contact-section {
  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 {
  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;
  }
  
}
