/* CUSTOM PROPERTIES ( VARIABLES ) */

:root {
  --white-color:                  #ffffff;
  --dark-black-color:             #212529;
  --section-bg-color:             #f9f9f9;
  --dark-green-color:             #004000;
  --grey-color:                   #fcfeff;
  --text-secondary-white-color:   rgba(255, 255, 255, 0.98);
  --title-color:                  #565758;
  --p-color:                      #717275;
  --body-font-family:             'Montserrat', sans-serif;
  --heading-font-family:          'Lato', serif;

  --h1-font-size:               72px;
  --h2-font-size:               42px;
  --h3-font-size:               36px;
  --h4-font-size:               32px;
  --h5-font-size:               24px;
  --h6-font-size:               22px;
  --p-font-size:                20px;
  --copyright-text-font-size:   14px;
  --custom-link-font-size:      12px;
  --font-weight-light:          300;
  --font-weight-normal:         400;
  --font-weight-bold:           600;
  --font-weight-bolder:         700;
  --font-weight-black:          900;
}

.text-dark-green:hover {
  color: #0f766e;
}

/* * {
  outline: 1px solid red;
} */

/* PRELOADER */

/* DARK MODE */

/* BACK TO TOP */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 10px;
  background: var(--dark-green-color);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  font-size: 0.8rem;
  cursor: pointer;
  display: none;
}

/* BODY HTML */
body, html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);    
  position: relative;
  overflow-x: hidden;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: var(--dark-green-color);
  border-radius: 10px;
}

/* Firefox */
body {
  scrollbar-width: thin;
  scrollbar-color: var(--dark-green-color) transparent;
}


/* TYPOGRAPHY */
.hero-title {
  font-family: var(--heading-font-family);
}

h2, h3, h4, h5, h6 {
  color: var(--dark-green-color);
  line-height: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bolder);
}

h1, h2 {
  font-weight: var(--font-weight-black);
}

h1 {
  font-size: var(--h1-font-size);
  line-height: normal;
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--title-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  letter-spacing: 0.5px;
}

.text-secondary-white-color {
  color: var(--text-secondary-white-color);
}

a,  button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

::selection {
  background: var(--dark-green-color);
  color: var(--white-color);
}

.custom-dark-text {
  color: var(--dark-green-color);
  font-weight: var(--font-weight-normal);
}


/* HERO */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('../images/background/background2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/background/background2.png');
  background-size: cover;
  background-position: center;
  filter: blur(3px);
  z-index: -2;
}

.hero-content {
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-title .highlight {
  color: var(--dark-green-color);
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: var(--font-weight-normal);
  margin-top: 1rem;
  opacity: 0.9;
}

.fancy-link {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white-color);
  text-decoration: none;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.fancy-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: var(--white-color);
  transition: width 0.3s ease;
}

.fancy-link:hover {
  color: var(--white-color);
}

.fancy-link:hover::after {
  width: 100%;
}


/* NAVIGATION */
.navbar {
  z-index: 9;
  right: 0;
  left: 0;
  padding-top: 15px;
  /* padding-bottom: 15px; */
}

.navbar-brand {
  color: var(--dark-green-color);
  font-size: 24px;
  font-weight: var(--font-weight-bolder);
}

.navbar-expand-lg .navbar-nav .nav-link {
  /* padding-right: 10px; */
  /* padding-left: 20px; */
  margin-right: 20px;
}

.navbar-nav .nav-link::after {
  content: "";
  font-family: bootstrap-icons;
  display: inline-block;
  margin-left: 10px;
  color: var(--dark-green-color);
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  transform: translateY(10px);
}

.navbar-nav .nav-link:hover::after {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

.navbar-nav .nav-link {
  color: var(--dark-green-color);
  font-size: 18px;
  font-weight: var(--font-weight-bolder);
  position: relative;
}

/* .navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
  color: var(--dark-black-color);
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
} */

.navbar-nav, .nav-item.active, .nav-link, .nav-link:focus, .nav-link:hover {
  color: var(--dark-black-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-green-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-green-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}

.navbar-logo {
  width: 150px;
  height: auto;
  display: block;
}


@media screen and (min-width: 992px) {
  .hero {
    height: 100vh;
  }


  .sticky-wrapper {
    position: relative;
    bottom: 70px;
  }
}

.heroText {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  text-align: center;
}


/* ABOUT */
.about-right {
  background-color: #f9f9f9; /* Light gray or off-white */
  padding: 2rem;
  border-radius: 8px;
}

.about-divider {
  position: relative;
}

.about-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: -15px;
  width: 1px;
  height: 100%;
  background-color: #e0e0e0; /* Soft neutral tone */
}

.snapshot-card i {
  transition: transform 0.3s ease, color 0.3s ease;
  color: #14532d; /* Dark green */
}

.snapshot-card:hover i {
  transform: scale(1.2);
  color: #0f766e; /* Teal accent on hover */
}


/* SERVICES */
.section-padding {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.service-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.service-thumb:hover .service-image {
  border: 0.5px solid #004000;
  transform: scale(1.05);
}


/* PORTFOLIO */
.portfolio-thumb {
  position: relative;
  overflow: hidden;
}

.portfolio-info {
  margin: 20px;
}

.portfolio-heading {
  color: #004000;
}

.portfolio-title {
  color: #004000;
  font-weight: 600;
}

.portfolio-tag {
  color: #6c757d;
  margin-bottom: 1rem;
}

.portfolio-description {
  font-size: 0.95rem;
}

.portfolio-details {
  font-size: 0.9rem;
  padding-left: 1rem;
}

.portfolio-thumb {
  border-radius: 12px;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.portfolio-thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.portfolio-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.portfolio-thumb:hover .portfolio-image {
  transform: scale(1.05);
}

.coming-soon-card, .creative-card, .startup-card {
  height: 240px;
  border-radius: 12px;
  background-color: #f8f9fa;
}

.creative-card {
  height: 300px;
}


/* TESTIMONIAL */
.testimonial-section {
  padding: 3rem 0;
}

.text-dark-green {
  color: #004000;
}

.testimonial-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #004000;
}

.testimonial-stars i {
  font-size: 1.2rem;
  margin: 0 2px;
}


#stats {
  background-color: var(--dark-green-color);
}

.counter {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}


/* CONTACT */
.contact-section {
  background-color: #f8f9fa;
  padding: 6rem 0;
}

.text-dark-green {
  color: #004000;
}

.custom-input {
  border: 1px solid #006400;
  border-radius: 6px;
  padding: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  outline: none;
  box-shadow: none;
}

.custom-input:focus {
  border-color: #004000;
  outline: none;
  box-shadow: none;
}

.btn-dark-green {
  background-color: #004000;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-dark-green:hover {
  background-color: #003300;
  color: #ffffff;
  border: none;
  outline: none;
}

.card-border {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 59, 0, 0.2); /* subtle green border glow */
}

/* SITE FOOTER */
.site-footer-modern {
  background-color: #004000;
  color: #f8f9fa;
  padding: 3rem 0 2rem;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f8f9fa;
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 1rem;
  font-weight: var(--font-weight-light);
  line-height: 1.6;
  color: #f8f9fa;
}

.footer-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-links {
  font-size: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #f8f9fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #25D366;
}

.footer-social {
  /* display: flex; */
  gap: 0.5rem;
}

.text-lg-end .footer-social {
  justify-content: flex-end;
}

.footer-social a {
  color: #f8f9fa;
  font-size: 1.4rem;
  margin-right: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.footer-copy {
  font-size: 0.90rem;
  color: #f8f9fa;
  margin: 0;
}

.footer-logo {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  vertical-align: middle;
}

.footer-social a:hover i {
  color: #25D366; /* WhatsApp green */
}

.footer-location {
  font-size: 0.90rem;
  font-weight: var(--font-weight-bolder);
  color: #f8f9fa;
}

.footer-email a {
  font-size: 1.2rem;
  font-weight: var(--font-weight-bolder);
  color: #f8f9fa; /* Light text for dark footer */
}

.footer-email a:hover {
  color: #0f766e; /* Teal accent on hover */
}

/* RESPONSIVE STYLES */

@media screen and (min-width: 1600px) {
  .news-two-column {
    min-height: 232.5px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .team-thumb {
    left: 0;
    width: auto;
  }

  .news-two-column {
    height: auto !important;
    min-height: inherit;
  }

  .news .col-12 .news-two-column:first-child {
    margin-bottom: 38px;
  }
}

@media screen and (max-width: 767px) {
  .news-detail-title {
    font-size: 36px;
  }
}

@media screen and (max-width: 360px) {
  h1 {
    font-size: 32px;
  }

  .heroText p {
    font-size: 14px;
  }
}

@media screen and (max-width: 359px) {
  .news-detail-title {
    font-size: 22px;
  }
}

