/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Root variables */
:root {
  --primary-color: #0b2e24;
  --white: #ffffff;
  --hover-color:white;
}

/* Navigation Bar Styling */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--primary-color);
  padding: 10px 20px;
}

/* Logo Styling */
.nav-logo img {
  width: 150px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style-type: none;
  gap: 20px;
}

.nav-item {
  margin: 0;
}

.nav-link {
  text-decoration: none;
  color: var(--white);
  font-size: 18px;
  transition: color 0.3s ease-in-out;
}

.nav-link:hover {
  color: var(--hover-color);
}

/* Bars Icon for Mobile */
.bars {
  display: none;
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Hide navigation menu by default */
  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: var(--primary-color);
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 10px;
    width: 200px;
    border-radius: 8px;
    z-index: 1000;
  }

  /* Display navigation menu when active */
  .nav-menu.active {
    display: flex;
  }

  /* Display bars icon for mobile */
  .bars {
    display: block;
  }

  .nav-link {
    font-size: 16px;
    margin: 5px 0;
  }
}


/* General Styles */
body {
    /* font-family: Arial, sans-serif; */
    /* line-height: 1.6; */
    margin: 0;
    padding: 0; 
    /* color: #333;
    background-image:url(); */ 
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

}

header {
    /* background: #f4f4f4; */
    text-align: center;
    padding: 2rem;
    font-size: 20px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    
}

h1 {
    margin-bottom: 5px;
    margin-top: 5px;
}


/* Meet Designer Section */
.meet-designer-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; /* Default stacking layout */
  padding-top: var(--navbar-height);
}

/* Video Background */
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Container */
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  z-index: 2;
}

.left-section {
  flex: 2;
  color: white;
}

.text-overlay {
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
  max-width: 500px;
}

.text-overlay h1 {
  font-size: 2.5rem;
  margin: 0;
}

.text-overlay span.line-one,
.text-overlay span.line-two {
  display: block;
}

.designer-form {
  margin-left: auto;
  width: 350px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 10;

}

.designer-form input,
.designer-form button {
  width: 100%;
  margin-bottom: 20px;
}

.designer-form input {
  padding: 10px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 20px;

}

.designer-form button {
  background: linear-gradient(145deg, #ff0000, #d40000);
  color: white;
  padding: 10px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  margin-bottom: 20px;

}

.designer-form button:hover {
  background: linear-gradient(145deg, #d40000, #a80000);
  transform: translateY(-3px);
}

/* Flexbox for Terms */
.terms-container {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 10px;
  margin-bottom: 20px;

}

.terms-container input[type="checkbox"] {
  margin: 0;
  width: 16px;
  height: 16px;
}

/* Responsive Adjustments */

/* Medium devices */
@media (max-width: 768px) {
  .container {
    flex-direction: column; /* Stack sections vertically */
    align-items: center;
  }

  .designer-form {
    width: 300px;
    padding: 10px;
    margin-top: 20px; /* Add spacing between stacked items */
  }

  .text-overlay h1 {
    font-size: 1.8rem;
  }

  input,
  button {
    font-size: 0.85rem;
    padding: 8px;
  }
}

/* Small devices */
@media (max-width: 480px) {
  .meet-designer-section {
    display: flex;
    flex-direction: column; /* Stack sections vertically */
    padding: 1rem;
  }

  /* Text Overlay */
  .text-overlay {
    order: 1; /* Display text first */
    text-align: center; /* Center-align text */
    margin-bottom: 20px; /* Add spacing below text */
  }

  .text-overlay h1 {
    font-size: 1.5rem;
  }

  .text-overlay .line-one {
    font-size: 1.8rem;
  }

  .text-overlay .line-two {
    font-size: 1.4rem;
  }

  /* Video Container */
  .video-container {
    order: 2; /* Display video next */
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 1rem; /* Add spacing below video */
  }

  .video-container video {
    width: 100%;
    height:250px; /* Set height for smaller screens */
    object-fit: cover;
  }

  /* Designer Form */
  .designer-form {
    order: 3; /* Display form last */
    width: 100%;
    padding: 15px;
    box-shadow: none; /* Remove box shadow for a cleaner look */
    margin-top: 20px;
  }

  .designer-form input,
  .designer-form button {
    font-size: 0.8rem;
    padding: 6px;
  }
}



/* Contect  */
.contact-info {
    background: #fff;
    margin: 1rem 0;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    margin-bottom: 1rem;
    color: #555;
}

.contact-info {
  font-family: Arial, sans-serif;
  padding: 20px;
}

.contact-info h2 {
  font-size: 30px;
  margin-bottom: 20px;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.contact-info h1 {
  font-size: 20px;
  display: inline-block;
  margin-right: 10px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.contact-info p {
  font-size: 18px;
  margin: 10px 0;
  margin-left: 130px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.contact-info .one{
  margin-top: -25px;
}

.contact-info .two{
  margin-top: -93px;
  margin-left: 450px;
margin-bottom: 20px;

}
.two {
  margin-bottom: 20px;

}
.contact-info a {
  color: #007BFF;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-info i {
  margin-right: 8px;
  color: #555;
}

/* Highlight section titles */
.contact-info strong {
  font-size: 20px;
  color: #333;
}

#visit-us {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px; /* Add some space between the sections */
  margin: 20px 0;
  padding: 20px;
  border: 1px solid #ddd; /* Optional: Add a border around the section */
  border-radius: 8px;
  background-color: #f9f9f9;
}

.location-info {
  flex: 1; /* Allow it to take up equal space */
  max-width: 45%; /* Adjust width of each section */
}

.location-info h3 {
  font-size: 1.5rem;
  color: #333;
}

.location-info p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.location-info h4 {
  font-size: 1rem;
  font-weight: normal;
  margin: 5px 0;
}

.location-info a.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.location-info a.btn:hover {
  background-color: #0056b3;
}

#map {
  flex: 1; /* Allow it to take up equal space */
  max-width: 45%; /* Adjust width of each section */
  text-align: center; /* Center the map if needed */
}

#map iframe {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  border: none;
}

@media (max-width: 768px) {
  #visit-us {
      flex-direction: column;
      gap: 10px; /* Reduce the gap for mobile view */
  }

  .location-info, #map {
      max-width: 100%; /* Make both sections take full width */
  }
}

/* Footer Section */
body {
  font-family: Arial, sans-serif;
}

footer {
  background-color: #0b2e24;
  color: #ffffff;
  padding: 20px 10px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-container div {
  flex: 1 1 100px;
}

.logo1 {
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
  margin-left: 30px;
}

.about-section p {
  line-height: 1.6;
  font-size: 14px;
  margin-top: 10px;
  /* margin-left: 30px; */
  text-align: justify;
}

.servicename {
  color: #ffd700;
  margin-bottom: 15px;
  /* margin-top: 30px; */
  text-align: left;
  margin-left: 120px;
}

.contact-section h4 {
  color: #ffd700;
  margin-bottom: 15px;
  /* margin-top: -20px; */
  margin-left: 70px;
}

.lists {
  list-style: none;
  padding: 0;
  margin-bottom: 8px;
  font-size: 14px;
  text-align: left;
  margin-left: 120px;
  line-height: 1.8;
}

.lists a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
}

.lists a:hover {
  color: #ffd700;
  text-decoration: underline;
}

.contact-section p {
  font-size: 14px;
  margin-bottom: 8px;
  text-align: left;
  margin-left: 70px;
}

.social-icons {
  margin-top: 50px;
  margin-left: 70px;
  text-align: left;
}

.social-icons i {
  color: #ffffff;
  margin-right: 10px;
  font-size: 25px;
  cursor: pointer;
}

.social-icons a {
  color: #ffffff;
  margin-right: 10px;
  font-size: 18px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #ffd700;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 20px;
  padding-top: 20px;
  font-size: 14px;
}

.footer-bottom p {
  margin: 5px 0;
}

.lastline {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .logo1 {
    margin-left: 0; /* Center the logo */
  }

  .servicename,
  .contact-section h4 {
    margin-left: 0; /* Center the section titles */
    text-align: center;
  }

  .lists {
    margin-left: 0; /* Align the list items in the center */
    text-align: center;
  }

  .social-icons {
    margin-left: 0;
    text-align: center;
  }

  .social-icons i {
    font-size: 20px; /* Adjust size of icons */
  }

  .footer-bottom {
    padding-top: 15px;
    font-size: 12px;
  }

  /* Center the contact section items */
  .contact-section p {
    text-align: center; /* Center paragraph text */
    margin-left: 0; /* Remove left margin */
  }

  .lists {
    margin-left: 0; /* Remove left margin for lists */
    text-align: center; /* Center list items */
  }

  /* Decrease the space between services and contact section */
  .servicename,
  .contact-section h4 {
    margin-top: 15px; /* Reduced margin top */
  }

  /* Reduce the margin for the contact section */
  .contact-section p {
    margin-top: 10px; /* Reduced margin top for paragraph */
  }

  .social-icons {
    margin-top: 30px; /* Reduced top margin */
  }
}

@media (max-width: 480px) {
  .logo1 {
    max-width: 150px; /* Adjust logo size for small screens */
  }

  .servicename,
  .contact-section h4 {
    font-size: 16px; /* Adjust font size for small screens */
  }

  .lists {
    font-size: 12px; /* Smaller font size for list items */
  }

  .social-icons i {
    font-size: 18px; /* Smaller social icon size */
    }
.lastline{
  margin-top: 10px;
}
  .footer-bottom {
    font-size: 12px;
    padding-top: 10px;
  }
}