/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*
:root {
    --primary: #0050a0;
    --primary-dark: #003366;
    --primary-light: #0077cc;
    --accent: #ff6b6b;
    --text: #333;
    --text-light: #666;
    --background: #f8fafc;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}
*/

:root {
    --primary:  #199EB8;
    --primary-dark: #199EB8;
    --primary-light: #199EB8;
    --accent: #ff6b6b;
    --text: #333;
    --text-light: #666;
    --background: #f8fafc;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}


body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: var(--text);
    background-color: var(--background);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Scroll Progress Bar */
.header.scrolled {
    padding: 0.4rem 0;
}

.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: transparent;
    z-index: 10000;
}

.progress-bar {
    height: 100%;
    background: var(--gradient);
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary);
}

/* Header Styles 
/* Hero Banner with Background Image */
.hero {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(/img/hero-section-wallpaper.jpg)   ;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
    color: var(--white);
    padding: 1rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: Poppins, Arial;
}

.hero-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.2s;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 4rem 0;
}

/* Service Card */
.service-card {
    background: var(--white);
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    opacity: 0;
    transform: translateY(30px);
    height: 100%;
    min-height: 380px; /* Increased for better 35% proportion */
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Border color change on hover */
.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 80, 160, 0.2);
}

/* Service Image Container - 35% of card height */
.card-icon {
    width: 100%;
    height: 35%; /* 35% of service card height */
    min-height: 120px; /* Minimum height */
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.card-content {
    padding: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: var(--primary);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
        font-family: Poppins, Arial;

}

.service-card.visible .card-title {
    opacity: 1;
    transform: translateY(0);
}

.card-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.4rem;
    flex-grow: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
        font-family: Montserrat, Arial;


}

.service-card.visible .card-description {
    opacity: 1;
    transform: translateY(0);
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: fit-content;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.3s;
    font-size: 0.85rem;
}

.service-card.visible .read-more-btn {
    opacity: 1;
    transform: translateY(0);
}

.read-more-btn:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 18px rgba(0, 80, 160, 0.25);
	
}
.read-more-btn {
font-family: Poppins;
}
/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.cta-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-content {
    max-width: 550px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.cta-section.visible .cta-title {
    opacity: 1;
    transform: translateY(0);
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.cta-section.visible .cta-description {
    opacity: 1;
    transform: translateY(0);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.3s;
    font-size: 0.95rem;
}

.cta-section.visible .cta-button {
    opacity: 1;
    transform: translateY(0);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background: var(--text);
    color: var(--white);
    padding: 2.5rem 0;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    font-size: 0.9rem;
}

.footer.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        min-height: 70vh;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .service-card {
        min-height: 360px;
    }
    
    .card-icon {
        min-height: 110px;
    }
}

@media (max-width: 768px) {
   
    
    .hero {
        min-height: 60vh;
        padding: 5rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0;
    }
    
    .service-card {
        min-height: 340px;
    }
    
    .card-icon {
        min-height: 100px;
        height: 35%; /* Maintain 35% proportion */
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 50vh;
        padding: 4rem 0 2.5rem;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        gap: 1.8rem;
    }
    
    .service-card {
        min-height: 320px;
    }
    
    .card-icon {
        min-height: 90px;
        height: 35%; /* Maintain 35% proportion */
    }
    
    .card-content {
        padding: 1.3rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-description {
        font-size: 0.85rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}


/*NEW PAGES*/

.general{
  margin-top: 20px;  
}

.heading{
font-family: Poppins;
text-align: start;
font-size: 1.2rem;
padding-bottom: 5px;

opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.3);
}
.heading.visible {
    opacity: 1;
    transform: translateY(0);
}



.para{
  font-family: Montserrat;
text-align: start;
font-size: 1rem;
padding-bottom: 5px;  

opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;

}
.para.visible {
    opacity: 1;
    transform: translateY(0);
}





.general-list{
 font-family: Montserrat;
text-align: start;
font-size: 1rem;
padding-bottom: 4px;  
list-style: square;  

opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.general-list.visible {
    opacity: 1;
    transform: translateY(0);
}
.general-list li{
padding-bottom: 3px;

}
.general-image{
width: 400px;
 margin: 20px;;
}



@media screen and (max-width: 767px) {
  
.heading{
font-size: 1.1rem;
}
.para{
font-size: 0.8;
}
.general-list li{
font-size: 15px;

}
.general-image{
width: 250px;

}

}


@media screen and (max-width: 480px) {
.heading{
font-size: 1.0rem;
}
.para{
font-size: 0.7;
}
.general-list{


}


}


/* Header styling */
      header {
        background-color: #199EB8; /* Green background */
        padding: 1rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        position: relative;
      }

      .logo {
        width: 120px;
      }

      .logo-icon {
        margin-right: 10px;
        font-size: 2rem;
      }

      /* Desktop navigation */
      .desktop-nav {
        display: flex;
        flex: 1;
        justify-content: center;
      }

      .desktop-nav a {
        color: white;
        text-decoration: none;
        margin: 0 1.2rem;
        font-weight: 500;
        transition: all 0.3s ease;
        padding: 0.5rem 0;
        position: relative;
        font-family: Poppins, Arial, Helvetica, sans-serif;
      }

      .desktop-nav a:hover {
        color: #d1ffd6;
      }

      .desktop-nav a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #d1ffd6;
        transition: width 0.3s ease;
      }

      .desktop-nav a:hover::after {
        width: 100%;
      }

      /* Social media links */
      .social-links {
        display: flex;
        gap: 1.2rem;
      }

      .social-links a {
        color: white;
        font-size: 1.4rem;
        transition: all 0.3s ease;
       font-family: Poppins, Arial, Helvetica, sans-serif;

      }

      .social-links a:hover {
        color: #d1ffd6;
        transform: translateY(-3px);
      }

      /* Mobile navigation */
      .hamburger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
      }

      .hamburger span {
        height: 3px;
        width: 100%;
        background-color: white;
        border-radius: 3px;
        transition: all 0.3s ease;
      }

      /* Mobile menu */
      .mobile-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #111;
        padding: 6rem 2rem 2rem 2rem;
        z-index: 100;
        transition: left 0.4s ease;
      }

      .mobile-nav.active {
        left: 0;
      }

      .mobile-nav a {
        display: block;
        color: white;
        text-decoration: none;
        padding: 1rem 0;
        font-size: 1.2rem;
        border-bottom: 1px solid #333;
        transition: all 0.3s ease;
		  font-family: Poppins, Arial, Helvetica, sans-serif;
 
      }

      .mobile-nav a:hover {
        color: #4caf50;
        padding-left: 10px;
      }

      .mobile-social {
        margin-top: 2rem;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
      }

      .mobile-social a {
        border: none;
        font-size: 1.8rem;
        padding: 0.5rem;
      }

      .close-btn {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.8rem;
        color: white;
        background: none;
        border: none;
        cursor: pointer;
      }

      .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
      }

      .overlay.active {
        opacity: 1;
        visibility: visible;
      }

      /* Responsive design */
      @media (max-width: 992px) {
        .logo {
          width: 80px;
        }

        .desktop-nav a {
          margin: 0 0.8rem;
        }

        .social-links {
          gap: 0.8rem;
        }
      }

      @media (max-width: 768px) {
        .desktop-nav {
          display: none;
        }

        .hamburger {
          display: flex;
        }

        header {
          padding: 1rem;
        }

        /* FIXED: Only hide social links on mobile, not on desktop */
        .social-links.desktop-only {
          display: none;
        }
      }



/*FOOTER*/
     
footer{
	  background-color: #199EB8;

  color: white;
  margin-top: 10px;
	  padding-top: 50px;

}

.footer-columns{
  display: flex;
  flex-direction: column;
	align-items: center;

    
}
.footer-icons{
width: 35px;	
}
.left-footer{
display: flex;
flex-direction: column;
align-items: center;
justify-items: center;
}
.footer-nav-list{
  display: flex;
	flex-direction: row;
  gap: 13px;
  padding: 20px;
}

.icon-nav-list{
  display: flex;
	flex-direction: row;
  gap: 13px;
  padding: 0;
	align-self: center;
}



  .left-footer h2{
  font-size: 20px;
  font-weight: 600;
  padding-top: 4px;
}
.nav-list li{
  list-style: none;
}
.nav-list li a{
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  color: var(--font-color);
  font-family: Poppins, Arial, Helvetica, sans-serif;

}
.nav-list li a:hover{
  color: red;
}
.nav-icon-list li{
  list-style: none;
		padding: 10px;
padding-bottom: 0px;
}
.nav-icon-list li a{
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  color: var(--font-color);
}
.nav-icon-list li a:hover{
  color: red;
}

.right-footer{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.right-footer h2{
font-size: 19px;
  font-weight: 600;

}
.right-footer p{
   font-size: 14px;
  font-weight: 500;
  margin-top: 0;
  color: var(--font-color);
  line-height: 1.5;
  text-align: center;
}


.footer-text{
  flex-direction: column;
		margin-top: 20px;
  gap: 30px;
  display: flex;
  color: var(--font-color);
  align-self: center;
  text-align: center;

}
.footer-text a{
font-size: 15px;	
font-weight: 600;
color: white;
    font-family: Poppins, Arial;
	
}

.footer-text a:hover{
color: orangered;

}



.copyright{
font-size: 13px;
    font-family: Poppins, Arial;
	
}
@media screen and (min-width: 50rem) {
.footer-columns{
	  flex-direction: row;
 
  justify-content: space-between;
  gap: 80px;
}
.footer-nav-list{
  display: flex;
  flex-direction: column;
}
.left-footer {
  width: 300px;
}
.left-footer li a{
  font-size: 12px;

}
	
.icon-nav-list{
	flex-direction: column;
  margin-left: 30px;
  
}	
	
.right-footer{
padding-top: 30px;
  

}

.right-footer p{
  margin-top: 10px;
}

.copyright{
	margin-top: 0px;
}

ol li{
font-size: 16px;
	
}
ul li{
font-size: 16px;
}

.team-img{
	
}
.footer-text{
  flex: 1;
}

}




    
     

      .table-container {
        width: 95%;
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 0.5rem;
		  margin-bottom: 20px;
      }

   
      table {
        border: 1px solid #a2a9b1;
        border-collapse: collapse;
        background-color: #fff;
        margin: 0.5em 0;
        width: 100%;
        font-size: 0.75em;
      }

      th,
      td {
        border: 1px solid #a2a9b1;
        padding: 0.2em 0.3em;
        vertical-align: middle;
      }

      th {
        background-color: #eaecf0;
        text-align: left;
        font-weight: bold;
        white-space: nowrap;
      }

      .flag {
        width: 16px;
        height: 11px;
        margin-right: 4px;
        vertical-align: middle;
        display: inline-block;
      }

      tr:hover td {
        background-color: #f8f9fa;
      }

      .population {
        text-align: right;
        font-family: monospace;
        white-space: nowrap;
      }

      .footer {
        font-size: 0.7em;
        color: #54595d;
        margin-top: 1em;
        padding-top: 0.5em;
        border-top: 1px solid #a2a9b1;
      }

      .attribution {
        font-size: 0.65em;
        color: #72777d;
        margin-top: 0.3em;
      }

      /* Make everything even more compact on very small screens */
      @media (max-width: 480px) {
        .table-container {
          width: 98%;
          padding: 0 0.3rem;
        }

        table {
          font-size: 0.7em;
        }

        th,
        td {
          padding: 0.15em 0.2em;
        }

        .flag {
          width: 14px;
          height: 10px;
          margin-right: 3px;
        }

        h1 {
          font-size: 1.3em;
          margin: 0.3em 0 0.2em 0;
        }
      }

      @media (max-width: 360px) {
        table {
          font-size: 0.65em;
        }

        th,
        td {
          padding: 0.1em 0.15em;
        }

        .flag {
          width: 12px;
          height: 9px;
          margin-right: 2px;
        }
      }
    