html{
   height: 100%;
}

body{
    background-color:  #eef5f1;
    margin: 0px;
    padding: 0px;
     height: 100%;
}
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
    flex: 1;
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ===== NAVBAR BASE ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #0b2f23; /* deep green */
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.navbar-inner {
  margin: auto;
  height: 64px;
   padding: 0 50px 0 15px;
  display: flex;
  align-items:center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 150px;
  margin-left: -20px;
}

/* Desktop Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
   padding: 8px 14px;
  border-radius: 6px;

  display: inline-flex;
  align-items: center;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease;
}
.nav-links a:hover {
     background-color: rgba(205, 230, 219, 0.18); /* soft green */
  color: #cde6db;
  transform: translateY(-2px);
}

/* Menu Button (Hidden on Desktop) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: rgb(255, 255, 255);
  cursor: pointer;
  z-index: 1200;
}
.menu-toggle i {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle:hover i {
  transform: scale(1.1);
  opacity: 0.9;
}
.close-btn i {
  transition: transform 0.5s ease, opacity 0.2s ease;
}

.close-btn:hover i {
  transform: rotate(90deg);
  opacity: 0.85;
}

/* ===== RESPONSIVE: TABLET & MOBILE ===== */
@media (max-width: 1023px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

/* ===== OVERLAY MENU ===== */
.menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;

  /* Glass background */
  background: rgba(15, 61, 46, 0.65); /* dark green with transparency */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  /* Subtle border for glass edge */
  border-left: 1px solid rgba(255, 255, 255, 0.18);

  /* Animation */
  transform: translateX(100%);
   opacity: 0;
  transition: transform 0.35s ease-in-out, opacity 0.25s ease;

  z-index: 2000;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.menu-overlay.active {
  transform: translateX(0);
    opacity: 1;
}

/* Overlay Links */
.overlay-links {
  list-style: none;
  padding: 0;
  text-align: center;
}

.overlay-links li {
  margin: 22px 0;
}

.overlay-links a {
  font-size: 1.4rem;
  font-weight: 500;
  color: white;
  text-decoration: none;
  letter-spacing: 0.03em;
   padding: 14px 28px;
  border-radius: 10px;

  display: inline-block;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease;
     text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}
.overlay-links a:hover{
  background-color: rgba(205, 230, 219, 0.22);
  color: #cde6db;
  transform: translateY(-3px);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Mobile Height Adjustment */
@media (max-width: 767px) {
  .navbar-inner {
    height: 56px;
      padding: 0 16px 0 8px;
  }

  .logo img {
    height: 120px;
     margin-left: -15px;
  }
}

/* ===== HERO HEADER ===== */
#hero {
  background-color: #0f3d2e; /* dark green */
  color: #ffffff;
  padding: 90px 20px;
  text-align: center;
}
.hero-content {
  margin: auto;
  margin-left: 20px;
  text-align: left;
  
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;        /* ~48px */
  font-weight: 600;
  margin-bottom: 5px;
  text-shadow: 0 4px 12px rgba(159, 211, 184, 0.15);
  /* animation */
    opacity: 0;
  animation: slideInLeft 0.9s ease-out forwards;
  animation-delay: 0.2s;
}
@media (prefers-reduced-motion: reduce) {
  .hero-title {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.hero-tagline {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;      /* ~19px */
  font-weight: 400;
  line-height: 1.6;
  color: #e5f0eb;         /* soft white */
  margin-top: -10px; 
}
.cursor {
  display: inline-block;
  margin-left: 4px;
  color: #cde6db;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}
@media (max-width: 1023px) {
  #hero {
    padding: 70px 20px;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  #hero {
    padding: 50px 16px;
  }
  .hero-content{
    margin-left: 15px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-tagline {
    font-size: 15px;
  }
}

/*previwe card*/
.section-title {
  margin-bottom: 30px;
  margin-top: -30px;
}
@media (max-width: 767px) {
  .home-blogs {
    padding: 40px 0 70px;
  }

  .section-title {
    margin-bottom: 24px;
    margin-top: 0px;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 767px) {
  .container {
   padding: 0 16px;
  }
}
.home-blogs {
   padding: 60px 0 90px; /* top | left-right | bottom */
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.blog-card {
  background-color: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}
.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.blog-card-content {
  padding: 18px;
}

.blog-card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #1f2933;
}

.blog-card-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 14px;
}
.blog-card-content a {
  text-decoration: none;
  font-weight: 600;
  color: #0f3d2e;
  transition: color 0.2s ease;
}

.blog-card-content a:hover {
  color: #ff0000;
}

/*cta design*/
.home-cta {
  padding: 0 0 0px;
}
.home-blogs {
  padding: 60px 0 40px;
}
.cta-content {
  background: rgba(15, 61, 46, 0.06); /* soft green tint */
  border-radius: 18px;
  padding: 40px 48px;
   margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-text {
  font-size: 1.3rem;
  font-weight: 500;
  color: #1f2933;
  max-width: 520px;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background-color: #0f3d2e;
  color: #ffffff;
  text-decoration: none;

  padding: 14px 28px;
  border-radius: 999px; /* pill shape */

  font-size: 1rem;
  font-weight: 600;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.cta-button:hover {
  background-color: #0b2f23;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
@media (max-width: 767px) {
  .cta-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
  }

  .cta-text {
    font-size: 1.15rem;
  }

  .cta-button {
    margin-top: 0px;
  }
  .home-blogs {
    padding: 40px 0 32px;
  }

  .home-cta {
    padding: 0 0 0px;
  }
}
/*footer*/
.site-footer {
  background-color: #0b2f23; /* deep green */
  color: #ffffff;
  padding: 40px 0 30px;
  margin-top: 40px;
}
.footer-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-direction: column;
  text-align: center;
}
.footer-brand p {
  font-size: 1rem;
  color: #e5f0eb;
  padding-bottom: 0%;
    margin-bottom: -20px;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 50px;
  height: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;

  color: #ffffff;
  font-size: 1.2rem;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}
.footer-social a:hover {
  background-color: rgba(255, 255, 255, 0.22);
  color: #ff0000;
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    margin-top: 12px;
  }
  .footer-brand p {
    padding-bottom: 0%;
    margin-bottom: -20px;
    font-size: 0.85rem;
  }
}

.welcome-section {
  padding: 60px 20px 40px;
  background-color: #eef5f1;  /* same as main background */
  text-align: center;
}

.welcome-section h2 {
  font-size: 32px;
  color: #0f3d2e;
  margin-bottom: 12px;
}

.welcome-section p {
  max-width: 720px;
  margin: auto;
  font-size: 18px;
  line-height: 1.7;
  color: #1f2933;
}

/* Mobile refinement */
@media (max-width: 480px) {
  .welcome-section {
    padding: 40px 20px 30px;
  }

  .welcome-section h2 {
    font-size: 26px;
  }

  .welcome-section p {
    font-size: 16px;
  }
}


/*blog page style*/
.blogs-page {
  padding: 20px 0 50px;
}

.blogs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
   margin-bottom: 20px;
}

.blogs-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  color: #0f3d2e;
}

/* Search */
.search-box {
  position: relative;
}

.search-box input {
  padding: 12px 42px 12px 16px;
  border-radius: 30px;
  border: 1px solid #cde6db;
  outline: none;
  font-size: 0.95rem;
  width: 240px;
}

.search-box i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #0f3d2e;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 10px;
}

.pagination button {
  padding: 10px 16px;
  border-radius: 10px;
  border: none;
  background-color: #e8f2ec;
  color: #0f3d2e;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.pagination button.active {
  background-color: #0f3d2e;
  color: #ffffff;
}

/* Mobile */
@media (max-width: 767px) {
  .blogs-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    margin-bottom: 25px;
  }
 .blogs-page {
    padding: 0px 0 0px;
  }
  .search-box input {
    width: auto;
  }
}
/* Loader wrapper 
.loader {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: 60px 0;
}*/

/* Spinner 
.spinner {
  width: 46px;
  height: 46px;
  border: 4px solid #cde6db;
  border-top: 4px solid #0f3d2e;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}*/

.skeleton {
  pointer-events: none;
}

.skeleton-image,
.skeleton-title,
.skeleton-text {
  background: linear-gradient(
    90deg,
    #e8f2ec 25%,
    #f1f7f4 37%,
    #e8f2ec 63%
  );
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: 8px;
}
.skeleton-image {
  height: 180px;
  width: 100%;
}
.skeleton-text {
  height: 14px;
  width: 100%;
  margin-bottom: 8px;
}

.skeleton-text.short {
  width: 60%;
}
@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

/*scroll to top*/
#scrollTopBtn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #0f3d2e;
  color: #ffffff;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

#scrollTopBtn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#scrollTopBtn:hover {
  transform: translateY(-4px);
  background: #145c43;
}

#scrollTopBtn i {
  font-size: 20px;
}

/*for no blog found*/
.no-results {
  display: none;
  text-align: center;
  padding: 80px 20px;
  font-size: 20px;
  font-weight: 500;
  color: #0f3d2e;
}

/*about page design*/

.about-container {
  max-width: 1200px;
  margin: auto;
}
.about-author .about-container {
  padding-top: 50px;
  padding-bottom: 20px;
    padding-left: 20px;
  padding-right: 20px;
}
.about-achievements .about-container,
.about-case-study .about-container {
  padding-top: 20px;
  padding-bottom: 20px;
    padding-left: 20px;
  padding-right: 20px;
}

.about-author h1, 
.about-achievements h2,
.about-case-study h2 {
  color: #0f3d2e;
  margin-bottom: 20px;
}
.about-author h2{
   color: #0f3d2e;
  margin-bottom: 20px;
  margin-top: -40px;
}

.about-author p {
  font-size: 18px;
  line-height: 1.7;
  color: #1f2933;
  margin-bottom: 16px;
}

/* DESKTOP GRID */

.achievement-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.case-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.achievement-card,
.case-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.achievement-card:hover,
.case-card:hover {
  transform: translateY(-6px);
}
.achievement-card{
  padding: 10px;
}
.achievement-card img {
 width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.achievement-card h3 {
  padding: 20px;
  font-size: 18px;
  margin-bottom:-30px;
  color: #0f3d2e;
  
}
.achievement-card p {
  padding-left: 20px;
  font-size: 16px;
  color: #0f3d2e;
}

.case-card {
  text-align: center;
  padding: 30px 20px;
}

.case-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
}

.case-card h4 {
  font-size: 17px;
  color: #0f3d2e;
  margin-bottom: 6px;
}

.case-card p {
  font-size: 16px;
  color: #555;
}
.case-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.case-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.default-avatar {
  background-color: #dfeee7; /* soft green tone */
}

.default-avatar i {
  font-size: 36px;
  color: #0f3d2e;
}


/* MOBILE & TABLET — FINAL SLIDER */
@media (max-width: 767px) {

  .slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  .achievement-wrapper,
  .case-wrapper {
    display: flex;
  }

  .achievement-card,
  .case-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }

  .slider::-webkit-scrollbar {
    display: none;
  }
}

/*contact page style*/

.contact-section {
  min-height: calc(100vh - 140px); /* navbar + footer */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background-color: #eef5f1;
}

.contact-wrapper {
  text-align: center;
  width: 100%;
  max-width: 600px;
}

/* Title & Subtitle */
.contact-header {
  margin-bottom: 30px;
}

.contact-header h1 {
  font-size: 36px;
  color: #0f3d2e;
  margin-bottom: 4px;   /* reduced gap */
}

.contact-header p {
  font-size: 18px;      /* bigger subtitle */
  color: #1f2933;
  opacity:0.9;
  margin-top: 0;       /* remove extra space */
}

/* Dark Contact Card */
.contact-card {
  background-color: #0f3d2e;
  color: #ffffff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* Contact Items */
.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 18px;
  margin-bottom: 22px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  font-size: 22px;
  color: #9fe0c3;
  min-width: 30px;
}

.contact-item a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
   letter-spacing: 0.7px;
}

.contact-item a:hover {
  color: #9fe0c3;
}

/* Mobile */
@media (max-width: 480px) {
  .contact-header h1 {
    font-size: 28px;
  }
  .contact-header p {
    font-size: 16px;
  }
  .contact-card {
    padding: 40px 24px;
  }

  .contact-item {
    font-size: 16px;
  }
   .contact-wrapper {
    transform: translateY(-40px);
  }
}
