* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

header {
  background-color:white;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Navbar container */
.navbar-container {
	width: 100%;
	max-width: 95%;
	margin: 0 ;
	display: flex;
	align-items: center;      
	justify-content: space-between;
	padding: 8px 0px;
	box-sizing: border-box;
}

/* Logo + company name in same row */
.logo {
  display: flex;
  align-items: center;      
  gap: 10px;                
}

.logo img {
  height: 60px;
  margin-left:0;
  margin-bottom:10px;
}

.logo h1 {
  font-size: 28px;
  margin: 0;
  color: #075480;
  font-weight: 700;
  white-space: nowrap;      
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
}

/* Default link state */

nav ul li a {
  text-decoration: none;
  color: #075480;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a{
  display:block;
  padding:10px 16px;
  transition:all 0.3s ease;
  border-radius: 8px;
}

nav ul li a:hover{
  background:#f5f5f5;
  color:#00bfff;
  transform:translateX(6px);
}



/* hamburger menu */
.menu-toggle{
display:none;
cursor:pointer;
padding:10px;
}

.menu-toggle .bar{
display:block;
width:28px;
height:3px;
margin:5px auto;
background:#075480;
transition:all 0.4s ease;
border-radius: 5px;
}
/* Hover effect */
.menu-toggle:hover .bar{
background:#00bfff;
transform:scale(1.1);
}

/* Animation to X */

.menu-toggle.active .bar:nth-child(1){
transform:rotate(45deg) translate(5px,5px);
}

.menu-toggle.active .bar:nth-child(2){
opacity:0;
}

.menu-toggle.active .bar:nth-child(3){
transform:rotate(-45deg) translate(6px,-6px);
}
/* Visited / focus / active click */


/* Hover */
nav ul li a:hover {
  color: #4b0082;
  text-decoration: none;
}

/* Active page */
nav ul li a.active,
.nav-item.active > a {
  color: #0056b3;
  text-decoration: none;
  font-weight: 600;
}

/* Dropdown Menu Container */
.dropdown-menu {
    display: none;
    position: absolute;   
    top: 100%;            
    left: 0;              
    background-color: grey;
    min-width: 200px;
    border-radius: 5px;
    overflow: hidden;
    z-index: 1000;
}

/* Parent menu item */
.nav-item {
    position: relative;   
    
}

/* Show menu on hover */
.nav-item:hover .dropdown-menu {
    display: block;
}

/* Dropdown links */
.dropdown-menu a {
    display: block;
    color: white;
    padding: 10px;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background-color: #00bfff;
}

/* Prevent overflow: move to left if at edge */
.nav-links li.dropdown:hover .dropdown-menu {
    right: 0;   
    left: auto; 
}



/* Full-screen image section */
.image-content {
  width: 100%;
  height: 70vh;
  background: url("../images/career/career5.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

/* Dark overlay for readability */
.image-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

/* Text content inside image */
.text-box {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 20px;
}

.text-box h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #fff;
}

.text-box p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 40px;
}

/* "Get in Touch" button styling */
.btn {
  display: inline-block;
  background: #00bfff;
  color: #fff;
  text-decoration: none;
  padding: 12px 35px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.btn:hover {
  background: transparent;
  border: 2px solid #00bfff;
  color: #00bfff;
}
/* Responsive design */
@media (max-width: 768px) {
  .text-box h1 {
    font-size: 2rem;
  }
  .text-box p {
    font-size: 1rem;
  }
  .btn {
    font-size: 1rem;
    padding: 10px 25px;
  }
}

/*Innovate section*/
.Innovate {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 40px;
    }

    .Innovate img {
      width: 45%;
      border-radius: 10px;
    }

    .text1 {
      width: 50%;
      padding: 20px;
    }

    .text1 h2 {
      margin-bottom: 15px;
      font-size: 24px;
      color: #333;
    }

    .text1 p {
      font-size: 16px;
      line-height: 1.6;
      color: #555;
      text-align:justify;
    }
    
  .career-section {
  text-align: center;
  padding: 50px 10%;
  background-color: #E8E8E8; /* ✅ new background */
}
.career-section h2 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
  text-transform: uppercase;
  border-bottom: 3px solid #0078d7;
  display: inline-block;
  padding-bottom: 10px;
}

.career-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.career-card {
  background: white;
  border: 1px solid #cfd8dc;
  border-radius: 10px;
  width: 350px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  text-align: center;
  padding-bottom: 20px;
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  
}

.career-card img {
  width: 100%;
  height: 200px;
  border-radius: 10px 10px 0 0;
  object-fit: cover;
}

.career-card h3 {
  margin-top: 15px;
  font-size: 1.2em;
  font-weight: 600;
  color: #222;
}

.career-card p {
  font-size: 15px;
  line-height: 1.6;
  margin: 15px 20px;
  color: #555;
  text-align:justify;
}
.career-card a {
  text-decoration: none;
  color: inherit;
}


  .career-card a:hover {
  border:2px solid #0078d7;
  border-radius:20px;
  padding:5PX;
  border-bottom-width:600;
  color: #0078d7;
}


.career-card p {
  font-size: 16px;
  line-height: 1.6;
  margin: 15px 20px;
  color: #555;
  text-align:justify;
}
/* Footer */
.footer {
  background: #111;
  color: #ccc;
  padding: 40px 20px 15px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

}

.footer-about, .footer-contact, .footer-social {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}

.footer h3, .footer h4 {
  color: #00bfff;
  margin-bottom: 10px;
}

.footer p, .footer a {
  color: #ccc;
  font-size: 0.95rem;
  text-decoration: none;
}

.footer a:hover {
  color: #00bfff;
}

.footer-contact i {
  color: #00bfff;
  margin-right: 8px;
}

.footer-social a {
  margin-right: 10px;
  font-size: 1.3rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #00bfff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 10px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #aaa;
}

.image-content{
margin-top:80px;
}
/* Desktop / Laptop */
@media (min-width:769px){
  .image-content{
    margin-top:80px;
  }
}
 
/* Mobile */
@media (max-width:768px){
  .image-content{
    margin-top:0;
  }
}


@media (max-width:768px){

.menu-toggle{
display:block;
}
nav {
  width: 100%;
}
  nav ul{
  flex-direction: column;
  position: absolute;
  top:70px;
  left:0;
  background:white;
  width:100%;
  display: none;
  gap: 0;
}

nav ul.active{
 display: flex;
}

  nav ul li {
    padding: 15px;
    text-align: center;
    border-top:1px solid #eee;
  }

}

 
 