@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
    list-style: none;

}
body
{
    width: 100%;
	min-height: 100vh;

	color: white;
}
html, body {
  overflow-x: hidden;
  overflow-y: auto;
  
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    align-items: center;
    padding: 0 3rem;
}

.nav-logo {
    width: 60px;
    padding: 1rem 0;
    
}

.nav-logo img {
    width: 100%;
    object-fit: cover;
    transform: none;
}

.nav-links-container {
    padding: 16px 0;
}

.nav-links{
    list-style: none;
}

.nav-links > .nav-link-item {
    display: inline-block;
    margin: 0 24px;
    position: relative;
}

.nav-links > .nav-link-item > a {
    text-decoration: none;
    display: flex;
    padding: 16px 0;
    color: #0c0c0c;
    font-weight: 500;
    transition: 0.3s ease;
    align-items: center;
}

.nav-links > .nav-link-item:hover  > a {
    color: #d98506;
}

.nav-link-item > a > .fa-chevron-down {
    display: inline-block;
    height: 16px;
    width: 16px;
    margin-left: 8px;
    transition: 0.3s ease;
    pointer-events: none;
} 

.nav-link-item:hover  > a > i.fa-chevron-down {
    transform: rotate(-180deg);
}
.nav-links > .nav-link-item > .dropdown-menu {
    width: 200px;
    position: absolute;
    left: -16px; 
    border-radius: 10px;
    overflow: hidden;
    background-color: #049502;
    transform: translateY(0);
    transition: 0.3s ease;
    visibility: hidden;
    opacity: 0;
    color: #fefefe;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.nav-links > .nav-link-item:hover  > .dropdown-menu {
    transform: translateY(8px);
    visibility: visible;
    opacity: 1;
}

.nav-links > .nav-link-item > .dropdown-menu > .dropdown-menu-item{
    list-style: none;
}

.nav-links > .nav-link-item > .dropdown-menu > .dropdown-menu-item > a {
  text-decoration: none;
  display: block;
  color: #fff; /* Always visible white text */
  font-weight: 500;
  padding: 16px;
  background: #049502; /* Keep background consistent */
}
.nav-links > .nav-link-item > .dropdown-menu > .dropdown-menu-item >a:hover{
    color: #d38b0d;
    background-color: #154d05;
    color: #fefefe;
}
.nav-container .background
{
  position: fixed;  
  z-index: 998;
  background-color: #00000071;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition:  0.3s ease-in;
}
.nav-container .background.active
{
    visibility: visible;
    opacity: 1;
    transition: 0.3s ease-out;
}
.nav-container .open-menu {
    display: none;
    font-size: 24px;
    color: #056d0c;
}

.nav-container .close-menu
{
    display: none;
    font-size: 24px;
    color: #fff;
}
.home
{
    z-index: 1;
    background: linear-gradient(-45deg,lime, green,yellow,orange);
    background-size: 400% 400%;
    width: 100%;
    height: 100vh;
    animation: animate 15s ease infinite;
    display: flex;
    align-items: center;
    padding: 70px 10% 0;
    
}
.home-content
{
    max-width: 600px;
}
.home-content h3
{
    font-size: 32px;
    font-weight: 700;
}
.home-content h1
{
    font-size: 56px;
    font-weight: 700;
    margin: -3px 0;
    color: #d98506;
}
.home-content p
{
    font-size: 20px;

}
.home-scl a
{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #f89c12;
    border-radius: 50%;
    font-size: 20px;
    color: #f89c12;
    text-decoration: none;
    margin: 30px 15px 30px 0;
}
.home-scl a:hover
{
    background: #f89c12;
    color: #081b29;
    box-shadow: 0 0 20px #f89c12;
}
.btn-box
{
    display: inline-block;
    padding: 12px 20px;
    background: #f89c12;
    border-radius: 40px;
    font-size: 15px;
    color: #081b29;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
}
.btn-box:hover
{
    box-shadow: 0 0 5px #f89c12, 
    0 0 25px #f89c12, 0 0 50px #f89c12,
    0 0 100px #f89c12, 0 0 200px #f89c12;
    

}
.im1 {
    width: 100%;
    max-width: 400px;
    object-fit: cover;
    vertical-align: middle;
    border-radius: 20px;
}

.wrapper {
    padding: 30px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    box-sizing: border-box;
    background: #f9f9f9;
}

.intro {
    flex: 1;
    font-size: 18px;
    letter-spacing: 1px;
    max-width: 600px;
}

.intro h1 {
    color: #030303;
    font-size: 28px;
    margin-bottom: 15px;
}

.description {
    color: #555;
    line-height: 1.6;
}

.carousel
{
    width: 100%;
    height: 100vh;
    margin-top: -50px;
    overflow: hidden;
    position: relative;
}

.carousel .list .item
{
    width: 180px;
    height: 250px;
    position: absolute;
    top: 80%;
    transform: translateY(-70%);
    left: 70%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background-position: 50% 50%;
    background-size: cover;
    z-index: 100;
    transition: 1s;
}

.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2)
{
    top: 0;
    left: 0;
    transform: translate(0,0);
    width: 100%;
    height: 100%;
}
.carousel .list .item:nth-child(3)
{
    left: 67%;
}
.carousel .list .item:nth-child(4)
{
    left: calc(67% + 200px);
}
.carousel .list .item:nth-child(5)
{
    left: calc(67% + 400px);
}
.carousel .list .item:nth-child(6)
{
    left: calc(67% + 600px);
}
.carousel .list .item:nth-child(n+7)
{
    left: calc(67% + 800px);
    opacity: 0;
}

.item .content 
{
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: 400px;
    text-align: left;
    color: #060606bb;
    font-weight: 500;
    display: none;      
}
.list .item:nth-child(2) .content
{
    display: block;
}
.content .title
{
    font-size: 60px;
    text-transform: uppercase;
    color: #05db14;
    font-weight: bold;
    line-height: 1;
    opacity: 0;
    animation: animates 1s ease-in-out 0.3s 1 forwards ;
}
.content .name
{
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    text-shadow: 3px 4px 4px rgba(255, 255, 255, 0.3);
    opacity: 0;
    animation: animates 1s ease-in-out 0.6s 1 forwards ;
}
.content .des
{
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    margin-left: 5px;
    opacity: 0;
    animation: animates 1s ease-in-out 0.9s 1 forwards ;
}
.arrows
{
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    align-items: center;
}
.arrows button
{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f89c12;
    color: #fff;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: monospace;
    font-weight: bold;
    cursor: pointer;
}
.arrows button:hover
{
    background: #fff;
    color: #000;
}
.carousel .timeRunning
{
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 4px;
    background-color: #049502;
    top: 0;
    left: 0;
    animation: runningTime 7s linear 1 forwards;
}
.strategic-plan {
  background-color: #f5f9f6;
  padding: 50px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.strategic-plan .container {
  max-width: 960px;
  margin: 0 auto;
}

.strategic-plan h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #2e7d32;
  text-align: center;
}
.strategic-plan p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* move this after .strategic-plan p */
.strategic-plan .intro {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}
.strategic-plan ol.plan-list {
  padding-left: 20px;
  list-style-type: decimal;
}

.strategic-plan ol.plan-list li {
  margin-bottom: 20px;
  font-size: 16px;
}

.strategic-plan .closing {
  font-weight: 500;
  font-style: italic;
  text-align: center;
  color: #555;
}

.wrapper1
{
    padding: 0px 60px;
    margin: 60px auto;
}
.content1
{
    width: 60%;
    float: left;
    text-align: left;
    padding: 0px 30px;
}
.content1 p
{
    font-family: sans-serif;
    font-size: 17px;
    color: #3d3d3d;
    margin-top: 20px;
    letter-spacing: 1px;
    
}
.image-section
{
    width: 40%;
    float: right;
    padding: 0px 30px;
}
.image-section img
{
    max-width: 100%;
    height: 450px;
    border-radius: 15px;
}
.testimonial_wrap
{
  min-height: 100vh;
  padding-top: 50px;
  text-align: center;
}
.testimonial_title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #28a745;
  font-family: Arial, sans-serif;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Image Style + Animation */
.testimonial_image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Trigger Animation */
.show {
  opacity: 1;
  transform: translateY(0);
}
.testimonial_wrap p
{
  color: #000;
}
.testimonial_wrap .conttainer
{
    max-width: 1180px;
    margin: 0 auto;
    
}
.testimonial_wrap .inner
{
  position: relative;
  padding: 1.6rem 11rem;
  text-align: center;
  cursor: grab;
}
.testimonial_wrap .thumb img
{
  max-width: 80px;        
  height: 80px;        
  object-fit: cover;    
  border-radius: 50%;
  display: block;
}
.testimonial_wrap .inner::before
{
  content: "\f10e";
  font-family: fontAwesome;
  position: absolute;
  z-index: -1;
  left: 10%;
  top: 50%;
  right: auto;
  font-size: 200px;
  line-height: 1;
  color: rgba(47, 235, 69, 0.07);
  transform: translateY(-50%)rotate(-10deg);
  transition: 0.4s all;
}
.testimonial_wrap .thumb
{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.testimonial_wrap .excert p
{
  font-size: 17px;
  line-height: 38px;
  color: #555555;
  font-weight: 400;
}
.testimonial_wrap .infot p
{
  font-size: 17px;
}
.testimonial_wrap .infot i
{
  margin: 12px 0;
  color: #d88a02;
}
.testimonial_wrap .infot a
{
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  color: #151515;
  display: block;
  transition: 0.3s all;
}
.testimonial_wrap .infot a:hover
{
  color: #049502;
}
.testimonial_wrap .infot span
{
  line-height: 1;
  font-size: 17px;
  color: #555555;
}
.testimonial_wrap .slider .slick-dots li button::before
{
  font-size: 16px;
  color: #e2e0dd;
  opacity: 1;
}
.testimonial_wrap .slider .slick-dots li.slick-active button::before
{
  opacity: 1;
  color: #d98506;
}
.testimonial_wrap .slider .slick-dots li
{
  margin: 0 3px;
}
.footer
{
    width: 100%;
    position: absolute;
    padding: 100px 0 30px;
    background: linear-gradient(to right, #d98506, #056d0c);
    color: #fff;
    border-top-left-radius: 125px;
    font-size: 13px;
    line-height: 15px;
}
.row
{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.col
{
    flex-basis: 25%;
    padding: 10px;

}
.col:nth-child(2),.col:nth-child(3)
{
    flex-basis: 15%;
}
.logo1
{
    width: 80px;
    margin-bottom: 10px;
}
.col h3
{
    width: fit-content;
    margin-bottom: 10px;
    position: relative;
}
.email-id
{
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 10px 0;
}
.cols li
{
    list-style: none;
    margin-bottom: 12px;
}
.cols li a
{
    text-decoration: none;
    color: #fff;
}
form
{
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}
form .far
{
    font-size: 18px;
    margin-right: 10px;
}
form input
{
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}
form button
{
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}
form button .fas
{
    font-size: 16px;
    color: #ccc;

}
.social-icons .fab
{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
}
hr
{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;

}
.copyright 
{
    text-align: center;
}
.underline
{
    width: 100%;
    height: 2px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 15px;
    left: 0;
    overflow: hidden;
}
.underline span
{
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
    
}
.hero-section 
{
  background: linear-gradient(-45deg,lime, green,rgba(255, 255, 0, 0.911),orange);
  animation: animate 15s ease infinite;
  z-index: 1;
  background-size: 400% 400%;
  color: white;
  text-align: center;
  padding: 150px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  height: 420px;
  
}

.hero-content h1 
{
  font-size: 52px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-content p 
{
  font-size: 18px;
  
}
.heading
{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;
}
.heading h1
{
    font-size: 50px;
    color:   #056d0c;
    margin-bottom: 25px;
    position: relative;
}
.heading h1::after
{
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: #fb9803;
}
.heading p
{
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
}
.container1
{
    width: 90%;
    margin: 0 auto;
    padding: 10px 20px;
}
.about
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-height: 100vh;

}
.about-image
{
    flex: 1;
    margin-right: 40px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.623);
    border-radius: 10px;
    
}
.about-image img
{
    max-width: 100%;
    height: auto;
    display: block;
    transition: 0.3s ease;
    border-radius: 10px; 

}
.about-image img:hover
{
    transform: scale(1.2);
}
.about-content
{
    flex: 1;
}
.about-content h2
{
    font-size: 20px;
    margin-bottom: 10px;
    color: #049502;
}

.about-content p
{
    font-size: 16px;
    line-height: 1.5;
    color: #666;
}
.container2
{
    width: 90%;
    margin: 0 auto;
    padding: 10px 20px;

}
.objective
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-height: 100vh;
}
.objective-image
{
    flex: 1;
    margin-right: 40px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.623);
    border-radius: 10px;
    
}
.objective-image img
{
    max-width: 100%;
    height: auto;
    display: block;
    transition: 0.3s ease;
    border-radius: 10px; 
}
.objective-image img:hover
{
    transform: scale(1.2);
}
.objective-content
{
    flex: 1;
    margin-right: 40px;
}
.objective-content h2
{
    font-size: 20px;
    margin-bottom: 10px;
    color: #049502;
}

.objective-content p
{
    font-size: 16px;
    line-height: 1.5;
    color: #666;
}
figure {
    margin: 0;
    text-align: center;
    
}

figcaption {
    font-size: 14px;
    color: #000;
    margin-top: 8px;
    font-style: italic;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 1s ease-out forwards;
    text-transform: capitalize;
    font-weight: 800;
}


figure:nth-of-type(1) figcaption {
    animation-delay: 0.5s; 
}

figure:nth-of-type(2) figcaption {
    animation-delay: 1s; 
}


figure:nth-of-type(3) figcaption {
    animation-delay: 1.5s;
}


@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.service
{
    width: 100%;
    height: auto;
    padding: 70px 12%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background:  #fdf8f8fd;
}
.service-head
{
    width: 100%;
    margin-bottom: 70px;
    display: grid;
    place-items: center;
    text-align: center;
}
.service-head h3
{
    margin-bottom: -5px;
    font-size: 30px;
    color: #000;
}
.service-head p
{
    font-size: 20px;
}
.service-head h3 span
{
    color: #049502;
}
.service-container
{
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3 ,1fr);
    grid-gap: 60px 40px;
}
.card
{
    padding: 30px;
    background-color:  #fb9803;
    color: #fff;
    border-radius: 5px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    position: relative;
    transition: 0.7s;
}
.card h2
{
    font-size: 20px;
    margin: 10px 0 15px 0;
    color: #056d0c;
    transition: 0.7s;
}
.card p 
{
    font-size: 16px;
    line-height: 1.2;
    opacity: 0.8;
}
.card .icon
{
    width: 70px;
    height: 50px;
    background-color: #fff;
    color: #fb9803;
    border-radius: 3px;
    display: grid;
    place-items: center;
    font-size: 18px;
    position: absolute;
    top: 0;
    left: 30px;
    transform: translateY(-50%);
    transition: 0.7s;
}
.card:hover
{
    color: #333;
    background-color: rgb(230,230,230);
}
.card:hover .icon
{
    color: #fff;
    background-color: #fb9803;
}
.card:hover h2
{
    color: #fb9803;
    transition: 0.7s;
}
.timeline-section {
  padding: 60px 20px;
  background-color: #f5f9f6;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  max-width: 1000px;
  margin: auto;
}

.timeline-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: #2e7d32;
}

.timeline {
  position: relative;
  padding-left: 30px;
  border-left: 4px solid #2e7d32;
  
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  
}

.timeline-dot {
  position: absolute;
  left: -15px;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #2e7d32;
  border-radius: 50%;
  border: 4px solid #f5f9f6;
}

.timeline-date {
  font-size: 20px;
  font-weight: bold;
  color: #049502;
  margin-bottom: 10px;
}

.timeline-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  
}

.timeline-content h3 {
  margin: 0 0 5px;
  font-size: 18px;
  color: #2e2e2e;
}

.timeline-content p {
  margin: 0 0 15px;
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}


.team-section 
{
  padding: 60px 20px;
  background-color: #ffffff;
}

.team-container 
{
  max-width: 1200px;
  margin: auto;
}

.section-title 
{
  text-align: center;
  color: #049502; /* Deep green */
  margin-bottom: 40px;
  font-size: 2.5rem;
  position: relative;
}

.section-title::after 
{
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #fb9803;
  margin: 10px auto 0;
}

/* Team Grid */
.team-grid 
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Team Card */
.team-member 
{
  background: #fff;
  border: 1px solid #e0e0e0;
  border-left: 6px solid #049502;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-member:hover 
{
  transform: translateY(-5px);
}

.team-member img 
{
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.team-member h3 
{
  margin: 10px 0 5px;
  color: #049502;
}

.team-member .role 
{
  color: #fb9803;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-member .bio 
{
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}
.program-container 
{
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  
}

.section-title 
{
  text-align: center;
  color: #049502;
  font-size: 2.5rem;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after 
{
  content: '';
  width: 70px;
  height: 4px;
  background-color: #fb9803;
  display: block;
  margin: 10px auto 0;
}

/* Program Block Layout */
.program-block 
{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 80px;
}

.program-block.reverse 
{
  flex-direction: row-reverse;
}

.program-image 
{
  flex: 1 1 50%;
  padding: 10px;
}

.program-image img 
{
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.program-content 
{
  flex: 1 1 50%;
  padding: 20px;
}

.program-content h3
{
  font-size: 1.8rem;
  color: #049502;
  margin-bottom: 10px;
}
.program-content p
{
    color: #030303;
}
.program-logo 
{
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* Filter Buttons */
.filter-buttons 
{
  text-align: center;
  margin-bottom: 30px;
}

.filter-btn 
{
  background-color: #1b5e20;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active 
{
  background-color: orange;
  color: #fff;
}

/* Gallery Grid */
.gallery-grid 
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-item img
{
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item:hover img 
{
  transform: scale(1.05);
}

/* Lightbox Styles */
.lightbox 
{
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  text-align: center;
}

.lightbox-content 
{
  max-width: 90%;
  max-height: 80%;
  margin-top: 20px;
}

.lightbox-close
{
  position: absolute;
  top: 20px; right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}
.video-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1b5e20;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background-color: orange;
  margin: 10px auto 0;
}

/* Grid Layout */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Responsive video wrappers */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
  background: #000;
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}
.workbooks-section {
  background: #fefefe;
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1b5e20;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: '';
  width: 70px;
  height: 4px;
  background: orange;
  display: block;
  margin: 10px auto 0;
}

/* Grid layout */
.workbook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Individual item */
.workbook-item {
  background: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.workbook-item:hover {
  transform: translateY(-5px);
}

.workbook-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.workbook-text {
  padding: 20px;
}

.workbook-text h3 {
  font-size: 1.2rem;
  color: #1b5e20;
  margin-bottom: 10px;
}

.workbook-text p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
}
.session-container {
  max-width: 700px;
  margin: auto;
  padding: 40px 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1b5e20;
  margin-bottom: 10px;
}

.section-subtext {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

.booking-form button {
  background-color: #1b5e20;
  color: #fff;
  padding: 14px;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.booking-form button:hover {
  background-color: orange;
}

.container5{
	width: 100%;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px 8%;
}
.container5 .contactrow{
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1100px;
}
.contactrow section.col{
	display: flex;
	flex-direction: column;
}
.contactrow section.left{
	flex-basis: 35%;
	min-width: 320px;
	margin-right: 60px;
}
.contactrow section.right{
	flex-basis: 60%;
}
section.left .contactTitle h2{
	position: relative;
	font-size: 28px;
	color: #030303;
	display: inline-block;
	margin-bottom: 25px;
}
section.left .contactTitle h2::before{
	content: '';
	position: absolute;
	width: 50%;
	height: 1px;
	background-color: #0a0909;
	top: 120%;
	left: 0;
}
section.left .contactTitle h2::after{
	content: '';
	position: absolute;
	width: 25%;
	height: 3px;
	background-color: #049502;
	top: calc(120% - 1px);
	left: 0;
}
section.left .contactTitle p{
	font-size: 17px;
	color: #2c2a2a;
	letter-spacing: 1px;
	line-height: 1.2;
	padding-bottom: 22px;
}
section.left .contactInfo{
	margin-bottom: 16px;
}
.contactInfo .iconGroup{
	display: flex;
	align-items: center;
	margin: 25px 0px;
}
.iconGroup .icon{
	width: 45px;
	height: 45px;
	border: 2px solid #049502;
	border-radius: 50%;
	margin-right: 20px;
	position: relative;
}
.iconGroup .icon i{
	font-size: 20px;
	color: #0c0b0b;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.iconGroup .details span{
	display: block;
	color: #1b1a1a;
	font-size: 18px;
}
.iconGroup .details span:nth-child(1){
	text-transform: uppercase;
	color: #fb9803;
}
section.left .socialMedia{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	margin: 22px 0px 20px;
}
.socialMedia a{
	width: 35px;
	height: 35px;
	text-decoration: none;
	text-align: center;
	margin-right: 15px;
	border-radius: 5px;
	background-color: #049502;
	transition: 0.4s;
}
.socialMedia a i{
	color: #201f1f;
	font-size: 18px;
	line-height: 35px;
	border: 1px solid transparent;
	transition-delay: 0.4s;
}
.socialMedia a:hover{
	transform: translateY(-5px);
	background-color: #2e2e2e;
	color: #049502;
	border: 1px solid #049502;
}
.socialMedia a:hover i{
	color: rgb(208, 145, 9);
}

/* Code for the right section (column) */

.contactrow section.right .messageForm{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: 30px;
}
.contactrow section.right .inputGroup{
	margin: 18px 0px;
	position: relative;
}
.messageForm .halfWidth{
	flex-basis: 48%;
}
.messageForm .fullWidth{
	flex-basis: 100%;
}
.messageForm input, .messageForm textarea{
	width: 100%;
	font-size: 18px;
	padding: 2px 0px;
	background-color: #f7f3f3;
	color: #060606;
	border: none;
	border-bottom: 2px solid #666;
	outline: none;
}
.messageForm textarea{
	resize: none;
	height: 220px;
	display: block;
}
textarea::-webkit-scrollbar{
	width: 5px;
}
textarea::-webkit-scrollbar-track{
	background-color: #1e1e1e;
	border-radius: 15px;
}
textarea::-webkit-scrollbar-thumb{
	background-color: #049502;
	border-radius: 15px;
}
.inputGroup label{
	position: absolute;
	left: 0;
	bottom: 4px;
	color: #111111;
	font-size: 18px;
	transition: 0.4s;
	pointer-events: none;
}
.inputGroup:nth-child(4) label{
	top: 2px;
}
.inputGroup input:focus ~ label, .inputGroup textarea:focus ~ label,
.inputGroup input:valid ~ label, .inputGroup textarea:valid ~ label
{
	transform: translateY(-30px);
	font-size: 16px;
}
.inputGroup button{
	padding: 8px 16px;
	font-size: 18px;
	background-color: #049502;
	color: #ddd;
	border: 1px solid transparent;
	border-radius: 25px;
	outline: none;
	cursor: pointer;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
	transition: 0.4s;
}
.inputGroup button:hover{
	background-color: #2e2e2e;
	color: #fb9803;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
	border: 1px solid #fb9803;
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2e7d32; /* Green */
  margin: 50px 0 30px;
  animation: fadeInDown 1s ease-in-out;
}

/* Blog Container Grid */
.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* Blog Card */
.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Blog Image */
.blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

/* Blog Content */
.blog-content {
  padding: 20px;
}

.blog-content h2 {
  font-size: 1.5rem;
  color: #2e7d32; /* Green */
  margin: 0 0 10px;
}

.blog-content .date {
  font-size: 0.9rem;
  color: gray;
  margin-bottom: 10px;
}

.blog-content .excerpt {
  font-size: 1rem;
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  color: #ff6f00; /* Orange */
  transition: 0.3s ease;
}

.read-more:hover {
  color: #e65100; /* Darker orange */
}

/* Animations */
@keyframes fadeInUp {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInDown {
  0% { transform: translateY(-20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Delay each card animation for a nice stagger effect */
.blog-card:nth-child(1) {
  animation-delay: 0.2s;
}
.blog-card:nth-child(2) {
  animation-delay: 0.4s;
}
.blog-card:nth-child(3) {
  animation-delay: 0.6s;
}
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
@media(max-width: 1100px){
	.messageForm .halfWidth{
		flex-basis: 100%;
	}
}
@media(max-width: 900px){
	.container .row{
		flex-wrap: wrap;
	}
	.row section.left, .row section.right{
		flex-basis: 100%;
		margin: 0px;
	}
}
@media (max-width: 768px) {
  .container5 {
    padding: 20px 5%;
  }

  .contactTitle h2,
  .contactTitle p {
    text-align: center;
  }

  .socialMedia {
    justify-content: center;
  }

  .contactrow section.left,
  .contactrow section.right {
    padding: 20px 0;
  }

  .inputGroup button {
    width: 100%;
    padding: 15px 0;
  }
}

@media (max-width: 1100px) {
  .contactrow section.left,
  .contactrow section.right {
    flex-basis: 100%;
    margin: 0;
  }
  .messageForm .halfWidth {
    flex-basis: 100%;
  }
}

@media (max-width: 900px) {
  .container5 .contactrow {
    flex-wrap: wrap;
    flex-direction: column; /* stack columns */
    align-items: center;
  }

  .contactrow section.left,
  .contactrow section.right {
    width: 100%;
    margin: 0 auto;
  }

  .contactTitle h2,
  .contactTitle p {
    text-align: center;
  }

  .socialMedia {
    justify-content: center;
  }

  .contactInfo .iconGroup {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container5 {
    padding: 20px 5%;
  }

  .contactTitle h2,
  .contactTitle p {
    text-align: center;
  }

  .socialMedia {
    justify-content: center;
  }

  .contactrow section.left,
  .contactrow section.right {
    padding: 20px 0;
    width: 100%;
  }

  .messageForm {
    flex-direction: column;
  }

  .inputGroup button {
    width: 100%;
    padding: 15px 0;
  }
}

@media (max-width: 480px) {
  .contactTitle h2 {
    font-size: 22px;
  }

  .contactTitle p {
    font-size: 15px;
  }

  .iconGroup .details span {
    font-size: 16px;
  }

  .inputGroup button {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .nav-links > .nav-link-item.active > .dropdown-menu {
    display: block;
    position: relative;   /* stacked below */
    left: 0;
    width: 100%;
    visibility: visible;
    opacity: 1;
    transform: none;      /* no floating animation */
    color: #ffffff;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial_wrap .inner{
    padding: 15px 20px;
  }
  .testimonial_wrap .inner::before{
    font-size: 140px;
  }
  .testimonial_wrap .excert p{
    font-size: 14px;
    line-height: 28px;
  }
  .testimonial_wrap .info a
  {
    font-size: 13px;
  }
  .testimonial_wrap .info span
  {
    font-size: 12px;
  }
}















/*keyframes & media*/
@keyframes moving{
    0%{
        left: -20px;
    }
    100%{
        left: 100%;
    }
}
@keyframes runningTime {
    from{width: 0%;}
    to{width: 100%;}
}
@keyframes animates {
    from{
        opacity: 0;
        transform: translate(0 , 100px);
        filter: blur(33px);
    }
    to{
        opacity: 1;
        transform: translate(0 );
        filter: blur(0);
    }
}
@keyframes animate {
    0%{
        background-position: 0 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0 50%;
    }
}

@media (max-width: 992px){
    body 
    {
        max-width: 992px;
        overflow: hidden;
        
    }
    .nav-container
    {
        padding: 0 3rem;
    }
    .nav-container .nav-links-container
    {
        position: absolute;
        right: -400px;
        visibility: hidden;
        width: 400px;
        height: 100%;
        top: 0;
        overflow-y: auto;
        background-color: #f89c12;
        z-index: 999;
        padding: 15px;
        transition: all 0.3s ease-in;
    }
    .nav-container .nav-links-container.open
    {
        visibility: visible;
        transition: all 0.3s ease-out;
        right: 0;
    }
    .nav-links-container > .nav-links > .nav-link-item
    {
        display: block;
        margin: 0;
    }
    .nav-links-container > .nav-links > .nav-link-item > a
    {
        color: #fff;
        padding: 24px 16px;
        border-bottom: 1px solid #ffffff20;
        display: flex;
        justify-content: space-between;
    }
    .nav-link-item:hover > a > .fa-chevron-down
    {
        transform: rotate(0);
    }
    .dropdown-menu-branch.active > a i.fa-chevron-down {
    transform: rotate(-180deg);
}
    .nav-links > .nav-link-item > .dropdown-menu
    {
        width: 100%;
        position: relative;
        opacity: 1;
        visibility: visible;
        border-radius: 0;
        border-bottom: 1px solid #ffffff20;
        background-color: transparent;
        transform: translateY(0px);
        box-shadow: none;
        padding: 0px;
        left: auto;
        max-height: 0;
        overflow: hidden;
    }
    .nav-links > .nav-link-item:hover > .dropdown-menu
    {
        transform: translateY(0px);
    }
    .nav-links > .nav-link-item > .dropdown-menu > .dropdown-menu-item > a
    {
        color: #ffffff21;
        border: none;
    }
    .nav-links 
    > .nav-link-item 
    > .dropdown-menu 
    > .dropdown-menu-item 
    > a:hover
    {
        color: #fff;
    }
    .nav-logo
    {
        padding: 1.5rem 0;
    }
    .nav-container .open-menu
    {
        cursor: pointer;
        display: block;
    }
    .nav-container .close-menu
    {
        display: block;
        padding: 16px;
        cursor: pointer;
        width: fit-content;
    }
    .list .item .content
    {
        left: 50px;
    }
    .content .title ,.content .name
    {
        font-size: 70px;
    }
    .content .des
    {
        font-size: 16px;
    }
}
@media screen and (max-width: 690px) {
    .list .item .content
    {
        top: 40%;
    }
    .content .title ,.content .name
    {
        font-size: 45px;
    }
    footer{
        bottom: unset;
    }
}
@media screen and (max-width: 900px) {
    .strategic{
        width: 100%;
        padding-top: 20px;
    }
    .strategic h3{
        font-size: 32px;
    }
    .content1{
        width: 100%;
        float: none;
    }
}
@media screen and (max-width: 768px){
    .heading
    {
        padding: 0 20px;
    }
    .heading h1
    {
        font-size: 36px; 
    }
    .heading p
    {
        font-size: 17px;
        margin-bottom: 0px;
    }
    .container1
    {
        padding: 0px;
    }
    .about
    {
        padding: 20px;
        flex-direction: column;
    }
    .about-image
    {
        margin-right: 0px;
        margin-bottom: 20px;
    }
    .about-content p
    {
        padding: 0px;
        font-size: 16px;
    }
    .container2
    {
        padding: 0px;
    }
    .objective
    {
        padding: 20px;
        flex-direction: column;
    }
    .objective-image
    {
        margin-right: 0px;
        margin-bottom: 20px;
    }
    .objective-content p
    {
        padding: 0px;
        font-size: 16px;
    }
        .column
    {
        flex: 0 50%;
        max-width: 50%;
    }
}
@media (max-width: 768px){
    .contact-container
    {
        flex-direction: column;
        gap: 40px;
        padding: 20px;
    }
    .left,
    .right
    {
        width: 100%;
    }
    .contact-info
    {
        margin-top: 40px;
    }
    .c-icons
    {
        position: relative;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 200px;
        margin: auto;
        padding: 10px 20px;
        flex-direction: row;
        justify-content: space-between;
        border-radius: 0;
    }
}
@media (max-width: 600px) {
  .section-title {
    font-size: 1.8rem;
  }

  .team-member {
    padding: 15px;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .program-block {
    flex-direction: column;
  }

  .program-image, .program-content {
    flex: 1 1 100%;
    padding: 10px 0;
  }

  .program-content {
    padding-top: 20px;
  }

  .program-logo {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
    .wrapper {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        
    }

    .intro {
        font-size: 16px;
    }

    .intro h1 {
        font-size: 24px;
    }
}
@media screen and (max-width: 600px) {
  .timeline-section {
    padding: 40px 10px;
  }

  .timeline-title {
    font-size: 24px;
  }

  .timeline-date {
    font-size: 18px;
  }

  .timeline-content {
    font-size: 14px;
  }

  .timeline {
    padding-left: 20px;
  }

  .timeline-dot {
    left: -10px;
    width: 16px;
    height: 16px;
  }
}
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  font-size: 22px;
  background-color: #0d8914;
  color: white;
  border: none;
  border-radius: 30%;
  z-index: 999;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}

#backToTop:hover {
  background-color: #1a5d1a;
}

/* Optional: Make it more prominent on small screens */
@media (max-width: 600px) {
  #backToTop {
    width: 55px;
    height: 55px;
    font-size: 26px;
  }
}

#preloader {
      position: fixed;
      top: 0;
      left: 0;
      background: #ffffff;
      width: 100%;
      height: 100%;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    /* Hide preloader after loading */
    #preloader.hidden {
      opacity: 0;
      visibility: hidden;
    }

    /* Spinner style */
    .loader {
      width: 50px;
      height: 50px;
      border: 5px solid #2e7d32;
      border-top: 5px solid transparent;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0%   { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }


@media screen and (max-width: 768px){
  .service {
    padding: 40px 5%;
  }

  .service-container {
    grid-template-columns: 1fr; /* stack cards vertically */
    grid-gap: 30px;
  }
}
/* Tablets (2 cards per row) */
@media screen and (max-width: 992px) {
  .service-container {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px 20px;
  }
}

/* Phones (1 card per row) */
@media screen and (max-width: 768px) {
  .service {
    padding: 40px 5%;
  }

  .service-container {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
}
@media (max-width: 992px) {
  /* Force dropdown links visible when menu is open */
  .nav-links > .nav-link-item.active > .dropdown-menu .dropdown-menu-item a {
    color: #fff; /* White text for visibility */
    opacity: 1;
  }

  /* Make sure dropdown itself is stacked */
  .nav-links > .nav-link-item.active > .dropdown-menu {
    display: block;
    position: relative;
    width: 100%;
    visibility: visible;
    opacity: 1;
    background: #049502; /* Green background */
    transform: none;
  }
}

#survey-app {
    font-family: Arial, sans-serif;
    padding: 20px;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .survey-section {
        padding: 25px;
    }
    label {
        font-size: 15px;
    }
}

/* Sections */
.survey-section {
    display: none;
    max-width: 700px;
    margin: auto;
    background: #ffffff;
    color: #000;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    animation: fadeIn 0.6s ease;
}

.survey-section.active {
    display: block;
}
.checkbox-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  padding: 10px 0;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #444;
}

.checkbox-grid input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  accent-color: #22c55e; /* Green checkmark */
}
/* Buttons with Green + Blue Theme */
.survey-list button {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    background: linear-gradient(90deg, #f97316, #22c55e);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.survey-list button:hover {
    transform: scale(1.03);
    opacity: 0.9;
}

/* Progress bar */
.progress-container {
  width: 100%;
  background: #ffeccc;
  border-radius: 20px;
  overflow: hidden;
  height: 14px;
  margin: 20px 0;
}

#progressBar {
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, #22c55e, #f97316);
  border-radius: 20px;
  transition: width 0.4s ease-in-out;
}

label {
    display: block;
    padding: 10px 0;
}

input[type="checkbox"] {
    transform: scale(1.3);
    margin-right: 10px;
}

/* Action buttons */
.survey-actions button {
    margin: 10px;
    padding: 12px 20px;
    border: none;
    background: #f97316;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.survey-actions button:hover {
    background: #22c55e;
}

/* Result Box */
.result-box {
    margin-top: 25px;
    padding: 15px;
    background: #f0fdf4;
    border-left: 4px solid #22c55e;
    border-radius: 6px;
    font-size: 16px;
    color: #000;
}

/* Smooth Fade Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.nav-logo img {
    transform: none !important;
    rotate: 0deg !important;
    scale: 1 !important;
    transform-origin: center !important;
}