:root {
  /* Color Palette */
  --primary-color: #263A6D;
  --secondary-color: #3498DB;
  --accent-color: #27AE60;
  --background-light: #F4F6F7;
  --text-dark: #263A6D;
  --white: #FFFFFF;
  --border-color: #E0E0E0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background-light);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Header */
.header {
  background-color: var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 1rem 2rem; /* Combined compact and full padding */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Content layout */
.header-content {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* Space between icon and text */
}

/* Emblem adjustments */
.emblem {
  width: 80px; /* Consistent icon size */
  height: 80px;
  object-fit: contain; /* Ensure the image scales proportionally */
  display: inline-block;
}

/* Text styles */
.header-text {
  display: flex;
  flex-direction: column; /* Align text vertically */
  gap: 0.2rem;
}

.header-text h1 {
  font-size: 1.5rem; /* Consistent font size */
  color: var(--primary-color);
  margin: 0;
  white-space: nowrap;
  font-weight: 700;
}

.header-text h2 {
  font-size: 1rem; /* Unified font size */
  color: var(--secondary-color);
  margin: 0;
  white-space: nowrap;
  font-weight: 500; /* Adjusted for emphasis */
}

/* Navigation */
.navigation {
  background-color: var(--primary-color);
  padding: 0.75rem 2rem; /* Standardized padding */
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Navbar links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  justify-content: space-around;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 1rem;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .nav-links a {
    display: block;
    text-align: left;
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 480px) {
  .navigation {
    padding: 0.5rem 1rem;
  }

  .nav-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 0.25rem;
  }

  .nav-links a {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }
}

/* Search */
.search-container {
  display: flex;
  align-items: center;
}

.search-container input {
  padding: 0.5rem;
  border: none;
  border-radius: 4px 0 0 4px;
}

.search-container button {
  padding: 0.5rem;
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.search-container button:hover {
  background-color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .nav-content {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .search-container {
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

  .search-container input {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .search-container button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0.5rem 1rem;
  }

  .header-text h1 {
    font-size: 1.25rem;
  }

  .header-text h2 {
    font-size: 0.9rem;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .header-text h1 {
    font-size: 1rem;
  }

  .header-text h2 {
    font-size: 0.8rem;
  }

  .emblem {
    width: 40px;
    height: 40px;
  }

  .nav-links a {
    font-size: 0.8rem;
  }
}

/* Breadcrumb Redesign */
.breadcrumb {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover,
.breadcrumb a:focus {
  color: var(--white);
}

.breadcrumb .separator {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0.5rem;
}

/* Section Navigation */
.section-nav {
  display: flex;
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 1rem 2rem;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth; /* Smooth scrolling */
}

.section-nav button {
  background-color: transparent;
  border: none;
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.section-nav button.active {
  background-color: var(--secondary-color);
  color: var(--white);
}

.section-nav button:hover,
.section-nav button:focus {
  background-color: rgba(52, 152, 219, 0.1);
  outline: 2px solid var(--primary-color);
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  .navigation {
    flex-direction: column;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .section-nav {
    flex-direction: column;
  }

  .navigation-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (min-width: 1200px) {
  .section-nav {
    justify-content: center;
    gap: 2rem;
  }
}

/* Modals */
.modal.hidden {
  display: none;
}

.modal {
  animation: fadeIn 0.3s ease; /* Fade-in animation */
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* General Accessibility Enhancements */
button:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

a:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}


/* Existing CSS remains the same, add these new styles */

.user-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.profile-container {
  position: relative;
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.profile-info:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.profile-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-name {
  color: var(--white);
  font-weight: 500;
}

.dropdown-icon {
  color: var(--white);
  font-size: 0.75rem;
  margin-left: 0.25rem;
}

.profile-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--white);
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 1000;
  margin-top: 0.5rem;
}

.profile-dropdown.hidden {
  display: none;
}

.profile-dropdown ul {
  list-style: none;
  padding: 0.5rem 0;
}

.profile-dropdown ul li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark);
  text-decoration: none;
  padding: 0.75rem 1rem;
  transition: background-color 0.3s ease;
}

.profile-dropdown ul li a:hover {
  background-color: var(--background-light);
}

.profile-dropdown ul li a i {
  width: 20px;
  text-align: center;
}

.profile-dropdown .logout a {
  color: #E74C3C;
}

.notification-bell {
  position: relative;
  color: var(--white);
  cursor: pointer;
  transition: color 0.3s ease;
}

.notification-bell:hover {
  color: var(--secondary-color);
}

.notification-bell .fas {
  font-size: 1.25rem;
}

.notification-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #E74C3C;
  color: var(--white);
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Existing CSS remains the same, add these new styles */

.user-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.profile-container {
  position: relative;
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.profile-info:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.profile-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-name {
  color: var(--white);
  font-weight: 500;
}

.dropdown-icon {
  color: var(--white);
  font-size: 0.75rem;
  margin-left: 0.25rem;
}

.profile-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--white);
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 1000;
  margin-top: 0.5rem;
}

.profile-dropdown.hidden {
  display: none;
}

.profile-dropdown ul {
  list-style: none;
  padding: 0.5rem 0;
}

.profile-dropdown ul li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark);
  text-decoration: none;
  padding: 0.75rem 1rem;
  transition: background-color 0.3s ease;
}

.profile-dropdown ul li a:hover {
  background-color: var(--background-light);
}

.profile-dropdown ul li a i {
  width: 20px;
  text-align: center;
}

.profile-dropdown .logout a {
  color: #E74C3C;
}

.notification-bell {
  position: relative;
  color: var(--white);
  cursor: pointer;
  transition: color 0.3s ease;
}

.notification-bell:hover {
  color: var(--secondary-color);
}

.notification-bell .fas {
  font-size: 1.25rem;
}

.notification-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #E74C3C;
  color: var(--white);
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

:root {
    /* Color Palette */
    --primary-color: #263A6D;
    --secondary-color: #3498DB;
    --accent-color: #27AE60;
    --background-light: #F4F6F7;
    --text-dark: #2C3E50;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.6;
  }
  
  /* Header Redesign */
 

  .home-link {
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.5); /* Transparent border */
    background-color: rgba(255, 255, 255, 0.1); /* Transparent background */
    transition: background-color 0.3s ease, border-color 0.3s ease;
  }
  
  .home-link:hover {
    background-color: rgba(255, 255, 255, 0.3); /* Less transparency on hover */
    border-color: rgba(255, 255, 255, 0.8); /* Brighter border on hover */
  }
  
  
  .search-container {
    display: flex;
    align-items: center;
  }
  
  .search-container input {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px 0 0 4px;
    width: 250px;
  }
  
  .search-container button {
    background-color: var(--secondary-color);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0 4px 4px 0;
    color: var(--white);
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .search-container button:hover {
    background-color: var(--accent-color);
  }
  
  /* Breadcrumb Redesign */
  .breadcrumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
  }
  
  .breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0.5rem;
  }
  
  /* Section Navigation */
  /* .section-nav {
    display: flex;
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 1rem 2rem;
    gap: 1rem;
    overflow-x: auto;
  }
  
  .section-nav button {
    background-color: transparent;
    border: none;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .section-nav button.active {
    background-color: var(--secondary-color);
    color: var(--white);
  }
  
  .section-nav button:hover {
    background-color: rgba(52, 152, 219, 0.1);
  }
   */
  /* Welcome Section */
  .welcome {
    text-align: center;
    background-color: #E9F5FF;
    padding: 5rem 4rem;
  }
  
  .welcome h1 {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 1rem;
    
  }
  
  .welcome p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
  }
  
  .get-started {
    background-color: #0059B3;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .get-started:hover {
    background-color: #003366;
  }
  
  /* News Section */
  .news {
    padding: 2rem;
    background-color: #FFFFFF;
  }
  
  .news h2 {
    font-size: 1.8rem;
    color: #003366;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  .news-item {
    background: #F4F6F7;
    padding: 1rem;
    border: 1px solid #DDD;
    border-radius: 5px;
    text-align: center;
    transition: box-shadow 0.3s ease;
  }
  
  .news-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .news-icon i {
    font-size: 2rem;
    color: #0059B3;
    margin-bottom: 0.5rem;
  }
  
  .news-item h3 {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: #2C3E50;
  }
  
  .chevron {
    font-size: 1.5rem;
    color: #0059B3;
    margin-top: 0.5rem;
  }
  .nav-links{
      justify-content: space-around;
  }

  #news {
    background-color: #2C3E50;
    border: 2px solid #0e2741;
    padding: 2px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #fff;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  marquee {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .sp{
    color: red;
  }

  .environment-impact {
    background-color: #f5f5f5;
    padding: 50px 20px;
    text-align: center;
}

.environment-impact .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: #2e8b57;
    margin-bottom: 10px;
}

.section-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.impact-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.stat-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 15px;
    width: 30%;
    min-width: 250px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-value {
    font-size: 2rem;
    color: #1e90ff;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

