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; 
}

body {
      background: #f2f2f2;
    }

/* Full-screen image section */
.image-content {
  width: 100%;
  height: 80vh;
  background: url("../images/internship/intern2.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;
  margin-top:25px;
  color: #fff;
}

.text-box p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.contact-section {
  padding: 60px 20px;
  background: #f7f9fc;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

/* Left Side */
.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-image img {
  width: 85%;
  height: 30vh;
  border-radius: 12px;
  margin-bottom: 20px;
}
/* Section headings */
.section-title {
  margin-top: 25px;
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: #400040;
}

/* Paragraph text */
.section-text {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 1.05rem;
  color: #400040;
  text-align: justify;
}

/* Key concepts list */
.key-list {
  padding-left: 20px;
  margin-top: 10px;
}

/* List items */
.key-item {
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 1.05rem;
  color: #400040;
  text-align:justify;
}


/* Right Side */
.contact-form {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.contact-form span {
  color: red;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  outline: none;
}

.contact-form button {
  background: #00bfff;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #008ecf;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}
/*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;
}

.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;
  }

}