@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #F8F5F5;
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color:black;
  min-height: 100vh;
}

/* Animated Background */
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color:white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 50px;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background:black;
  margin: 4px 0;
  transition: 0.4s;
}

/* Navigation Links */
.all-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  
}

.all-links li a {
  text-decoration: none;
  color:black;
  font-weight: bold;
  transition: color 0.3s;
}

.all-links li a:hover {
  color: #ffcc00;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .all-links {
    position: absolute;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background-color:#717171;
    width: 100%;
    transition: left 0.3s ease-in-out;
    padding: 1rem 0;
  }

  .all-links.active {
    left: 0;
  }
}

/* Hamburger Animation */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


header a, footer a {
  margin-left: 40px;
  text-decoration: none;
  color: #140202;
  height: 100%;
  padding: 20px 0;
  display: inline-block;
}

header a:hover, footer a:hover {
  color: #08f328;
}
/* Top Heading of Every Component */
.A1 {
    background: rgba(245, 247, 246, 0.2); /* Light transparent background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    border: 1px solid rgba(115, 117, 115, 0.3);
   
    box-shadow: 0 4px 6px rgba(0, 100, 0, 0.1);
    
    display: flex;
    align-items: center; /* Vertically center */
    justify-content: flex-start; /* Horizontally left */
    padding: 60px;
    width: 100%;
    box-sizing: border-box;
}

/* Section Title */
.A1 h2 {
    font-size: 3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: black;
    position: relative; /* Required for ::after underline */
    margin: 30px;
    padding: -5px;
    text-align: left;
    display: inline-block; /* Important to fit underline exactly */
}

/* Underline */
.A1 h2::after {
    content: '';
    display: block;
    height: 3px; /* Thickness of underline */
    background-color: rgba(0, 0, 0, 0.7); /* Slightly dark underline */
    width: 100%; /* Exactly the width of text */
    margin-top: -5px; /* Space between text and underline */
}


/* Contact Section */
.contact-map-section {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    gap: 20px;
    flex-direction: row-reverse; /* Changed this to reverse the order */
    text-align: center;
    background: rgb(248, 245, 245);
    color: white;
    padding: 60px 20px;
  }
  
  .contact-form, .map {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 45%;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  
  .contact-form:hover, .map:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .contact-map-section h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1a0f0f;
    text-decoration: underline;
  }
  
  .input-field {
    margin-bottom: 20px;
  }
  
  .input-field label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
    text-align: left;
  }
  
  .input-field input, .input-field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: black;
    outline: none;
  }
  
  .input-field input:focus, .input-field textarea:focus {
    border-color: #007BFF;
  }
  
  textarea {
    resize: vertical;
    min-height: 150px;
  }
  
  .submit-btn {
    background-color: #007BFF;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
  }
  
  .submit-btn:hover {
    background-color: #0056b3;
  }
  
  .map iframe {
    border-radius: 10px;
    width: 100%;
    height: 300px;
  }
  
  
  
  
  /*Footer CSS part*/
  footer {
    background: #000; /* Black Background */
    color: white; /* White Text */
    padding: 40px 0;
    font-size: 14px;
  }
  
  .footer-top {
    padding-bottom: 30px; /* Fixed padding issue */
    background-color: #000; /* Black */
  }
  
  .footer-top .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .address-section, .contact-section {
    width: 48%;
    padding: 20px;
  }
  
  .address-section {
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-weight:bold;
  
  }
  
  .contact-section {
    text-align: right;
    gap: 5px;
  }
  
  .contact-section h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color:white; /* White Text */
    
  }
  
  .address-section h4{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color:white; /* White Text */
    
  }
  
  
  
  .contact-section a {
    color: #0bec1e; /* Yellow for visibility */
    text-decoration: none;
  }
  
  .contact-section a:hover, .address-section a:hover {
    text-decoration: underline;
  }
  
  .container-1 {
    background-color: #000; /* Black */
  }
  
  .copyright {
    background: #000; /* Black */
    text-align: center;
    color: white;
    padding: 10px;
    border-top: 1px solid #444;
  }
  
  .credits {
    background: #000; /* Black */
    text-align: center;
    color: white;
    font-size: 13px;
  }
  
  .credits a {
    color: #0bec1e; /* Yellow */
    text-decoration: none;
  }
  
  .credits a:hover {
    text-decoration: underline;
  }

  .social-icons {
  text-align: right;
  
}

.social-icons a {
  color: #08f328;
  margin: 0 10px;
  font-size: 20px;
  display: inline-block;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #08f328;
}
  
  /* Footer section */
  
  /* Career Section  CSS part*/
  .career-section {
    background: rgb(248, 245, 245);
    color: white;
    padding: 30px 30px;
    text-align: center;
    display: flex; /* Enables Flexbox */
    justify-content: flex-end; /* Moves content to the right */
    align-items: center;
    
  }
  
  /* Form Container */
  .container {
    max-width: 700px;
    width: 100%;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    color: #333;
    margin-right: 1000px; /* Pushes form from the right edge */
  }
  
  /* Heading of carrar page*/
  
  /* Left-align the Career section text */
  .career-text {
    text-align: left;
    padding-left: 1000px; /* Adjust left spacing as needed */
    height: 100px;
  }
  
  .career .name {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
  }
  
  .slowgen h3 {
    font-size: 60px; /* Adjusted font size for better readability */
    font-weight: 10; /* Removed 'px' as it's not needed for font-weight */
    margin-bottom: 10px; /* Increased margin for better spacing */
    font-family: Arial, 'Times New Roman', Times, serif;
    color: black;
    align-items: baseline;
    
   /* Added inline property */
    text-shadow: 6px 6px 6px rgba(0, 0, 0, 0.7); /* Increased shadow effect */
  }
  
  .slowgen p {
    font-size: 30px; /*  consistent font size for paragraph */
    max-width: 700px; /* Increased max-width for a better text width */
    line-height: 1.6; /* Improved line height for better readability */
    font-weight: 400; /* Regular font weight for better balance with bold headings */
    font-family: Arial, 'Times New Roman', Times, serif;
    margin: 0 auto; /* Center the paragraph text */
    text-align: justify; /* Justify text for better alignment */
    color: #000;
    display: inline; /* Added inline property */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); /* Added shadow */
  }
  
  
  
  /* Form Styling */
  .form-group {
    margin-bottom: 15px;
  }
  
  label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
  }
  
  input:focus, select:focus {
    border-color: #4b79a1;
    outline: none;
  }
  
  /* Submit Button */
  .submit-btn {
    background: #4b79a1;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .submit-btn:hover {
    background: #283e51;
  }
  
  /* Responsive Styles */
@media (max-width: 768px) {
.A1 h2 {
font-size: 2rem;
letter-spacing: 3px;
}

.slowgen h3 {
font-size: 1.8rem;
}

.contact-map-section {
flex-direction: column;
padding: 0 1rem;
}

.contact-form, .map {
width: 100%;
}
.career-image img {
width: 90%;
}
}
