@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: linear-gradient(-45deg, #1e3c72, #2a5298, #1e3c72, #2a5298);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: #fff;
  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: #080303;
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: #0e0505;
  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;
}

/*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 ends */

.A1 {
    background: #F8F5F5; /* 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 */
}

/* Topmost motivation box */
.slowgen {
 font-family: Arial, Helvetica, sans-serif; 
text-align: center;
background-color: white;
 padding-top: 40px;
  padding-bottom: 40px;
}


.slowgen h3 {
font-size: 24px;
font-weight: 800;
color: #333;
margin-bottom: 10px;
}

.slowgen p {
font-size: 20px;
font-weight: 500;
color: #666;
}

/* Flex layout for career section */
.career-section {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}

/* Left text content */
.career-content {
flex: 1;
min-width: 300px;
padding-right: 20px;
}

.career-content h2 {
font-size: 28px;
font-weight: bold;
margin-bottom: 10px;
color: #222;
text-align: center;
}

.career-content p {
font-size: 16px;
color: #555;
margin-bottom: 10px;
text-align: center;
font-weight: 700;

}

.career-content a {
font-size: 16px;
font-weight: 900;
color: #121314;
text-align: 100x;




}

.career-content a:hover {
text-decoration: underline;
}

/* Right side image */
.career-image {
flex: 1;
min-width: 300px;
text-align: right;
}

.career-image img {
max-width: 100%;

border-radius: 8px;
}
.career-section {
padding: 3rem 1rem;
background-color: #fff;
}

.career-container {
display: flex;
justify-content: space-between;
gap: 40px;
flex-wrap: wrap;
max-width: 1200px;
margin: 0 auto;
}

.form-container,
.departments-container {
flex: 1;
min-width: 300px;
max-width: 500px;
background: #ddd9d9;
color: #000;
padding: 2rem;
border-radius: 12px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-container h2,
.departments-container h2 {
text-align: center;
margin-bottom: 1rem;
color: #000;
}

.form-container p {
text-align: center;
margin-bottom: 2rem;
color: #000;
}

.form-group {
margin-bottom: 1.5rem;
}

.form-group label {
display: block;
margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
width: 100%;
padding: 0.75rem;
border: 1px solid #080707;
border-radius: 5px;
font-size: 1rem;
}

.form-group select option{
color: #000;
}

.submit-btn {
width: 100%;
padding: 1rem;
background-color: #0056b3;
color: #fff;
border: none;
border-radius: 5px;
font-size: 1.1rem;
cursor: pointer;
transition: background 0.3s;
}

.submit-btn:hover {
background-color: #003d80;
}

.department-card {
background-color: rgba(0, 86, 179, 0.1);
border-left: 5px solid #0056b3;
border-radius: 8px;
padding: 1rem 1.5rem;
color: #222;
gap: 15px;
}

.department-card h3 {
color: #0056b3;
margin-bottom: 10px;
}

.department-card ul {
list-style: disc;
padding-left: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
.A1 h2 {
font-size: 2rem;
letter-spacing: 3px;
}

.slowgen h3 {
font-size: 1.8rem;
}

.career-container {
flex-direction: column;
padding: 0 1rem;
}

.form-container,
.departments-container {
max-width: 100%;
}

.career-image img {
width: 90%;
}
}