img {
  max-width: 100%;
  height: auto;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
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);
  
}



/* 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; 
}

/* 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);
}

body {
      background: #f2f2f2;
    }

/* Full-screen image section */
.image-content {
  width: 100%;
  height: 60vh;
  background: url("../images/About/about.png") 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.2);
  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;
}
@media (max-width: 768px) {
  .text-box h1 {
    font-size: 1.8rem;
  }
}

.text-box p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 40px;
  text-align:justify;
}

/* "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;
  }
}
.container {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding:40px;
}
@media (max-width: 768px) {

  .container{
flex-direction:column;
text-align:center;
padding:25px 15px;
}

.container img{
width:100%;
margin-top:20px;
border-radius:8px;
}
 
   .text{
    width:100%;
    padding:10px 5px;
  }

  .text h2{
    font-size:22px;
  }

  .text p{
    font-size:15px;
    text-align:left;
    max-width:650px;
    margin:auto;
  }

}

.container img {
  width: 35%;
  height:auto;
  border-radius: 10px;
}



body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.about-section {
  position: relative;
  background: #808080;
  padding: 80px 20px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:#c0c0c0;
  z-index: 1;
}

.container1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
  .card, .card1, .card2{
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 350px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.card:hover, .card1:hover,.card2:hover{
  /*background: rgba(255, 255, 255, 0.1);*/
  transform: translateY(-8px);
}

.card i, .card1 i, .card2 i{
  font-size: 45px;
  color: #fff;
  margin-bottom: 15px;
}

.card h2, .card1 h2, .card2 h2 {
  margin: 10px 0;
  font-size: 22px;
  font-weight: 600;
}

.card p, .card1 p, .card2 p{
  font-size: 15px;
  line-height: 1.6;
  color: #ddd;
  text-align:justify;
}

.card {
  background-image: url("../images/About/about3.jpg"); 
}
.card1 {
  background-image: url("../images/About/about4.jpg"); 
}
.card2 {
  background-image: url("../images/About/about5.jpg"); 
}

/*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;
    }

    @media (max-width: 768px) {

  .Innovate {
    flex-direction: column;
    text-align: center;
  }

  .Innovate img {
    width: 100%;
    margin-bottom: 20px;
  }

  .text1 {
    width: 100%;
  }
   
 .text{
  width:100%;
  padding:10px 15px;
}

.text h2{
  font-size:22px;
  margin-bottom:10px;
}

.text p{
  font-size:15px;
  line-height:1.7;
  text-align:left;
}

}

/* 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;
}
* {
  box-sizing: border-box;
}



/* Mobile Navbar */

@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;
  }

}
.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;
  }
}
