/* =============================

   HEADER & HERO SECTION STYLES

============================= */


.container {
   max-width: 1240px;
   margin: 0 auto;
   padding: 0 20px;
}

section {
   padding: 80px 0;
}

@media (max-width: 768px) {
   section {
      padding: 56px 0;
   }
}

@media (max-width: 480px) {
   section {
      padding: 40px 0;
   }
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
   display: block;
}

/* ===========================
   BUTTONS
=========================== */
.btn,
.btn-outline {
   display: flex;
   align-items: center;
   gap: 0.5rem;
   padding: 0.75rem 2rem;
   border-radius: 9999px;
   border: 1px solid rgb(43, 179, 42);
   transition: all 0.3s ease;
   max-width: fit-content;
}

.btn {
   background: rgb(43, 179, 42);
   color: #fff;
}

.btn:hover {
   background: #064e3b;
}

.btn-outline {
   background: transparent;
   color: rgb(43, 179, 42);
}

.btn-outline:hover {
   background: rgb(20, 83, 45);
   color: #fff;
}

/* ===========================
   TITLES & TEXT
=========================== */
.section-title {
   font-size: 40px;
   font-weight: 700;
   color: #fff;
   line-height: 1.5;
}

@media (max-width: 640px) {
   .section-title {
      font-size: 24px;
   }
}

.text-wrap {
   text-wrap: balance;
}

.disp-text {
   font-size: 2rem;
   font-weight: bold;
   font-family: monospace;
   width: 42rem;
   white-space: nowrap;
   overflow: hidden;
}

.divv {
   display: inline-block;
   animation: blink 1s step-start infinite;
}

/* ===========================
   HEADER
=========================== */

.header.active {
   background: rgba(6, 78, 59, 0.3);
   backdrop-filter: blur(8px);
   transition: background 0.3s ease;

}

/* ===========================
   SELECT
=========================== */
select {
   background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
   background-position: right 0.5rem center;
   background-repeat: no-repeat;
   background-size: 1.5em 1.5em;
   padding-right: 2.5rem;
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes marquee {
   0% {
      transform: translateX(0);
   }

   100% {
      transform: translateX(-100%);
   }
}

.animate-marquee {
   display: flex;
   animation: marquee 30s linear infinite;
}

@keyframes blink {

   0%,
   100% {
      opacity: 1;
   }

   50% {
      opacity: 0;
   }
}

/* ===========================
   HERO ELEMENT STATES
=========================== */

.hero-section {
   position: relative;
   overflow: hidden;
   display: flex;
   flex: 1 1 auto;
   flex-direction: row;
}

.hero-circle {
   position: absolute;
   right: 2rem;
   bottom: 6rem;
   width: 24rem;
   height: 24rem;
   background-color: var(--primary);
   border-radius: 50%;
   z-index: -999;

}

@media (min-width: 480px) and (max-width: 768px) {
   .hero-circle {
      right: 13rem !important;
      bottom: 4rem;
      width: 16rem;
      height: 16rem;

   }
}

@media (max-width: 480px) {
   .hero-circle {
      right: 5rem !important;
      bottom: 24rem;
      width: 13rem;
      height: 13rem;
   }

   .hero-title,
   .first-hero-text {
      padding-top: 1em !important;
      font-size: 1.5rem !important;
   }

   .hero-subtitle {
      font-size: 0.8rem !important;
      padding: 0 1rem !important;
   }
}

@media (min-width: 768px) and (max-width: 1024px) {
   .hero-circle {
      right: 1rem;
      bottom: 12rem;
      width: 20rem;
      height: 20rem;
   }

   .hero-title {
      font-size: 1.8rem !important;
   }


}







#hero-circle,
#hero-svg,
#title,
#subtitle {
   opacity: 1;
   transform: translate(0, 0);
}

.header {
   position: fixed;
   top: 0;
   width: 100%;
   z-index: 30;
   background-color: rgba(25, 58, 30, 0.05);
   backdrop-filter: blur(6px);
   transition: background-color 0.3s ease;

   padding: 1em 0.2rem !important;
}

.header.scrolled {
   background-color: rgba(25, 58, 30, 0.25);
}

/* Navbar Layout */
.navbar {
   display: flex;
   width: 100%;
   padding: 0.5rem 0;
   align-items: center;
   justify-content: space-between;
}

/* Profile Logo */
.profile-logo {
   display: flex;
   align-items: center;
   margin-left: .5rem;
}

.logo-container {
   width: 48px;
   height: 48px;
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 50%;
}

.logo-img {
   width: 80%;
   height: 80%;
   border-radius: 50%;
   user-select: none;
}

.logo-text {
   font-family: 'Allura', cursive;
   font-size: 1.5rem;
   margin-top: 0.5rem;
   margin-left: 0.5rem;
}

/* Desktop Nav Items */
.nav-items {
   display: none;
   /* Hidden on mobile */
   gap: 2rem;
   list-style: none;
}

@media (min-width: 1024px) {
   .nav-items {
      display: flex;
   }
}

.nav-link {
   color: var(--foreground);
   text-decoration: none;
   transition: color 0.3s ease;
}

.nav-link:hover {
   color: var(--active-color);
}

.nav-link.active {
   color: var(--active-color);
   font-weight: 600;
}

/* Resume Button (Desktop) */
.resume-btn {
   display: none;
   padding: 0.36rem 1.3rem;
   margin-right: 4rem;
   border: 1px solid var(--active-color);
   border-radius: 40px !important;
   color: var(--primary);
   text-decoration: none;
   transition: background-color 0.3s ease;
}

@media (min-width: 1024px) {
   .resume-btn {
      display: block;
   }
}

.resume-btn:hover {
   background-color: rgba(63, 144, 94, 0.2);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
   display: block;
   background: none;
   border: none;
   color: var(--text-color);
   font-size: 1.5rem;
   cursor: pointer;
   padding: 0.5rem;
   margin-right: 1rem;
}

@media (min-width: 1024px) {
   .mobile-menu-toggle {
      display: none;
   }
}

/* Mobile Menu */
.mobile-menu {
   position: fixed;
   top: 0;
   right: 0;
   width: 0;
   height: 100vh;
   background-color: #1a202c;
   overflow: hidden;
   transition: width 0.3s ease;
   z-index: 9998;
}

.mobile-menu.open {
   width: 250px;
}

.mobile-menu ul {
   list-style: none;
   padding: 5rem 0 0;
   margin: 0;
}

.mobile-nav-link {
   display: block;
   padding: 1rem;
   color: var(--text-color);
   text-decoration: none;
   text-align: center;
   transition: background-color 0.3s ease;
}

.mobile-nav-link:hover {
   background-color: rgba(63, 144, 94, 0.2);
}

.mobile-resume-btn {
   display: block;
   margin: 1rem auto;
   padding: 1rem 2rem;
   background-color: #3f905e;
   color: white;
   text-decoration: none;
   text-align: center;
   border: none;
   width: 80%;
}


/* ===========================
   HERO SECTION
=========================== */



.hero-container {
   width: 100%;
   max-width: 1200px;
   padding: 0 1rem;
   margin-top: -2.3rem;

}

.hero-grid {
   display: grid;
   grid-template-columns: 1fr;
   gap: 2rem;
}

.hero-text-content {
   display: flex;
   flex-direction: column;
   gap: 2rem;
   align-items: center;
   text-align: center;
   padding: 0 1.5rem;
}

.hero-title {
   font-size: 2rem;
   font-weight: 600;
   line-height: 1.3;
   margin: 0;
}

.name-highlight {
   color: var(--active-color);
   font-weight: 600;
   position: relative;
}

.name-highlight::before,
.name-highlight::after {
   color: var(--primary-green);
   font-size: 2.5rem;
}

.first-hero-text {
   font-family: 'Mervale', cursive;
   font-size: 2.5rem;
   font-weight: 400;
   color: var(--primary-green);
}



.profession {
   position: relative;
   display: inline-block;
}

.title-underline {
   position: absolute;
   left: -3rem;
   top: 0.3rem;
   width: 100%;
   height: auto;
   z-index: -1;
   display: none;
   /* Hidden on mobile */
}

.hero-subtitle {
   color: var(--text-gray);
   font-size: 1rem;
   line-height: 1.6;
   margin: 0;
   max-width: 600px;
}

.hero-button {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   padding: 0.5rem 2rem;
   background-color: var(--primary-green);
   color: var(--white);
   text-decoration: none;
   border-radius: 4px;
   font-size: 1rem;
   font-weight: 500;
   transition: transform 0.3s ease;
}

/* Base Button Styles */
.btn {
   display: flex;
   max-width: fit-content;
   align-items: center;
   gap: 0.5rem;
   border-radius: 9999px;
   border: 1px solid #2BB32A;
   background-color: #2BB32A;
   padding: 0.7rem 2rem !important;
   color: #FFFFFF;
   text-decoration: none;
   transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
   cursor: pointer;
}

/* Outline Button Variant */
.btn-outline {
   display: flex;
   max-width: fit-content;
   align-items: center;
   gap: 0.5rem;
   border-radius: 9999px;
   border: 1px solid #2BB32A;
   background-color: transparent;
   padding: 0.5rem 2rem;
   color: #2BB32A;
   text-decoration: none;
   transition: all 0.05s cubic-bezier(0.4, 0, 0.2, 1);
   cursor: pointer;
}

/* Outline Button Hover State */
.btn-outline:hover {
   background-color: #14532D;
   color: #FFFFFF;
}

/* Button Hover Effects */
.btn:hover {
   opacity: 0.9;
   transform: translateY(-1px);
}

/* Button Active/Focus States */
.btn:focus,
.btn-outline:focus {
   outline: 2px solid #2BB32A;
   outline-offset: 2px;
}

/* Button Disabled State */
.btn:disabled,
.btn-outline:disabled {
   opacity: 0.5;
   cursor: not-allowed;
}

.hero-button:hover {
   transform: translateY(-2px);
}

.hero-button svg {
   width: 1.5rem;
   height: 1.2rem;
}

.client-info {
   display: flex;
   align-items: center;
   gap: 1rem;
   margin-top: 1rem;
}

.client-avatars {
   width: 7.5rem;
   height: 3rem;
   font-family: poppins, sans-serif;
}

.client-count {
   text-align: left;
}

.client-count strong {
   font-size: 0.9rem;
}

.client-count p {
   color: var(--text-gray);
   font-size: 0.7rem;
   margin: 0.2rem 0 0;
}

.hero-image-container {
   display: flex;
   justify-content: center;
   margin-top: 2rem;

}

.hero-image {
   width: 18rem;
   height: 24rem;
   object-fit: cover;
   border-bottom: 2px solid var(--primary);

}

/* Responsive Styles */
@media (min-width: 768px) {
   .hero-grid {
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 4rem;
   }

   .hero-text-content {
      align-items: flex-start;
      text-align: left;
      padding: 0;
      margin-top: 3rem;
   }

   .hero-title {
      font-size: 2.5rem;
   }



   .title-underline {
      display: block;
   }

   .hero-image {
      width: 22rem;
      height: 28rem;
      margin-left: 4rem;
   }
}

@media (min-width: 1024px) {

   .main-content {
      padding: 0 2rem;
   }

   .hero-title {
      font-size: 3rem;
   }

   .hero-subtitle {
      font-size: 1.1rem;
   }

   .hero-button {
      font-size: 1.1rem;
      padding: 0.9rem 1.8rem;
   }

   .hero-image {
      width: 24rem;
      height: 32rem;
   }
}

.mobile-hello {
   position: absolute;
   right: 42%;
   top: -2rem;
   font-size: 'Allura', cursive;
   font-weight: 400;
   font-size: 3rem;
   line-height: 1;
}

@media (max-width: 767px) {

   .hero-circle {
      right: 1rem;
      bottom: 6rem;
      width: 13rem;
      height: 13rem;
   }

   .hero-image {
      width: 15rem;
      height: 20rem;
      margin: 0 auto;
   }

   .mobile-hello {
      display: block;
      white-space: nowrap;
      font-family: 'Allura', cursive;
      font-size: 3rem;
      font-weight: 400;
      text-align: center;
      padding-top: 5rem;
   }

   .hero-section {
      margin-top: 2rem !important;
   }
}