/* Awards Page Styles */

/* Base Styles */
/* Base Styles */
* {
  margin: 0px;
  margin-bottom: 0px;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}


body {
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Navbar Styles */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .7rem 5%;
  background-color: #273246;
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}



.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  /* Remove the filter that was making it white */
}

.logo h2 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
  /* color: rgb(10, 10, 10); */
  transition: transform 0.5s ease;
}


/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background-color: rgba(59, 130, 246, 0.05);
  color: var(--primary);
}

.container h2{
  text-align: center;
  margin-bottom: 30px;
}
/* res */
/* Default desktop styles */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

/* Responsive styles */
@media (max-width: 1010px) {
  .hamburger {
    display: block;
    z-index: 1101;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    max-height: 80vh;         /* Add this */
    overflow-y: auto; 
  }

  .nav-links.active {
    display: flex;
  }

  .nav-link {
    color: #273246;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background-color: white;
    padding-left: 1rem;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}
/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/achievments.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  /* padding: 0 20px; */
  padding: 8rem 0 4rem;
}

.hero-content {
  max-width: 800px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInDown 1s ease-out;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.5s;
  animation-fill-mode: both;
}

/* Awards Section */
.awards-section {
  padding: 5rem 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.awards-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(52, 152, 219, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.awards-section .container {
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  /* background-color: #3498db; */
}

.section-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #666;
  font-size: 1.1rem;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 1rem;
}

.award-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.award-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 15px 35px rgba(52, 152, 219, 0.15);
  border-color: rgba(52, 152, 219, 0.2);
}

.award-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2c3e50);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.award-card:hover::before {
  transform: scaleX(1);
}

.award-image {
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  padding: 20px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.award-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(248, 249, 250, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.award-card:hover .award-image::after {
  opacity: 1;
}

.award-image img {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.award-card:hover .award-image img {
  transform: scale(1.08);
}

.award-content {
  padding: 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.award-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(52, 152, 219, 0.9);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.award-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #2c3e50;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
  padding-bottom: 12px;
}

.award-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  /* background-color: #3498db; */
  transition: width 0.3s ease;
}

.award-card:hover .award-content h3::after {
  width: 60px;
}

.award-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.award-content p:first-of-type {
  font-weight: 600;
  color: #3498db;
  font-size: 1rem;
}


/*our partner*/

.partners-section {
  text-align: center;
  padding: 50px 20px; /* Default padding */
}
.sub-heading {
  color: teal;
  font-weight: 600;
  letter-spacing: 1px;
}
.slider-container {
  overflow: hidden;
  max-width: 100%;
  margin-top: 30px;
  position: relative;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 25s linear infinite;
}

.slider-container:hover .slider-track {
  animation-play-state: paused;
}

.slide {
  flex: 0 0 auto;
  width: 140px; /* Default width */
  height: 100px; /* Default height */
  margin: 0 12px; /* Default margin */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px; /* Default padding */
  box-sizing: border-box;
}

.slide img {
  max-width: 100%;
  max-height: 80px; /* Default max-height */
  object-fit: contain;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive styles for Our Partner section (Sliders) */
@media (max-width: 768px) {
  .partners-section {
    padding: 40px 15px; /* Adjust padding */
  }

  .slide {
    width: 100px; /* Adjust width */
    height: 80px; /* Adjust height */
    margin: 0 8px; /* Adjust margin */
    padding: 8px; /* Adjust padding */
  }

  .slide img {
    max-height: 60px; /* Adjust max-height */
  }

  .slider-track {
      animation-duration: 35s; /* Slow down animation on smaller screens */
  }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 30px 10px; /* Further adjust padding */
    }

    .slide {
        width: 80px; /* Further adjust width */
        height: 60px; /* Further adjust height */
        margin: 0 5px; /* Further adjust margin */
        padding: 5px; /* Further adjust padding */
    }

    .slide img {
        max-height: 50px; /* Further adjust max-height */
    }

    .slider-track {
        animation-duration: 45s; /* Further slow down animation */
  }
}

/* Call to Action Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #000000, #2c3e50);
  color: #fff;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #fff;
  color: #162444;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background-color: #f8f9fa;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer Section */

.footer {
  background: #273246;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  padding: 40px 0 10px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 0 50px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  min-width: 160px;
  max-width: 280px;
  flex: 1;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #fff;
}


.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color:orangered;
}

.footer-logo {
  width: 60px;
  margin-bottom: 10px;
}

.footer-col:first-child {
  padding-right: 30px;
}

.footer-col p {
  word-wrap: break-word;
  white-space: pre-line;
  line-height: 1.6;
  font-size: 14px;
}

.footer-socials {
  margin-top: 10px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  
  padding: 8px;
  transition: 0.3s;
}

.footer-socials a:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-color: transparent;
}

/* Newsletter */
.newsletter-col {
  max-width: 280px;
}

.newsletter-form {
  display: flex;
  width: 100%;
  max-width: 280px;
  margin-top: 10px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 3px 0 0 3px;
  outline: none;
  font-size: 14px;
}

.newsletter-form button {
  padding: 10px 15px;
  background: #e74c3c;
  color: white;
  font-weight: bold;
  border-radius: 0 3px 3px 0;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  opacity: 0.9;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-top: 30px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  .footer-col {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
    border-radius: 3px;
    margin-bottom: 10px;
  }

  .newsletter-form button {
    border-radius: 3px;
  }
}
@media screen and (max-width: 1165px) {
  .footer-container {
    padding: 0 20px;
  }

  .footer-col {
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-socials {
    justify-content: center;
    margin-top: 10px;
  }

  .newsletter-form {
    flex-direction: column;
    max-width: none;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
    margin-bottom: 10px;
  }
}


/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  .award-image {
    height: 120px;
  }
  
  .award-content h3 {
    font-size: 1rem;
  }
  
  .footer-col {
    flex: 1 1 100%;
    text-align: center;
  }
  
  .footer-socials {
    justify-content: center;
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero{
    height: 60vh;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .award-card {
    max-width: 100%;
  }
  
  .award-content h3 {
    font-size: 1.2rem;
  }
  
  .partners-section {
    padding: 40px 15px;
  }
  
  .govt-projects-section {
    padding: 50px 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .awards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .award-image {
    height: 160px;
  }
  
  .award-content {
    padding: 1.5rem;
  }
  
  .partners-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
  
  .footer-container {
    padding: 0 20px;
  }
  
  .govt-projects-content {
    flex-direction: column;
  }
  
  .certificate-container {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .hero{
    height: 60vh;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-description {
    font-size: 0.95rem;
  }
  
  .cta-section h2 {
    font-size: 1.8rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 0.8rem 2rem;
  }
  
  .program-card {
    padding: 1.5rem;
  }
  
  .awards-grid {
    gap: 1.5rem;
  }
  
  .award-card {
    border-radius: 10px;
  }
  
  .award-image {
    height: 140px;
  }
  
  .award-content {
    padding: 1.2rem;
  }
  
  .award-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    padding-bottom: 10px;
  }
  
  .award-content p {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }
  
  .award-badge {
    font-size: 0.7rem;
    padding: 4px 8px;
    top: 10px;
    right: 10px;
  }
  
  .govt-projects-section {
    padding: 40px 20px;
  }
  
  .govt-projects-title h2 {
    font-size: 1.5rem;
  }
  
  .achievement-list li {
    font-size: 0.9rem;
  }
}

/* Section styling with increased width */
.govt-projects-section {
  background-color: #eaf1ff;
  padding: 60px 40px;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 20px;
  max-width: 1400px; /* Increased from 1200px */
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Title */
.govt-projects-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.govt-projects-title .icon i {
  font-size: 2rem;
  color: #1a73e8;
}

.govt-projects-title h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #222;
}

/* Content layout */
.govt-projects-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

/* Left content (achievements) */
.govt-achievements {
  flex: 1 1 55%;
}

.govt-achievements h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
}

.achievement-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.achievement-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #444;
}

.achievement-list li::before {
  content: "\f058"; /* Font Awesome check-circle */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #2ecc71;
}

/* Sectors */
.sectors h4 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sector-tag {
  background-color: #1a73e8;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Right content (certificate image) */
.certificate-container {
  flex: 1 1 40%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.certificate-container img {
  width: 100%;
  display: block;
  border-radius: 12px;
 
}

/* ❌ Removed blue overlay */
.certificate-overlay {
  display: none; /* Hides the overlay entirely */
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .govt-projects-content {
    flex-direction: column;
  }

  .govt-projects-title {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Andhra Pradesh Government Project Section Styles */
.andhra-project-section {
  background-color: #eaf1ff;
  padding: 60px 40px;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 20px;
  max-width: 1400px; /* Increased from 1200px */
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.andhra-project-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom right, rgba(39, 52, 90, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.andhra-project-section .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.andhra-project-title {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
}

.andhra-project-title .icon {
  font-size: 2.5rem;
  color: #27345a;
  margin-right: 1rem;
}

.andhra-project-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #27345a;
  margin: 0;
}

.andhra-project-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.andhra-achievements {

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.andhra-achievements h3 {
  font-size: 1.5rem;
  color: #27345a;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.achievement-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.achievement-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.5;
}

.achievement-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #3498db;
  font-weight: bold;
  font-size: 1.2rem;
}

.sectors {
  margin-top: 2rem;
}

.sectors h4 {
  font-size: 1.2rem;
  color: #27345a;
  margin-bottom: 1rem;
}

.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.sector-tag {
  background-color: #f0f7ff;
  color: #3498db;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.sector-tag:hover {
  background-color: #3498db;
  color: white;
 
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

/* MOU Document Container */
.mou-document-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: zoom-in;
  height: auto;
  max-height: none;
}

.mou-document-container:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mou-document-container img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.5s ease;
  object-fit: cover;
}

.mou-document-container:hover img {
  transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .govt-projects-content,
  .andhra-project-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mou-document-container {
    margin-top: 0;
  }

  .govt-projects-title h2,
  .andhra-project-title h2 {
    font-size: 1.8rem;
  }

  .govt-achievements h3,
  .andhra-achievements h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .govt-projects-section,
  .andhra-project-section {
    padding: 3rem 0;
  }

  .govt-projects-title,
  .andhra-project-title {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .govt-projects-title .icon,
  .andhra-project-title .icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .govt-projects-title h2,
  .andhra-project-title h2 {
    font-size: 1.6rem;
  }

  .achievement-list li {
    font-size: 1rem;
  }

  .sector-tags {
    gap: 0.5rem;
    justify-content: center;
  }

  .sector-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .govt-achievements,
  .andhra-achievements {
    padding: 1.5rem;
  }

  .achievement-list li {
    font-size: 0.95rem;
    padding-left: 1.8rem;
  }
}
/* End of Government Project Section Styles */

/* Punjab Government Project Section Styles */
.punjab-govt-section {
  background-color: #eaf1ff;
  padding: 60px 40px;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 20px;
  max-width: 1400px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.punjab-govt-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  justify-content: center;
  text-align: center;
}

.punjab-govt-title .icon i {
  font-size: 2rem;
  color: #1a73e8;
  margin-bottom: 28px;
}

.punjab-govt-title h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #222;
}

.punjab-govt-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.punjab-achievements {
  flex: 1 1 55%;
}

.punjab-achievements h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
}

.punjab-achievements .achievement-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.punjab-achievements .achievement-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #444;
}

.punjab-achievements .achievement-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #2ecc71;
}

.punjab-achievements .sectors h4 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

.punjab-achievements .sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.punjab-achievements .sector-tag {
  background-color: #1a73e8;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.punjab-certificate-container {
  flex: 1 1 40%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px; /* Add some padding around the image */
}

.punjab-certificate-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.punjab-certificate-container img {
  max-width: 80%; /* Reduce image size */
  max-height: 300px; /* Set a max height */
  width: auto; /* Allow width to adjust based on max-width */
  height: auto; /* Allow height to adjust based on max-height */
  display: block;
  border-radius: 8px;
  object-fit: contain; /* Ensure image fits within bounds without distortion */
  transition: transform 0.5s ease;
}

.punjab-certificate-container:hover img {
    transform: scale(1.05); /* Subtle zoom effect on hover */
}

/* Andhra Pradesh Government Project Section Styles */
.andhra-govt-section {
  background-color: #eaf1ff;
  padding: 60px 40px;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 20px;
  max-width: 1400px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.andhra-govt-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom left, rgba(39, 52, 90, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.andhra-govt-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  justify-content: center;
  text-align: center;
}

.andhra-govt-title .icon i {
  font-size: 2rem;
  color: #1a73e8;
  margin-bottom: 28px; 

}

.andhra-govt-title h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #222;
}

.andhra-govt-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.andhra-achievements {
  flex: 1 1 55%;
  
}


.andhra-achievements h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
}

.andhra-achievements .achievement-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.andhra-achievements .achievement-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

.andhra-achievements .achievement-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #2ecc71;
}

.andhra-achievements .sectors h4 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
  margin-top: 2rem;
}

.andhra-achievements .sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.andhra-achievements .sector-tag {
  background-color: #1a73e8;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
 
}



.andhra-mou-container {
  flex: 1 1 40%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  height: auto; /* Allow height to adjust */
  max-height: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px; /* Add some padding around the image */
  gap: 10px;;
}



.andhra-mou-container img {
  max-width: 80%; /* Reduce image size */
  max-height: 300px; /* Set a max height */
  width: auto; /* Allow width to adjust based on max-width */
  height: auto; /* Allow height to adjust based on max-height */
  display: block;
  border-radius: 8px;
  object-fit: contain; /* Ensure image fits within bounds without distortion */

}



/* Responsive Styles */
@media (max-width: 992px) {
  .punjab-govt-content,
  .andhra-govt-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .punjab-certificate-container,
  .andhra-mou-container {
    margin-top: 1.5rem; /* Add some space on smaller screens */
    max-width: 100%;
    padding: 10px; /* Adjust padding */
  }

  .punjab-certificate-container img,
  .andhra-mou-container img {
    max-width: 90%; /* Adjust max width for smaller screens */
    max-height: 250px; /* Adjust max height for smaller screens */
  }

  .punjab-govt-title h2,
  .andhra-govt-title h2 {
    font-size: 1.8rem;
  }

  .punjab-achievements h3,
  .andhra-achievements h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .punjab-govt-section,
  .andhra-govt-section {
    padding: 3rem 0;
  }

  .punjab-govt-title,
  .andhra-govt-title {
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-bottom: 2rem;
  }

  .punjab-govt-title .icon,
  .andhra-govt-title .icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .punjab-govt-title h2,
  .andhra-govt-title h2 {
    font-size: 1.6rem;
  }

  .achievement-list li {
    font-size: 1rem;
  }

  .sector-tags {
    gap: 0.5rem;
    justify-content: center;
  }

  .sector-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .punjab-achievements,
  .andhra-achievements {
    padding: 1.5rem;
  }

  .achievement-list li {
    font-size: 0.95rem;
    padding-left: 1.8rem;
  }
}

/*contact us button footer*/
.btn {
    padding: 10px 20px;
    background-color: rgb(231, 76, 60);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}
.btn:hover {
    background-color: rgb(241, 93, 77);
}
/* End of Government Project Section Styles */
@media (min-width: 2560) {
  .hero{
    height:60vh;
  }

}