@import url('https://fonts.googleapis.com/css2?family=Margarine&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
html{
  scroll-behavior: smooth;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1{
  color: rgb(203, 115, 0);
}

:root {
  /*------------Font Family---------*/
  
  --ff-primary: "Roboto", Snans-serif;
  --ff-secondary: "Inter", Snans-serif;
  --ff-design: "Satisfy", cursive;
  --ff-brand: "Margarine", Snans-serif;

  /*------------ Colors -------------*/
--clr-white: white;
--clr-black: rgb(65, 65, 65);
--clr-red: rgb(255, 0, 0);
--clr-blue: rgb(0, 149, 255);
--clr-gray: rgb(255, 255, 255);
--clr-primary: rgb(9, 231, 57);
--clr-primary-ligth: rgb(170, 255, 0);
--clr-secondary: rgb(234, 0, 255);
  
}

/*------global css ------*/
a{
  text-decoration: none;

}
img{
  width: 100px;
  display: block;
}
h1,h2,h3,h4{
  letter-spacing: 0.5px;
  text-transform: capitalize;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
h1{
  font-size: 3rem;;
}
h2{
  font-size: 2rem;;
}
h3{
  font-size: 1.5rem;;
}
h4{
  font-size: 0.875rem;;
}
p{
  margin-bottom: 1.75rem;
}
body{
  font-family:var(--ff-primary) ;
  background-color: var(--clr-white);
  color: var(--clr-gray);
  line-height: 1.5;
}
.clearfix::after,.clearfix::before{
  content:"";
  clear: both;
  display: table;
}
.section-center{
  padding: 4rem 0;
  width: 85vw;
  margin: 0 auto;
  max-width: 1170px;

}
.section-title h3{
  font-family: var(--ff-design);
  color: #0099ff;
}
.section-title{
  margin-bottom: 2rem;
}
@media  screen and (min-width:992px) {
  .section-center {
    width:95%;
    padding: 4rem 1rem;
  }
  
}

:root {
  --clr-blue: #00aaff;
  --clr-white: #ffffff;
  --transition: all 0.3s ease;
}

#nav-check {
  display: none;
}

/* Toggle open button */
.nav-btn svg {
  fill: var(--clr-blue);
  position: fixed;
  top: 20px;
  left: 20px;
  cursor: pointer;
  z-index: 999;

 
 
}

/* NAVBAR hidden by default */
.sticky-header {
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 1000;
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

.site-title {
  font-size: 1.5rem;
  color: #007BFF;
  font-weight: bold;
  
}
/*-------------logo----------*/

.navbar {
  position: fixed;
  background-color: rgba(65, 65, 65, 0.95); /* Less transparent */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(-100%);
  transition: var(--transition);
  z-index: 998;
}

/* Show nav when checked */
#nav-check:checked ~ .navbar {
  transform: translateX(0%);
}

.navbar-header img {
  width: 100px;
  margin: 0 auto;
  border-radius: 50px;
  display: block;
}

.navbar-header {
  position: relative;
  text-align: center;
}

.navbar h1 {
  padding: 1rem;
  font-size: 1.5rem;
  color: transparent;
  background-image: linear-gradient(rgba(0, 217, 255, 0.708), rgb(0, 136, 255));
  background-clip: text;
  -webkit-background-clip: text;
  margin-bottom: -1rem;
  text-transform: uppercase;
}

.nav-close {
  position: absolute;
  right: 15px;
  top: 15px;
}

.nav-close svg {
  fill: var(--clr-white);
  cursor: pointer;
}

.nav-close:hover svg {
  fill: #ff5050;
}

.nav-items {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.nav-link {
  display: block;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 1.2rem;
  padding: 0.75rem 1rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: var(--transition);
}

.nav-link:hover {
  background-color: aqua;
  padding-left: 1.5rem;
  border-left: 0.5rem solid white;
}

@media screen and (min-width: 768px) {
  .navbar {
    width: 35%;
    max-width: 25rem;
  }
}




/* ORG CHART */
.org-chart {
  padding: 2rem;
  text-align: center;
  background: #f5f5f5;
  font-family: 'Segoe UI', sans-serif;
}

.org-chart h2 {
  font-size: 1.8rem;
  color: #004080;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.org-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.sub-roles {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.role {
  background: #fff;
  border: 2px solid #0077cc;
  border-radius: 10px;
  width: 180px;              /* equal width */
  height: 80px;              /* equal height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.role strong {
  color: #0077cc;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.role span {
  font-size: 0.85rem;
  color: #333;
}

.role:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.15);
}

/* Highlight Chairman */
.chairman {
  background: #e6f2ff;
  border: 2px solid #004080;
  font-weight: bold;
  width: 200px;
  height: 90px;
}

/* Responsive */
@media (max-width: 768px) {
  .role {
    width: 150px;
    height: 70px;
    font-size: 0.85rem;
  }
}

/*-----------------methodology------------*/
.clients-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
  background-color: antiquewhite;
  border-radius: 3rem;
}

.clients-list ul {
  list-style-type: none;
  padding: 10px 50px;
  margin: 0;
}

.clients-list li {
  font-size: 1.5rem;
  color: rgb(0, 0, 0);
  padding: 10px 20px;
  text-align: justify;
}

/* Tablet view */
@media screen and (max-width: 768px) {
  .clients-list li {
    padding: 10px 15px;
    font-size: 1.3rem;
  }
}

/* Mobile view */
@media screen and (max-width: 480px) {
  .clients-list li {
    padding: 8px 6px;
    font-size: 1rem;
    text-align: left;
  }
}

.clients-list h2{
    animation: color 5s linear infinite;
    font-size: 2rem;
}
@keyframes color{
    0%{
        color: rgb(255, 89, 0);
    }
    50%{
        color: rgb(0, 200, 255);
    }
    100%{
        color: rgb(204, 0, 255);
    }
}
@media screen {(max-width: 796px;)
    padding: 10px 0px;
    
}
/*-----------text animation-------*/
.animate-on-scroll {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateX(0);
}

/*--------------picture----------/
/* Thumbnail Gallery */
.client-heading {
  text-align: center;
  font-size: 2rem;
  margin: 2rem 0;
  color: #1eff00;
  font-family: sans-serif;
  text-transform: uppercase;
  background-color: #004080;
  border-radius: 30%;
}

.client-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 0 2rem 2rem;
  justify-items: center;
}

.client-gallery img {
  width: 100%;
  height: 200px;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.client-gallery img:hover {
  transform: scale(1.05);
}


/* Responsive Media Query */
@media (max-width: 600px) {
  .client-heading{
    font-size: 1.5rem;
  }

  .client-gallery {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    padding: 0 1rem 2rem;
  }
}





