@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root { --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; --heading-font: "Calibri",  sans-serif; --nav-font: "Calibri",  sans-serif;}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #342c26; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2c1607; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #e96308; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root { --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #e96308; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #342c26; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e96308; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background { --background-color: #f9f7f6; --surface-color: #ffffff;}

.dark-background { --background-color: #060606; --default-color: #ffffff; --heading-color: #ffffff; --surface-color: #252525; --contrast-color: #ffffff;}

/* Smooth scroll */
:root { scroll-behavior: smooth;}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body { color: #555; background-color: #F9F7F6; font-family: "Arial", serif; font-weight:400;}

a { color: #4EA848; text-decoration: none; transition: 0.3s;}
a:hover { color: #0F6838; text-decoration: none;}

h1, h2, h3, h4, h5, h6 { color: #0F6838; font-family: "Calibri", sans-serif;
font-weight: 600;}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message { display: none; background: #df1529; color: #ffffff; text-align: left; padding: 15px; margin-bottom: 24px; font-weight: 600;}

.php-email-form .sent-message { display: none; color: #ffffff; background: #059652; text-align: center; padding: 15px; margin-bottom: 24px; font-weight: 600;}

.php-email-form .loading { display: none; background: var(--surface-color); text-align: center; padding: 15px; margin-bottom: 24px;}

.php-email-form .loading:before { content: ""; display: inline-block; border-radius: 50%; width: 24px; height: 24px; margin: 0 10px -6px 0; border: 3px solid #4EA848; border-top-color: var(--surface-color); animation: php-email-form-loading 1s linear infinite;}

@keyframes php-email-form-loading { 0% {   transform: rotate(0deg); }

  100% {   transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header { --background-color: rgba(255, 255, 255, 0); --default-color: #ffffff; --heading-color: #ffffff; color: var(--default-color); background-color:var(--background-color); padding: 15px 0; transition: all 0.5s; z-index: 997; }

.header .logo { line-height: 1;}
.header .logo img { max-height:150px; margin-right: 8px;}

@media (max-width: 1200px) {
	.header .logo {   order: 1; }
	.header .navmenu {   order: 3; }
}

.scrolled .header { box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);}

/* Global Header on Scroll
------------------------------*/
.scrolled .header { --background-color: rgba(15, 104, 56, 0.915);}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) { .navmenu {   padding: 0; }

  .navmenu ul {   margin: 0;   padding: 0;   display: flex;   list-style: none;   align-items: center; }
  .navmenu li {   position: relative; }

  .navmenu a,   .navmenu a:focus { color:#FFF;   padding: 18px 15px; font-size:1.1rem; font-family: "Calibri", sans-serif; font-weight: 500;   display: flex;   align-items: center;   justify-content: space-between;   white-space: nowrap;   transition: 0.3s; text-transform:uppercase; }
  .navmenu a i,   .navmenu a:focus i {   font-size: 12px;   line-height: 0;   margin-left: 5px;   transition: 0.3s; }
  .navmenu li:last-child a {   padding-right: 0; }
  .navmenu li:hover>a,   .navmenu .active,   .navmenu .active:focus {   color: #CEE7BA; }

  .navmenu .dropdown ul {   margin: 0;   padding: 10px 0;   background:#CEE7BA;   display: block;   position: absolute;   visibility: hidden;   left: 14px;   top: 130%;   opacity: 0;   transition: 0.3s;   border-radius: 4px;   z-index: 99;   box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1); }
  .navmenu .dropdown ul li {   min-width: 200px; }
  .navmenu .dropdown ul a {   padding: 10px 20px; text-transform: none;   color: var(--nav-dropdown-color); }
  .navmenu .dropdown ul a i {   font-size: 12px; }
  .navmenu .dropdown ul a:hover,   .navmenu .dropdown ul .active:hover,   .navmenu .dropdown ul li:hover>a {   color: #0F6838; }

  .navmenu .dropdown:hover>ul {   opacity: 1;   top: 100%;   visibility: visible; }
  .navmenu .dropdown .dropdown ul {   top: 0;   left: -90%;   visibility: hidden; }
  .navmenu .dropdown .dropdown:hover>ul {   opacity: 1;   top: 0;   left: -100%;   visibility: visible; }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) { .mobile-nav-toggle {   color:#FFF;   font-size: 3rem;   line-height: 0;   margin-right: 10px;   cursor: pointer;   transition: color 0.3s; }

  .navmenu {   padding: 0;   z-index: 9997; }

  .navmenu ul {   display: none;   list-style: none;   position: absolute;   inset: 60px 20px 20px 20px;   padding: 10px 0;   margin: 0;   border-radius: 6px;   background-color:#CEE7BA; overflow-y: auto;   transition: 0.3s;   z-index: 9998;   box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1); }

  .navmenu a,   .navmenu a:focus { color:#0F6838;   padding: 10px 20px;   font-family: "Calibri", sans-serif; font-weight: 500;   display: flex;  text-transform:uppercase;   align-items: center;   justify-content: space-between;   white-space: nowrap;   transition: 0.3s; font-size: 1.1rem;   }

  .navmenu a i,   .navmenu a:focus i {   font-size: 12px;   line-height: 0;   margin-left: 5px;   width: 30px;   height: 30px;   display: flex;   align-items: center;   justify-content: center;   border-radius: 50%;   transition: 0.3s;   background-color: color-mix(in srgb, #4EA848, transparent 90%); }

  .navmenu a i:hover,   .navmenu a:focus i:hover {   background-color: #4EA848;   color: var(--contrast-color); }

  .navmenu a:hover,   .navmenu .active,   .navmenu .active:focus {   color:#4EA848; }

  .navmenu .active i,   .navmenu .active:focus i {   background-color: #4EA848;   color: var(--contrast-color);   transform: rotate(180deg); }

  .navmenu .dropdown ul {   position: static;   display: none;   z-index: 99;   padding: 10px 0;   margin: 10px 20px;   background-color: var(--nav-dropdown-background-color);   border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);   box-shadow: none;   transition: all 0.5s ease-in-out; }

  .navmenu .dropdown ul ul {   background-color: rgba(33, 37, 41, 0.1); }

  .navmenu .dropdown>.dropdown-active {   display: block;   background-color: rgba(33, 37, 41, 0.03); }

  .mobile-nav-active {   overflow: hidden; }

  .mobile-nav-active .mobile-nav-toggle {   color: #fff;   position: absolute;   font-size: 32px;   top: 15px;   right: 15px;   margin-right: 0;   z-index: 9999; }

  .mobile-nav-active .navmenu {   position: fixed;   overflow: hidden;   inset: 0;   background: rgba(33, 37, 41, 0.8);   transition: 0.3s; }

  .mobile-nav-active .navmenu>ul {   display: block; }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero { padding-top: 180px; position: relative; min-height:90vh; display: flex; align-items: center; overflow: hidden; padding-bottom: 80px;}

.hero .hero-video-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;}
.hero .hero-video-container img { width: 100%; height: 100%; object-fit: cover;}

.hero .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background:rgba(0, 0, 0, 0.5); z-index: 2;}

.hero .container { position: relative; z-index: 1;} 

.hero .hero-content h1 { font-size:2rem; font-weight: 600; margin-bottom: 1.5rem; line-height: 1.2; color:#FFF;}

.hero .hero-content p { font-size: 1.2rem; margin-bottom: 2.5rem; line-height: 1.6; max-width: 700px; margin-left: auto; margin-right: auto;}

@media (max-width: 768px) { .hero .hero-content p {   font-size: 1.1rem; }}

.hero .hero-content .hero-actions { margin-bottom: 4rem;}

.hero .hero-content .hero-actions .btn { padding: 15px 30px; font-size: 1rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; border-radius: 6px; margin: 0 10px; transition: all 0.3s ease;}

@media (max-width: 576px) { .hero .hero-content .hero-actions .btn {   display: block;   margin: 10px auto;   width: fit-content; }
}

.hero .hero-content .hero-actions .btn-primary { background-color: #4EA848; border-color: #4EA848; color: var(--contrast-color);}

.hero .hero-content .hero-actions .btn-primary:hover { background-color: color-mix(in srgb, #4EA848, black 15%); border-color: color-mix(in srgb, #4EA848, black 15%); transform: translateY(-2px);}

.hero .hero-content .hero-actions .btn-secondary { background-color: transparent; border: 2px solid color-mix(in srgb, var(--default-color), transparent 50%); color: var(--default-color);}

.hero .hero-content .hero-actions .btn-secondary:hover { color: #4EA848; border-color: #4EA848; transform: translateY(-2px);}

.hero .hero-content .hero-stats { background-color: color-mix(in srgb, var(--background-color), transparent 90%); backdrop-filter: blur(5px); border-radius: 15px; padding: 2rem; border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);}

.hero .hero-content .hero-stats .stat-item { text-align: center; padding: 1rem;}

.hero .hero-content .hero-stats .stat-item .stat-number { display: block; font-size: 2.5rem; font-weight: 600; margin-bottom: 0.5rem;}

.hero .hero-content .hero-stats .stat-item .stat-label { font-size: 0.9rem; color: color-mix(in srgb, var(--default-color), transparent 30%); text-transform: uppercase; letter-spacing: 1px; font-weight: 500;}

@media (max-width: 768px) { .hero .hero-content .hero-stats .stat-item {   margin-bottom: 1.5rem; }

  .hero .hero-content .hero-stats .stat-item:last-child {   margin-bottom: 0; }
}




/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title { color: var(--default-color); background-color: var(--background-color); background-size: cover; background-position: center; background-repeat: no-repeat; padding: 160px 0 80px 0; text-align: center; position: relative;}

.page-title:before { content: ""; background-color: color-mix(in srgb, var(--background-color), transparent 30%); position: absolute; inset: 0;}

.page-title h1 { font-size: 42px; font-weight: 700; margin-bottom: 10px; color:#4EA848;}

.page-title .breadcrumbs ol { display: flex; flex-wrap: wrap; list-style: none; justify-content: center; padding: 0; margin: 0; font-size: 16px; font-weight: 400;}

.page-title .breadcrumbs ol li+li { padding-left: 10px;}

.page-title .breadcrumbs ol li+li::before { content: "/"; display: inline-block; padding-right: 10px; color: color-mix(in srgb, var(--default-color), transparent 50%);}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section, .section { color: var(--default-color); background-color: var(--background-color); padding: 60px 0; scroll-margin-top: 90px; overflow: clip;}
@media (max-width: 1199px) {  section,   .section {   scroll-margin-top: 66px; }}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {padding-bottom:30px; position: relative;}

.section-title h2 { font-size: 2rem; font-weight: 400; margin-bottom: 20px; padding-bottom: 20px; position: relative;}
.section-title h2:before { content: ""; position: absolute; display: block; width: 160px; height: 1px; background: #0F6838; left: 0; right: 0; bottom: 1px; margin: 0;}

.section-title h2::after { content: ""; position: absolute; display: block; width: 60px; height: 3px; background: #4EA848; left: 0; right: 0; bottom: 0; margin: 0;}

.section-title p { margin-bottom: 0;}


/*--------------------------------------------------------------
# MAIN TEXT
--------------------------------------------------------------*/
#MainText{min-height:600px; background-color: #f9f7f6;}

.TheText h2 {font-weight:500; margin-bottom: 2rem; line-height: 1.3;}
.TheText h3 { font-size: 2rem; font-weight: 300; color:#0F6838; margin-bottom: 15px; line-height: 1.3;}

.TheText p {text-align:justify; font-weight:400; font-size: 1.3rem; margin-bottom:1rem; line-height: 1.6rem;}

.TheList {padding: 15px 0; border-bottom: 1px dotted #4EA848;}
.TheList h3 { font-size: 1.2rem; font-weight:500; color:#0F6838;}

.TheText .TheText-item {padding: 40px 30px; border-radius: 8px; position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);margin-bottom:2rem;}

.TheText .TheText-item::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, color-mix(in srgb, #4EA848, transparent 60%), #4EA848); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;}

.TheText .TheText-item:hover { transform: translateY(-5px); box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 88%); border-color: color-mix(in srgb, #4EA848, transparent 80%);}

.TheText .TheText-item:hover::before { transform: scaleX(1);}


/*--------------------------------------------------------------
# WHAT WE DO SECTION
--------------------------------------------------------------*/
.wwdo { padding-top: 60px; padding-bottom: 2px;}

.wwdo .wwdo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; margin-bottom: 80px;}
@media (min-width: 992px) { .wwdo .wwdo-grid {   grid-template-columns: repeat(3, 1fr);   gap: 50px; }}

.wwdo .service-item { background: var(--surface-color); padding: 40px 30px; border-radius: 8px; position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);}

.wwdo .service-item::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, color-mix(in srgb, #4EA848, transparent 60%), #4EA848); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;}

.wwdo .service-item:hover { transform: translateY(-5px); box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 88%); border-color: color-mix(in srgb, #4EA848, transparent 80%);}
.wwdo .service-item:hover::before { transform: scaleX(1);}
.wwdo .service-item:hover .service-number { color: #4EA848; transform: scale(1.1);}
.wwdo .service-item:hover .service-icon { transform: scale(1.05); background: #4EA848;}
.wwdo .service-item:hover .service-icon i { color: var(--contrast-color);}
.wwdo .service-item:hover .service-cta { transform: translateX(8px); color: #4EA848;}

.wwdo .service-item .service-number { font-size: 1.2rem; font-weight: 300; color: #000; margin-bottom: 20px; transition: all 0.3s ease; letter-spacing: 2px;}

.wwdo .service-item h3 { font-size: 2rem; font-weight: 300; color:#0F6838; margin-bottom: 15px; line-height: 1.3;}

.wwdo .service-item .service-cta { display: inline-flex; align-items: center; color:#4EA848; text-decoration: none; font-weight: 500; font-size: 1rem; transition: all 0.3s ease; letter-spacing: 0.5px;}

.wwdo .service-item .service-cta span { margin-right: 8px;}
.wwdo .service-item .service-cta i { font-size: 12px; transition: transform 0.3s ease;}
.wwdo .service-item .service-cta:hover i { transform: translateX(3px);}


/*--------------------------------------------------------------
# PUBLICATIONS SECTION
--------------------------------------------------------------*/

.publications .publications-item { text-align: center; height: 100%; transition: all 0.4s ease-in-out; position: relative;}

.publications .publications-item:hover { transform: translateY(-5px);}
.publications .publications-item:hover img { transform: scale(1.05);}
.publications .publications-item img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.4s ease-in-out; margin-bottom:1rem;}

.publications .publications-item p { font-size:1.1rem; line-height: 1.6; color: color-mix(in srgb, var(--default-color), transparent 30%);}

/*--------------------------------------------------------------
# THE Footer
--------------------------------------------------------------*/
.TheFooter { color:#FFF; background: #4EA848; font-size: 0.9rem; padding:30px 0; }

.TheFooter .social-links {display: flex; gap: 15px; margin-top: 0;}
.TheFooter .social-links a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius:30px;transition: all 0.3s ease; text-decoration: none; background-color: #FFF;  color:#0F6838; border-color:1px solid #FFF; }
.TheFooter .social-links a:hover { transform: translateY(-3px); background-color: #0F6838;  color:#FFF;  border: #FFF; }
.TheFooter .social-links a i { font-size: 16px;}

.TheFooter p{ display: block; padding:2rem 0 0 0;}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer { color:#FFF; background: #4EA848; font-size: 0.9rem; padding: 80px 0 0; position: relative; border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);}

.footer .footer-brand h1, .footer .footer-brand .logo { margin: 0; line-height: 1; font-weight: 300;}

.footer .footer-brand h1 .sitename, .footer .footer-brand .logo .sitename { font-family: var(--heading-font); font-size: 26px; letter-spacing: 0.8px; color: var(--heading-color);}

.footer .footer-brand .tagline { color: color-mix(in srgb, var(--default-color), transparent 30%); font-size: 16px; line-height: 1.7; font-weight: 300; margin: 12px 0 0;}

.footer .social-links { display: flex; gap: 15px; margin-top: 20px;}

.footer .social-links a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background-color: transparent; color: color-mix(in srgb, var(--default-color), transparent 40%); transition: all 0.3s ease; text-decoration: none; border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);}

.footer .social-links a:hover { background-color: #4EA848; color: var(--contrast-color); transform: translateY(-3px); border-color: #4EA848;}

.footer .social-links a i { font-size: 16px;}

.footer .footer-links-grid h5 { color: var(--heading-color); font-size: 16px; font-weight: 500; margin-bottom: 20px; font-family: var(--heading-font); letter-spacing: 0.5px;}

.footer .footer-links-grid ul { list-style: none; padding: 0; margin: 0;}

.footer .footer-links-grid ul li { margin-bottom: 12px;}

.footer .footer-links-grid ul li a { color: color-mix(in srgb, var(--default-color), transparent 25%); text-decoration: none; font-size: 15px; font-weight: 300; transition: all 0.3s ease; position: relative; padding-left: 10px;}

.footer .footer-links-grid ul li a::before { content: "→"; position: absolute; left: 0; opacity: 0; transition: all 0.3s ease; color: #4EA848;}

.footer .footer-links-grid ul li a:hover { color: #4EA848; padding-left: 16px;}

.footer .footer-links-grid ul li a:hover::before { opacity: 1;}

.footer .footer-cta h5 { color: var(--heading-color); font-size: 16px; font-weight: 500; margin-bottom: 18px; font-family: var(--heading-font);}

.footer .footer-cta .btn-outline { background: transparent; color: var(--heading-color); border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%); padding: 10px 24px; font-size: 14px; font-weight: 500; border-radius: 4px; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 0.8px;}

.footer .footer-cta .btn-outline:hover { background: #4EA848; color: var(--contrast-color); border-color: #4EA848; transform: translateY(-2px);}

.footer .footer-bottom { margin-top: 60px; padding: 25px 0; border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);}

.footer .footer-bottom .footer-bottom-content { display: flex; justify-content: space-between; align-items: center;}

@media (max-width: 768px) { .footer .footer-bottom .footer-bottom-content {   flex-direction: column;   gap: 15px;   text-align: center; }
}

.footer .footer-bottom .footer-bottom-content p { margin: 0; color: color-mix(in srgb, var(--default-color), transparent 40%); font-size: 14px; font-weight: 300;}

.footer .footer-bottom .footer-bottom-content p .sitename { color: var(--heading-color); font-weight: 500;}

.footer .footer-bottom .footer-bottom-content .credits { font-size: 13px; color: color-mix(in srgb, var(--default-color), transparent 50%);}

.footer .footer-bottom .footer-bottom-content .credits a { color: #4EA848; text-decoration: none; font-weight: 400;}

.footer .footer-bottom .footer-bottom-content .credits a:hover { text-decoration: underline;}

@media (max-width: 991px) { .footer .footer-links-grid {   margin-bottom: 30px; }

  .footer .footer-cta {   text-align: center; }
}

@media (max-width: 768px) { .footer {   padding: 60px 0 0; }

  .footer .row {   text-align: center; }

  .footer .footer-brand,   .footer .footer-links-grid,   .footer .footer-cta {   margin-bottom: 40px; }

  .footer .footer-links-grid .col-6 {   margin-bottom: 30px; }

  .footer .footer-links-grid h5 {   text-align: left; }

  .footer .footer-links-grid ul {   text-align: left;   display: inline-block; }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader { position: fixed; inset: 0; z-index: 999999; overflow: hidden; background: var(--background-color); transition: all 0.6s ease-out;}

#preloader:before { content: ""; position: fixed; top: calc(50% - 30px); left: calc(50% - 30px); border: 6px solid #ffffff; border-color: #4EA848 transparent #4EA848 transparent; border-radius: 50%; width: 60px; height: 60px; animation: animate-preloader 1.5s linear infinite;}

@keyframes animate-preloader { 0% {   transform: rotate(0deg); }

  100% {   transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top { position: fixed; visibility: hidden; opacity: 0; right: 15px; bottom: 15px; z-index: 99999; background-color: #4EA848; width: 40px; height: 40px; border-radius: 4px; transition: all 0.4s;}

.scroll-top i { font-size: 24px; color: var(--contrast-color); line-height: 0;}

.scroll-top:hover { background-color: color-mix(in srgb, #4EA848, transparent 20%); color: var(--contrast-color);}

.scroll-top.active { visibility: visible; opacity: 1;}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) { [data-aos-delay] {   transition-delay: 0 !important; }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about { background-color: color-mix(in srgb, var(--background-color), var(--surface-color) 40%);}

.about .content .section-heading { font-size: 2.5rem; font-weight: 300; line-height: 1.2; color: var(--heading-color); letter-spacing: -0.02em;}

@media (max-width: 768px) { .about .content .section-heading {   font-size: 2rem; }
}

.about .content .lead-text { font-size: 1.25rem; font-weight: 300; line-height: 1.7; color: var(--default-color);}

.about .content .description-text { font-size: 1rem; line-height: 1.8; color: color-mix(in srgb, var(--default-color), transparent 20%);}

.about .stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem;}

@media (max-width: 576px) { .about .stats-grid {   grid-template-columns: 1fr;   gap: 1.5rem;   text-align: center; }
}

.about .stats-grid .stat-item .stat-number { font-size: 2.5rem; font-weight: 200; color: #4EA848; line-height: 1; margin-bottom: 0.5rem;}

.about .stats-grid .stat-item .stat-label { font-size: 0.9rem; font-weight: 400; color: var(--heading-color); text-transform: uppercase; letter-spacing: 0.05em;}

.about .cta-section .cta-link { display: inline-flex; align-items: center; color: #4EA848; font-weight: 400; font-size: 1.1rem; text-decoration: none; transition: all 0.3s ease;}

.about .cta-section .cta-link:hover { color: var(--heading-color); transform: translateX(5px);}

.about .cta-section .cta-link i { transition: transform 0.3s ease;}

.about .cta-section .cta-link:hover i { transform: translateX(5px);}

.about .image-section { position: relative;}

.about .image-section .main-image { border-radius: 8px; overflow: hidden; box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);}

.about .image-section .main-image img { width: 100%; height: auto; transition: transform 0.3s ease;}

.about .image-section .main-image:hover img { transform: scale(1.02);}

.about .image-section .floating-badge { position: absolute; bottom: -20px; right: -20px; background-color: var(--surface-color); border-radius: 12px; padding: 1.5rem; box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 80%);}

@media (max-width: 768px) { .about .image-section .floating-badge {   bottom: -15px;   right: -15px;   padding: 1rem; }
}

.about .image-section .floating-badge .badge-content { display: flex; align-items: center; gap: 1rem;}

.about .image-section .floating-badge .badge-content i { font-size: 2rem; color: #4EA848;}

.about .image-section .floating-badge .badge-content .badge-text .badge-title { display: block; font-weight: 500; color: var(--heading-color); font-size: 1rem; line-height: 1.2;}

.about .image-section .floating-badge .badge-content .badge-text .badge-subtitle { display: block; font-size: 0.85rem; color: color-mix(in srgb, var(--default-color), transparent 30%); font-weight: 300;}

@media (max-width: 992px) { .about .content {   margin-bottom: 3rem; }

  .about .image-section .floating-badge {   position: relative;   bottom: auto;   right: auto;   margin-top: 2rem;   display: inline-block; }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services { padding-top: 60px; padding-bottom: 2px;}

.services .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); margin-bottom: 80px;}

@media (min-width: 992px) { .services .services-grid {   grid-template-columns: repeat(3, 1fr);   gap: 50px; }
}

.services .service-item {padding: 40px 30px; border-radius: 8px; position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%); gap: 40px; margin-bottom:2rem;}

.services .service-item::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, color-mix(in srgb, #4EA848, transparent 60%), #4EA848); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;}

.services .service-item:hover { transform: translateY(-5px); box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 88%); border-color: color-mix(in srgb, #4EA848, transparent 80%);}

.services .service-item:hover::before { transform: scaleX(1);}

.services .service-item:hover .service-number { color: #4EA848; transform: scale(1.1);}

.services .service-item:hover .service-icon { transform: scale(1.05); background: #4EA848;}

.services .service-item:hover .service-icon i { color: var(--contrast-color);}

.services .service-item:hover .service-cta { transform: translateX(8px); color: #4EA848;}

.services .service-item.featured { background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), #4EA848 3%)); border-color: #4EA848; transform: scale(1.02);}

.services .service-item.featured .featured-badge { position: absolute; top: 20px; right: 20px; background: #4EA848; color: var(--contrast-color); padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;}

.services .service-item.featured::before { transform: scaleX(1);}

.services .service-item.featured .service-number { color: #4EA848;}

.services .service-item .service-number { font-size: 14px; font-weight: 300; color: color-mix(in srgb, var(--default-color), transparent 40%); margin-bottom: 20px; transition: all 0.3s ease; letter-spacing: 2px;}

.services .service-item .service-icon { width: 60px; height: 60px; background: color-mix(in srgb, #4EA848, transparent 90%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; transition: all 0.3s ease;}

.services .service-item .service-icon i { font-size: 24px; color: #4EA848; transition: color 0.3s ease;}

.services .service-item h3 { font-size: 24px; font-weight: 300; color: var(--heading-color); margin-bottom: 15px; line-height: 1.3;}

.services .service-item p { color: color-mix(in srgb, var(--default-color), transparent 25%); line-height: 1.7; margin-bottom: 25px; font-size: 15px;}

.services .service-item .service-cta { display: inline-flex; align-items: center; color: color-mix(in srgb, var(--default-color), transparent 20%); text-decoration: none; font-weight: 500; font-size: 14px; transition: all 0.3s ease; letter-spacing: 0.5px;}

.services .service-item .service-cta span { margin-right: 8px;}

.services .service-item .service-cta i { font-size: 12px; transition: transform 0.3s ease;}

.services .service-item .service-cta:hover i { transform: translateX(3px);}

.services .services-footer { background: var(--surface-color); padding: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: space-between; border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);}

@media (max-width: 768px) { .services .services-footer {   flex-direction: column;   text-align: center;   gap: 30px;   padding: 40px 30px; }
}

.services .services-footer .footer-content { flex: 1;}

.services .services-footer .footer-content h4 { font-size: 28px; font-weight: 300; color: var(--heading-color); margin-bottom: 8px;}

.services .services-footer .footer-content p { color: color-mix(in srgb, var(--default-color), transparent 30%); margin: 0; font-size: 16px; line-height: 1.6;}

.services .services-footer .primary-cta { background: linear-gradient(135deg, #4EA848, color-mix(in srgb, #4EA848, var(--heading-color) 10%)); color: var(--contrast-color); padding: 18px 35px; border-radius: 6px; text-decoration: none; font-weight: 500; display: inline-flex; align-items: center; transition: all 0.3s ease; box-shadow: 0 8px 25px color-mix(in srgb, #4EA848, transparent 70%);}

.services .services-footer .primary-cta:hover { transform: translateY(-2px); box-shadow: 0 15px 40px color-mix(in srgb, #4EA848, transparent 60%); color: var(--contrast-color);}

.services .services-footer .primary-cta i { margin-left: 10px; font-size: 14px; transition: transform 0.3s ease;}

.services .services-footer .primary-cta:hover i { transform: translateX(3px);}

@media (max-width: 768px) { .services .services-grid {   grid-template-columns: 1fr;   gap: 30px;   margin-bottom: 60px; }

  .services .service-item {   padding: 30px 25px; }

  .services .service-item h3 {   font-size: 22px; }

  .services .service-item p {   font-size: 14px; }

  .services .services-footer .footer-content h4 {   font-size: 24px; }
}

@media (max-width: 576px) { .services .services-grid {   gap: 25px; }

  .services .service-item {   padding: 25px 20px; }

  .services .service-item .service-icon {   width: 50px;   height: 50px; }

  .services .service-item .service-icon i {   font-size: 20px; }

  .services .services-footer {   padding: 30px 20px; }

  .services .services-footer .primary-cta {   padding: 15px 25px;   font-size: 14px; }
}

/*--------------------------------------------------------------
# Services Alt Section
--------------------------------------------------------------*/
.services-alt { overflow: hidden;}

.services-alt .section-subtitle { font-size: 18px; line-height: 1.7; color: color-mix(in srgb, var(--default-color), transparent 30%); font-weight: 300; margin: 0;}

.services-alt .service-item { height: 100%; transition: all 0.4s ease;}

.services-alt .service-item .service-visual { position: relative; overflow: hidden; border-radius: 8px; margin-bottom: 32px;}

.services-alt .service-item .service-visual img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.4s ease;}

.services-alt .service-item .service-content h3 { font-size: 24px; font-weight: 300; margin-bottom: 16px; line-height: 1.4;}

.services-alt .service-item .service-content p { font-size: 16px; line-height: 1.7; margin-bottom: 24px; color: color-mix(in srgb, var(--default-color), transparent 25%);}

.services-alt .service-item .service-content .service-link { display: inline-flex; align-items: center; gap: 8px; color: var(--heading-color); text-decoration: none; font-weight: 400; font-size: 15px; transition: all 0.3s ease;}

.services-alt .service-item .service-content .service-link span { border-bottom: 1px solid transparent; transition: border-color 0.3s ease;}

.services-alt .service-item .service-content .service-link i { font-size: 14px; transition: transform 0.3s ease;}

.services-alt .service-item .service-content .service-link:hover { color: #4EA848;}

.services-alt .service-item .service-content .service-link:hover span { border-bottom-color: #4EA848;}

.services-alt .service-item .service-content .service-link:hover i { transform: translateX(4px);}

.services-alt .service-item:hover .service-visual img { transform: scale(1.05);}

.services-alt .cta-section { background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), #4EA848 5%) 100%); padding: 64px 48px; border-radius: 8px; border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);}

.services-alt .cta-section h4 { font-size: 32px; font-weight: 300; margin-bottom: 16px; line-height: 1.3;}

.services-alt .cta-section p { font-size: 18px; line-height: 1.7; color: color-mix(in srgb, var(--default-color), transparent 30%); margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto;}

.services-alt .cta-section .btn-primary { display: inline-flex; align-items: center; gap: 12px; background-color: #4EA848; color: var(--contrast-color); padding: 16px 32px; border-radius: 6px; text-decoration: none; font-weight: 400; font-size: 16px; transition: all 0.3s ease; border: none;}

.services-alt .cta-section .btn-primary i { font-size: 16px; transition: transform 0.3s ease;}

.services-alt .cta-section .btn-primary:hover { background-color: color-mix(in srgb, #4EA848, black 10%); transform: translateY(-2px); color: var(--contrast-color);}

.services-alt .cta-section .btn-primary:hover i { transform: translateX(4px);}

@media (max-width: 768px) { .services-alt .cta-section {   padding: 48px 32px; }

  .services-alt .cta-section h4 {   font-size: 28px; }

  .services-alt .cta-section p {   font-size: 16px; }
}

@media (max-width: 768px) { .services-alt .service-item .service-visual {   margin-bottom: 24px; }

  .services-alt .service-item .service-visual img {   height: 240px; }

  .services-alt .service-item .service-content h3 {   font-size: 22px; }

  .services-alt .service-item .service-content p {   font-size: 15px;   margin-bottom: 20px; }
}

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
.projects .project-card { background: var(--surface-color); border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%); transition: all 0.3s ease; height: 100%;}

.projects .project-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);}

.projects .project-card:hover .project-overlay { opacity: 1;}

.projects .project-image { position: relative; overflow: hidden; height: 250px;}

.projects .project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease;}

.projects .project-image:hover img { transform: scale(1.05);}

.projects .project-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to bottom, transparent 0%, color-mix(in srgb, var(--default-color), transparent 10%) 100%); opacity: 0; transition: opacity 0.3s ease; display: flex; flex-direction: column; justify-content: space-between; padding: 20px;}

.projects .project-status { align-self: flex-start; padding: 6px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;}

.projects .project-status.completed { background: color-mix(in srgb, #28a745, transparent 20%); color: #ffffff;}

.projects .project-status.in-progress { background: color-mix(in srgb, #4EA848, transparent 20%); color: #ffffff;}

.projects .project-status.planning { background: color-mix(in srgb, #ffc107, transparent 20%); color: #ffffff;}

.projects .project-actions { align-self: center;}

.projects .btn-project { background: #4EA848; color: var(--contrast-color); padding: 10px 24px; border-radius: 25px; text-decoration: none; font-weight: 600; font-size: 14px; transition: all 0.3s ease; display: inline-block;}

.projects .btn-project:hover { background: color-mix(in srgb, #4EA848, transparent 20%); color: var(--contrast-color); transform: translateY(-2px);}

.projects .project-info { padding: 25px;}

.projects .project-category { color: #4EA848; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;}

.projects .project-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--heading-color); line-height: 1.3;}

.projects .project-description { color: color-mix(in srgb, var(--default-color), transparent 30%); font-size: 14px; line-height: 1.6; margin-bottom: 20px;}

.projects .project-meta { display: flex; gap: 20px;}

.projects .project-meta span { display: flex; align-items: center; gap: 6px; font-size: 12px; color: color-mix(in srgb, var(--default-color), transparent 40%);}

.projects .project-meta span i { font-size: 14px; color: #4EA848;}

@media (max-width: 768px) { .projects .project-meta {   flex-direction: column;   gap: 8px; }

  .projects .project-title {   font-size: 18px; }

  .projects .project-image {   height: 200px; }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative;}

.testimonials .testimonial-masonry::before { content: ""; position: absolute; width: 100%; height: 100%; background: radial-gradient(circle at center, color-mix(in srgb, #4EA848, transparent 95%), transparent); opacity: 0.5; z-index: -1;}

.testimonials .testimonial-item:nth-child(3n-1) { margin-top: 3rem;}

.testimonials .testimonial-item:nth-child(3n) { margin-top: 1.5rem;}

.testimonials .testimonial-item.highlight .testimonial-content { background-color: color-mix(in srgb, #4EA848, transparent 92%); border: 1px solid color-mix(in srgb, #4EA848, transparent 70%);}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern { background-color: color-mix(in srgb, #4EA848, transparent 85%);}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern i { color: #4EA848;}

.testimonials .testimonial-content { background-color: var(--surface-color); border-radius: 20px; padding: 2rem; position: relative; transition: all 0.3s ease; border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);}

.testimonials .testimonial-content:hover { transform: translateY(-5px);}

.testimonials .testimonial-content p { font-size: 1rem; line-height: 1.7; margin: 1.5rem 0; position: relative;}

.testimonials .quote-pattern { position: absolute; top: -1.25rem; left: 2rem; width: 2.5rem; height: 2.5rem; background-color: var(--surface-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);}

.testimonials .quote-pattern i { font-size: 1.25rem; color: #4EA848;}

.testimonials .client-info { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);}

.testimonials .client-image { width: 50px; height: 50px; border-radius: 50%; overflow: hidden; flex-shrink: 0;}

.testimonials .client-image img { width: 100%; height: 100%; object-fit: cover;}

.testimonials .client-details h3 { font-size: 1.125rem; margin-bottom: 0.25rem;}

.testimonials .client-details .position { font-size: 0.875rem; color: color-mix(in srgb, var(--heading-color), transparent 40%);}

@media (max-width: 1199.98px) { .testimonials .testimonial-masonry {   grid-template-columns: repeat(2, 1fr);   gap: 1.5rem; }

  .testimonials .testimonial-item:nth-child(3n-1),   .testimonials .testimonial-item:nth-child(3n) {   margin-top: 0; }

  .testimonials .testimonial-item:nth-child(even) {   margin-top: 2rem; }
}

@media (max-width: 767.98px) { .testimonials .testimonial-masonry {   grid-template-columns: 1fr;   gap: 2rem; }

  .testimonials .testimonial-item:nth-child(even) {   margin-top: 0; }

  .testimonials .testimonial-content {   padding: 1.5rem; }

  .testimonials .testimonial-content p {   font-size: 0.9375rem;   margin: 1.25rem 0; }

  .testimonials .quote-pattern {   width: 2.25rem;   height: 2.25rem;   top: -1.125rem; }

  .testimonials .quote-pattern i {   font-size: 1.125rem; }

  .testimonials .client-info {   margin-top: 1.25rem;   padding-top: 1.25rem; }

  .testimonials .client-image {   width: 45px;   height: 45px; }

  .testimonials .client-details h3 {   font-size: 1rem; }

  .testimonials .client-details .position {   font-size: 0.8125rem; }
}

/*--------------------------------------------------------------
# Certifications Section
--------------------------------------------------------------*/
.certifications .content h2 { font-size: 2.5rem; font-weight: 300; margin-bottom: 1.5rem; letter-spacing: -0.02em; line-height: 1.2;}

.certifications .content p { font-size: 1.125rem; line-height: 1.7; color: color-mix(in srgb, var(--default-color), transparent 20%); margin-bottom: 0;}

.certifications .certification-item { text-align: center; padding: 2.5rem 1.5rem; height: 100%; transition: all 0.4s ease-in-out; position: relative;}

.certifications .certification-item:hover { transform: translateY(-5px);}

.certifications .certification-item:hover .certification-badge img { transform: scale(1.05);}

.certifications .certification-item .certification-badge { margin-bottom: 2rem; width: 120px; height: 120px; margin-left: auto; margin-right: auto; display: flex; align-items: center; justify-content: center; background: var(--surface-color); border-radius: 8px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); padding: 1rem;}

.certifications .certification-item .certification-badge img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.4s ease-in-out;}

.certifications .certification-item h4 { font-size: 1.25rem; font-weight: 400; margin-bottom: 1rem; color: var(--heading-color); line-height: 1.3;}

.certifications .certification-item p { font-size: 0.95rem; line-height: 1.6; color: color-mix(in srgb, var(--default-color), transparent 30%); margin-bottom: 0;}

.certifications .certification-stats { margin-top: 2rem; padding: 3rem 2rem; background: var(--surface-color); border-radius: 8px; box-shadow: 0 6px 30px rgba(0, 0, 0, 0.03);}

.certifications .certification-stats .stat-item h3 { font-size: 2.5rem; font-weight: 300; color: #4EA848; margin-bottom: 0.5rem; line-height: 1;}

.certifications .certification-stats .stat-item p { font-size: 0.9rem; color: color-mix(in srgb, var(--default-color), transparent 40%); margin-bottom: 0; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 500;}

@media (max-width: 768px) { .certifications {   padding: 80px 0; }

  .certifications .content h2 {   font-size: 2rem; }

  .certifications .content p {   font-size: 1rem; }

  .certifications .certification-item {   padding: 2rem 1rem; }

  .certifications .certification-item .certification-badge {   width: 100px;   height: 100px;   margin-bottom: 1.5rem; }

  .certifications .certification-item h4 {   font-size: 1.125rem; }

  .certifications .certification-stats {   padding: 2rem 1rem; }

  .certifications .certification-stats .stat-item h3 {   font-size: 2rem; }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member { background-color: var(--surface-color); border-radius: 8px; overflow: hidden; transition: all 0.3s ease-in-out;}

.team .team-member:hover { transform: translateY(-8px); box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);}

.team .team-member .member-img { position: relative; overflow: hidden;}

.team .team-member .member-img img { width: 100%; height: 300px; object-fit: cover; transition: transform 0.3s ease-in-out;}

.team .team-member .member-img::after { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--heading-color), transparent 20%) 100%); opacity: 0; transition: opacity 0.3s ease-in-out;}

.team .team-member .member-info { padding: 32px 28px; text-align: center;}

.team .team-member .member-info h4 { font-size: 22px; font-weight: 300; margin: 0 0 8px 0; color: var(--heading-color); line-height: 1.3;}

.team .team-member .member-info span { display: block; font-size: 14px; color: #4EA848; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;}

.team .team-member .member-info p { font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--default-color), transparent 20%); margin-bottom: 24px;}

.team .team-member .member-info .social { display: flex; justify-content: center; gap: 12px;}

.team .team-member .member-info .social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background-color: color-mix(in srgb, var(--default-color), transparent 95%); color: color-mix(in srgb, var(--default-color), transparent 30%); border-radius: 50%; font-size: 16px; transition: all 0.3s ease-in-out;}

.team .team-member .member-info .social a:hover { background-color: #4EA848; color: var(--contrast-color); transform: translateY(-3px);}

.team .team-member:hover .member-img img { transform: scale(1.08);}

.team .team-member:hover .member-img::after { opacity: 1;}

@media (max-width: 768px) { .team .team-member .member-info {   padding: 24px 20px; }

  .team .team-member .member-info h4 {   font-size: 20px; }

  .team .team-member .member-img img {   height: 250px; }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action { padding-top: 60px; padding-bottom: 60px;}

.call-to-action .container { position: relative; z-index: 2;}

.call-to-action .cta-header { margin-bottom: 80px;}

.call-to-action .cta-header h2 { font-size: 3.2rem; font-weight: 300; color: var(--heading-color); margin-bottom: 2rem; line-height: 1.2; letter-spacing: -0.02em;}

@media (max-width: 768px) { .call-to-action .cta-header h2 {   font-size: 2.4rem;   margin-bottom: 1.5rem; }
}

.call-to-action .cta-header p { font-size: 1.2rem; line-height: 1.8; color: color-mix(in srgb, var(--default-color), transparent 25%); max-width: 800px; margin: 0 auto;}

@media (max-width: 768px) { .call-to-action .cta-header p {   font-size: 1.1rem; }
}

@media (max-width: 992px) { .call-to-action .cta-header {   margin-bottom: 60px; }
}

.call-to-action .achievements-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px;}

@media (max-width: 576px) { .call-to-action .achievements-grid {   grid-template-columns: 1fr;   gap: 20px; }
}

.call-to-action .achievements-grid .achievement-item { background: var(--surface-color); padding: 40px 30px; border-radius: 12px; text-align: center; transition: all 0.4s ease; border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);}

.call-to-action .achievements-grid .achievement-item:hover { transform: translateY(-8px); box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 88%);}

.call-to-action .achievements-grid .achievement-item .achievement-icon { margin-bottom: 20px;}

.call-to-action .achievements-grid .achievement-item .achievement-icon i { font-size: 2.5rem; color: #4EA848;}

.call-to-action .achievements-grid .achievement-item .achievement-info h3 { font-size: 2.8rem; font-weight: 300; color: var(--heading-color); margin-bottom: 8px; line-height: 1;}

.call-to-action .achievements-grid .achievement-item .achievement-info span { font-size: 0.95rem; color: color-mix(in srgb, var(--default-color), transparent 30%); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 500;}

@media (max-width: 768px) { .call-to-action .achievements-grid .achievement-item {   padding: 30px 20px; }
}

.call-to-action .action-panel { background: var(--surface-color); border-radius: 20px; padding: 50px; box-shadow: 0 30px 80px color-mix(in srgb, var(--default-color), transparent 90%); border: 1px solid color-mix(in srgb, #4EA848, transparent 90%);}

@media (max-width: 768px) { .call-to-action .action-panel {   padding: 40px 30px;   margin-top: 40px; }
}

.call-to-action .action-panel .panel-content { margin-bottom: 40px;}

.call-to-action .action-panel .panel-content h3 { font-size: 2.2rem; font-weight: 400; color: var(--heading-color); margin-bottom: 1.5rem; line-height: 1.3;}

@media (max-width: 768px) { .call-to-action .action-panel .panel-content h3 {   font-size: 1.8rem; }
}

.call-to-action .action-panel .panel-content p { font-size: 1.1rem; line-height: 1.7; color: color-mix(in srgb, var(--default-color), transparent 20%); margin-bottom: 2.5rem;}

.call-to-action .action-panel .panel-content .action-buttons { display: flex; gap: 15px; flex-direction: column;}

.call-to-action .action-panel .panel-content .action-buttons .btn-primary, .call-to-action .action-panel .panel-content .action-buttons .btn-secondary { display: flex; align-items: center; justify-content: space-between; padding: 18px 25px; border-radius: 10px; text-decoration: none; font-weight: 500; font-size: 1.05rem; transition: all 0.3s ease;}

.call-to-action .action-panel .panel-content .action-buttons .btn-primary i, .call-to-action .action-panel .panel-content .action-buttons .btn-secondary i { font-size: 1.1rem;}

.call-to-action .action-panel .panel-content .action-buttons .btn-primary { background: #4EA848; color: var(--contrast-color); border: none;}

.call-to-action .action-panel .panel-content .action-buttons .btn-primary:hover { background: color-mix(in srgb, #4EA848, black 10%); transform: translateY(-2px);}

.call-to-action .action-panel .panel-content .action-buttons .btn-secondary { background: transparent; color: var(--heading-color); border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);}

.call-to-action .action-panel .panel-content .action-buttons .btn-secondary:hover { border-color: #4EA848; color: #4EA848; transform: translateY(-2px);}

.call-to-action .action-panel .contact-quick { padding-top: 30px; border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);}

.call-to-action .action-panel .contact-quick .contact-row { display: flex; align-items: center; gap: 20px; margin-bottom: 20px;}

.call-to-action .action-panel .contact-quick .contact-row:last-child { margin-bottom: 0;}

.call-to-action .action-panel .contact-quick .contact-row i { font-size: 1.5rem; color: #4EA848; flex-shrink: 0;}

.call-to-action .action-panel .contact-quick .contact-row .contact-details { display: flex; flex-direction: column; gap: 3px;}

.call-to-action .action-panel .contact-quick .contact-row .contact-details .contact-label { font-size: 0.9rem; color: color-mix(in srgb, var(--default-color), transparent 40%); font-weight: 500;}

.call-to-action .action-panel .contact-quick .contact-row .contact-details .contact-value { font-size: 1rem; color: var(--heading-color); font-weight: 600;}

@media (max-width: 992px) { .call-to-action {   padding: 40px 0; }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-header .service-title { font-size: 3rem; font-weight: 300; color: var(--heading-color); line-height: 1.2; margin-bottom: 1.5rem;}

.service-details .service-header .service-subtitle { font-size: 1.1rem; color: var(--default-color); line-height: 1.7; margin: 0;}

.service-details .service-header .service-stats { display: flex; gap: 2rem; justify-content: flex-end;}

.service-details .service-header .service-stats .stat-item { text-align: center;}

.service-details .service-header .service-stats .stat-item .stat-number { font-size: 2.5rem; font-weight: 300; color: #4EA848; line-height: 1; margin-bottom: 0.5rem;}

.service-details .service-header .service-stats .stat-item .stat-label { font-size: 0.9rem; color: var(--default-color); text-transform: uppercase; letter-spacing: 1px;}

.service-details .service-overview { margin-bottom: 4rem;}

.service-details .service-overview .service-image { width: 100%; height: 350px; object-fit: cover; border-radius: 12px; margin-bottom: 3rem;}

.service-details .service-overview .overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;}

.service-details .service-overview .overview-grid .overview-item i { font-size: 2.5rem; color: #4EA848; margin-bottom: 1.5rem; display: block;}

.service-details .service-overview .overview-grid .overview-item h3 { font-size: 1.4rem; font-weight: 400; color: var(--heading-color); margin-bottom: 1rem;}

.service-details .service-overview .overview-grid .overview-item p { font-size: 1rem; line-height: 1.7; color: var(--default-color); margin: 0;}

.service-details .capabilities-section { margin-bottom: 4rem;}

.service-details .capabilities-section h2 { font-size: 2.2rem; font-weight: 300; color: var(--heading-color); margin-bottom: 3rem;}

.service-details .capabilities-section .custom-tabs { border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%); margin-bottom: 3rem; padding-left: 0;}

.service-details .capabilities-section .custom-tabs .nav-item .nav-link { background: none; border: none; border-bottom: 2px solid transparent; padding: 1rem 2rem; font-size: 1rem; color: var(--default-color); cursor: pointer; transition: all 0.3s ease; border-radius: 0;}

.service-details .capabilities-section .custom-tabs .nav-item .nav-link.active { color: #4EA848; border-bottom-color: #4EA848; background: none;}

.service-details .capabilities-section .custom-tabs .nav-item .nav-link:hover:not(.active) { color: var(--heading-color); border-bottom-color: transparent; background: none;}

.service-details .capabilities-section .custom-tabs .nav-item .nav-link:focus { box-shadow: none;}

.service-details .capabilities-section .tab-content .tab-pane { padding: 2rem 0;}

.service-details .capabilities-section .tab-content .tab-pane h4 { font-size: 1.5rem; font-weight: 400; color: var(--heading-color); margin-bottom: 1rem;}

.service-details .capabilities-section .tab-content .tab-pane p { font-size: 1rem; line-height: 1.7; color: var(--default-color); margin-bottom: 2rem;}

.service-details .capabilities-section .tab-content .tab-pane .capability-features { list-style: none; padding: 0;}

.service-details .capabilities-section .tab-content .tab-pane .capability-features li { padding: 0.5rem 0; color: var(--default-color); position: relative; padding-left: 1.5rem;}

.service-details .capabilities-section .tab-content .tab-pane .capability-features li:before { content: "→"; color: #4EA848; position: absolute; left: 0; top: 0.5rem;}

.service-details .service-sidebar .quick-info-card, .service-details .service-sidebar .contact-form-card, .service-details .service-sidebar .expertise-highlights { background-color: var(--surface-color); padding: 2.5rem; border-radius: 16px; margin-bottom: 2.5rem; border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);}

.service-details .service-sidebar .quick-info-card .info-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem;}

.service-details .service-sidebar .quick-info-card .info-header h3 { font-size: 1.4rem; font-weight: 400; color: var(--heading-color); margin: 0;}

.service-details .service-sidebar .quick-info-card .info-header .info-badge { background-color: color-mix(in srgb, #4EA848, transparent 85%); color: #4EA848; padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px;}

.service-details .service-sidebar .quick-info-card .info-content .info-row { display: flex; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);}

.service-details .service-sidebar .quick-info-card .info-content .info-row:last-child { border-bottom: none;}

.service-details .service-sidebar .quick-info-card .info-content .info-row .label { color: var(--default-color); font-weight: 400;}

.service-details .service-sidebar .quick-info-card .info-content .info-row .value { color: var(--heading-color); font-weight: 500;}

.service-details .service-sidebar .contact-form-card h3 { font-size: 1.4rem; font-weight: 400; color: var(--heading-color); margin-bottom: 0.5rem;}

.service-details .service-sidebar .contact-form-card p { color: var(--default-color); margin-bottom: 2rem; font-size: 0.95rem;}

.service-details .service-sidebar .contact-form-card .consultation-form .form-group { margin-bottom: 1.5rem;}

.service-details .service-sidebar .contact-form-card .consultation-form .form-group input, .service-details .service-sidebar .contact-form-card .consultation-form .form-group select, .service-details .service-sidebar .contact-form-card .consultation-form .form-group textarea { width: 100%; padding: 1rem; border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%); border-radius: 8px; background-color: var(--surface-color); color: var(--default-color); font-size: 0.95rem; transition: border-color 0.3s ease;}

.service-details .service-sidebar .contact-form-card .consultation-form .form-group input:focus, .service-details .service-sidebar .contact-form-card .consultation-form .form-group select:focus, .service-details .service-sidebar .contact-form-card .consultation-form .form-group textarea:focus { outline: none; border-color: #4EA848;}

.service-details .service-sidebar .contact-form-card .consultation-form .form-group input::placeholder, .service-details .service-sidebar .contact-form-card .consultation-form .form-group select::placeholder, .service-details .service-sidebar .contact-form-card .consultation-form .form-group textarea::placeholder { color: color-mix(in srgb, var(--default-color), transparent 70%);}

.service-details .service-sidebar .contact-form-card .consultation-form .form-group select { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1rem;}

.service-details .service-sidebar .contact-form-card .consultation-form .btn-submit { width: 100%; background-color: #4EA848; color: var(--contrast-color); border: none; padding: 1rem; border-radius: 8px; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: all 0.3s ease;}

.service-details .service-sidebar .contact-form-card .consultation-form .btn-submit:hover { background-color: color-mix(in srgb, #4EA848, black 10%); transform: translateY(-1px);}

.service-details .service-sidebar .expertise-highlights h4 { font-size: 1.2rem; font-weight: 400; color: var(--heading-color); margin-bottom: 2rem;}

.service-details .service-sidebar .expertise-highlights .expertise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;}

.service-details .service-sidebar .expertise-highlights .expertise-grid .expertise-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; border-radius: 8px; transition: background-color 0.3s ease;}

.service-details .service-sidebar .expertise-highlights .expertise-grid .expertise-item:hover { background-color: color-mix(in srgb, #4EA848, transparent 95%);}

.service-details .service-sidebar .expertise-highlights .expertise-grid .expertise-item i { color: #4EA848; font-size: 1.1rem;}

.service-details .service-sidebar .expertise-highlights .expertise-grid .expertise-item span { font-size: 0.9rem; color: var(--default-color); font-weight: 500;}

.service-details .project-showcase { margin-top: 5rem;}

.service-details .project-showcase h2 { font-size: 2.2rem; font-weight: 300; color: var(--heading-color); text-align: center; margin-bottom: 3rem;}

.service-details .project-showcase .showcase-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 300px 300px; gap: 1.5rem;}

.service-details .project-showcase .showcase-grid .showcase-item { position: relative; overflow: hidden; border-radius: 12px; cursor: pointer;}

.service-details .project-showcase .showcase-grid .showcase-item.large { grid-row: span 2; grid-column: span 1;}

.service-details .project-showcase .showcase-grid .showcase-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;}

.service-details .project-showcase .showcase-grid .showcase-item .showcase-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)); display: flex; align-items: flex-end; opacity: 0; transition: opacity 0.3s ease;}

.service-details .project-showcase .showcase-grid .showcase-item .showcase-overlay .showcase-content { padding: 2rem; color: white; width: 100%;}

.service-details .project-showcase .showcase-grid .showcase-item .showcase-overlay .showcase-content h4 { font-size: 1.2rem; font-weight: 400; margin-bottom: 0.5rem;}

.service-details .project-showcase .showcase-grid .showcase-item .showcase-overlay .showcase-content .project-type { font-size: 0.9rem; opacity: 0.8; display: block; margin-bottom: 1rem;}

.service-details .project-showcase .showcase-grid .showcase-item .showcase-overlay .showcase-content .view-project { color: white; font-size: 1.5rem; position: absolute; top: 1.5rem; right: 1.5rem; transition: transform 0.3s ease;}

.service-details .project-showcase .showcase-grid .showcase-item .showcase-overlay .showcase-content .view-project:hover { transform: scale(1.2);}

.service-details .project-showcase .showcase-grid .showcase-item:hover h4 { color: var(--contrast-color);}

.service-details .project-showcase .showcase-grid .showcase-item:hover img { transform: scale(1.05);}

.service-details .project-showcase .showcase-grid .showcase-item:hover .showcase-overlay { opacity: 1;}

@media (max-width: 992px) { .service-details .service-header .service-title {   font-size: 2.2rem; }

  .service-details .service-header .service-stats {   justify-content: center;   margin-top: 2rem;   gap: 1.5rem; }

  .service-details .service-overview .overview-grid {   grid-template-columns: 1fr;   gap: 2rem; }

  .service-details .capabilities-section .custom-tabs {   flex-direction: column; }

  .service-details .capabilities-section .custom-tabs .nav-item .nav-link {   padding: 0.75rem 1rem;   border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);   border-right: none; }

  .service-details .capabilities-section .custom-tabs .nav-item .nav-link.active {   background-color: color-mix(in srgb, #4EA848, transparent 95%);   border-bottom-color: #4EA848; }

  .service-details .project-showcase .showcase-grid {   grid-template-columns: 1fr 1fr; }

  .service-details .project-showcase .showcase-grid .showcase-item.large {   grid-column: span 2;   grid-row: span 1; }

  .service-details .service-sidebar {   margin-top: 3rem; }

  .service-details .service-sidebar .expertise-highlights .expertise-grid {   grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) { .service-details .service-header .service-title {   font-size: 1.8rem; }

  .service-details .service-header .service-stats {   flex-direction: column;   gap: 1rem; }

  .service-details .capabilities-section .custom-tabs .nav-item .nav-link {   font-size: 0.9rem;   padding: 0.6rem 1rem; }

  .service-details .project-showcase .showcase-grid {   grid-template-columns: 1fr; }

  .service-details .project-showcase .showcase-grid .showcase-item.large {   grid-column: span 1; }

  .service-details .service-sidebar .expertise-highlights .expertise-grid {   grid-template-columns: 1fr; }
}

/*--------------------------------------------------------------
# Project Details Section
--------------------------------------------------------------*/
.project-details .project-hero { position: relative; border-radius: 8px; overflow: hidden; margin-bottom: 40px;}

.project-details .project-hero img { width: 100%; height: 500px; object-fit: cover; transition: all 0.4s ease;}

.project-details .project-hero .project-hero-overlay { position: absolute; top: 30px; right: 30px;}

.project-details .project-hero .project-hero-overlay .project-status { background: #4EA848; color: var(--contrast-color); padding: 8px 20px; border-radius: 20px; font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px;}

@media (max-width: 768px) { .project-details .project-hero {   margin-bottom: 30px; }

  .project-details .project-hero img {   height: 300px; }

  .project-details .project-hero .project-hero-overlay {   top: 20px;   right: 20px; }
}

.project-details .project-info { padding-left: 40px;}

.project-details .project-info .project-meta { display: flex; gap: 20px; margin-bottom: 20px;}

.project-details .project-info .project-meta span { color: color-mix(in srgb, var(--default-color), transparent 40%); font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px;}

.project-details .project-info .project-title { font-size: 2.5rem; font-weight: 300; line-height: 1.3; margin-bottom: 24px; color: var(--heading-color);}

.project-details .project-info .project-description { font-size: 16px; line-height: 1.7; color: color-mix(in srgb, var(--default-color), transparent 20%); margin-bottom: 40px;}

.project-details .project-info .project-details .detail-item { display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);}

.project-details .project-info .project-details .detail-item:last-child { border-bottom: none;}

.project-details .project-info .project-details .detail-item .label { color: color-mix(in srgb, var(--default-color), transparent 40%); font-weight: 500;}

.project-details .project-info .project-details .detail-item .value { color: var(--heading-color); font-weight: 600;}

@media (max-width: 992px) { .project-details .project-info {   padding-left: 0;   margin-top: 40px; }
}

@media (max-width: 768px) { .project-details .project-info .project-title {   font-size: 2rem; }
}

.project-details .project-gallery { margin: 80px 0;}

.project-details .project-gallery .gallery-item { border-radius: 8px; overflow: hidden; height: 100%; transition: all 0.4s ease;}

.project-details .project-gallery .gallery-item:hover { transform: translateY(-5px);}

.project-details .project-gallery .gallery-item img { width: 100%; height: 300px; object-fit: cover; transition: all 0.4s ease;}

@media (max-width: 768px) { .project-details .project-gallery .gallery-item {   margin-bottom: 20px; }

  .project-details .project-gallery .gallery-item img {   height: 250px; }
}

.project-details .project-content { margin: 80px 0;}

.project-details .project-content .content-section { margin-bottom: 60px;}

.project-details .project-content .content-section:last-child { margin-bottom: 0;}

.project-details .project-content .content-section h3 { font-size: 1.8rem; font-weight: 300; margin-bottom: 24px; color: var(--heading-color);}

.project-details .project-content .content-section p { font-size: 16px; line-height: 1.8; color: color-mix(in srgb, var(--default-color), transparent 20%); margin-bottom: 20px;}

.project-details .project-content .solution-points { margin-top: 40px;}

.project-details .project-content .solution-points .point-item { display: flex; align-items: flex-start; margin-bottom: 30px;}

.project-details .project-content .solution-points .point-item:last-child { margin-bottom: 0;}

.project-details .project-content .solution-points .point-item .point-icon { margin-right: 20px; margin-top: 5px;}

.project-details .project-content .solution-points .point-item .point-icon i { color: #4EA848; font-size: 20px;}

.project-details .project-content .solution-points .point-item .point-content h5 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; color: var(--heading-color);}

.project-details .project-content .solution-points .point-item .point-content p { margin-bottom: 0; color: color-mix(in srgb, var(--default-color), transparent 30%);}

@media (max-width: 768px) { .project-details .project-content {   margin: 60px 0; }
}

.project-details .project-specs { background-color: var(--surface-color); padding: 60px 40px; border-radius: 12px; margin-top: 80px;}

.project-details .project-specs .specs-content h3 { font-size: 1.8rem; font-weight: 300; margin-bottom: 40px; color: var(--heading-color);}

.project-details .project-specs .specs-content .specs-grid .spec-item { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);}

.project-details .project-specs .specs-content .specs-grid .spec-item:last-child { border-bottom: none;}

.project-details .project-specs .specs-content .specs-grid .spec-item .spec-label { color: color-mix(in srgb, var(--default-color), transparent 40%); font-weight: 500;}

.project-details .project-specs .specs-content .specs-grid .spec-item .spec-value { color: var(--heading-color); font-weight: 600;}

.project-details .project-specs .specs-visual { padding-left: 40px;}

.project-details .project-specs .specs-visual img { width: 100%; border-radius: 8px;}

@media (max-width: 992px) { .project-details .project-specs .specs-visual {   padding-left: 0;   margin-top: 40px; }
}

@media (max-width: 768px) { .project-details .project-specs {   padding: 40px 20px;   margin-top: 60px; }
}

/*--------------------------------------------------------------
# Quote Section
--------------------------------------------------------------*/
.quote .quote-container { max-width: 1200px; margin: 0 auto;}

.quote .quote-content { padding: 60px 0;}

@media (max-width: 992px) { .quote .quote-content {   padding: 40px 20px 60px;   text-align: center; }
}

.quote .quote-content h2 { font-size: 42px; font-weight: 300; line-height: 1.2; margin-bottom: 24px; color: var(--heading-color);}

@media (max-width: 768px) { .quote .quote-content h2 {   font-size: 32px; }
}

.quote .quote-content>p { font-size: 18px; line-height: 1.7; color: color-mix(in srgb, var(--default-color), transparent 20%); margin-bottom: 50px;}

.quote .quote-benefits { margin-bottom: 50px;}

.quote .benefit-item { display: flex; align-items: flex-start; margin-bottom: 32px;}

.quote .benefit-item:last-child { margin-bottom: 0;}

@media (max-width: 992px) { .quote .benefit-item {   justify-content: center;   text-align: left;   max-width: 400px;   margin-left: auto;   margin-right: auto; }
}

.quote .benefit-item .benefit-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; margin-right: 20px; flex-shrink: 0; margin-top: 4px;}

.quote .benefit-item .benefit-icon i { font-size: 24px; color: #4EA848;}

.quote .benefit-item .benefit-content h4 { font-size: 18px; font-weight: 400; margin-bottom: 8px; color: var(--heading-color);}

.quote .benefit-item .benefit-content p { font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--default-color), transparent 30%); margin: 0;}

.quote .contact-info { display: flex; flex-direction: column; gap: 16px;}

@media (max-width: 992px) { .quote .contact-info {   align-items: center; }
}

.quote .contact-info .contact-detail { display: flex; align-items: center; font-size: 15px; color: color-mix(in srgb, var(--default-color), transparent 15%);}

.quote .contact-info .contact-detail i { font-size: 16px; color: #4EA848; margin-right: 12px;}

.quote .quote-form { background: var(--surface-color); padding: 60px 50px; margin-left: 40px; border-radius: 4px; box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 94%);}

@media (max-width: 992px) { .quote .quote-form {   margin-left: 0;   margin-top: 40px;   padding: 40px 30px; }
}

@media (max-width: 576px) { .quote .quote-form {   padding: 30px 20px; }
}

.quote .quote-form .form-intro { margin-bottom: 40px;}

.quote .quote-form .form-intro h3 { font-size: 28px; font-weight: 300; margin-bottom: 12px; color: var(--heading-color);}

.quote .quote-form .form-intro p { font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--default-color), transparent 30%); margin: 0;}

.quote .php-email-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px;}

@media (max-width: 768px) { .quote .php-email-form .form-grid {   grid-template-columns: 1fr;   gap: 20px; }
}

.quote .php-email-form .form-field.full-width { grid-column: 1/-1;}

.quote .php-email-form .form-field label { display: block; font-size: 14px; font-weight: 500; color: var(--heading-color); margin-bottom: 8px;}

.quote .php-email-form input[type=text], .quote .php-email-form input[type=email], .quote .php-email-form input[type=tel], .quote .php-email-form select, .quote .php-email-form textarea { width: 100%; padding: 16px 20px; border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%); border-radius: 4px; font-size: 15px; line-height: 1.5; transition: all 0.3s ease; color: var(--default-color); background-color: var(--surface-color);}

.quote .php-email-form input[type=text]:focus, .quote .php-email-form input[type=email]:focus, .quote .php-email-form input[type=tel]:focus, .quote .php-email-form select:focus, .quote .php-email-form textarea:focus { outline: none; border-color: #4EA848; box-shadow: 0 0 0 3px color-mix(in srgb, #4EA848, transparent 88%);}

.quote .php-email-form input[type=text]::placeholder, .quote .php-email-form input[type=email]::placeholder, .quote .php-email-form input[type=tel]::placeholder, .quote .php-email-form select::placeholder, .quote .php-email-form textarea::placeholder { color: color-mix(in srgb, var(--default-color), transparent 55%);}

.quote .php-email-form select { background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 20px center; background-size: 16px; padding-right: 50px; appearance: none;}

.quote .php-email-form textarea { resize: vertical; min-height: 120px; font-family: var(--default-font);}

.quote .php-email-form .submit-btn { display: inline-flex; align-items: center; gap: 12px; background: #4EA848; color: var(--contrast-color); padding: 18px 32px; border: none; border-radius: 4px; font-size: 16px; font-weight: 500; cursor: pointer; transition: all 0.3s ease; margin-top: 20px;}

.quote .php-email-form .submit-btn:hover { background: color-mix(in srgb, #4EA848, #000 8%); transform: translateY(-1px);}

.quote .php-email-form .submit-btn:hover i { transform: translateX(4px);}

.quote .php-email-form .submit-btn i { font-size: 16px; transition: transform 0.3s ease;}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-main-wrapper { position: relative; display: grid; grid-template-columns: 1fr; gap: 30px;}

@media (min-width: 992px) { .contact .contact-main-wrapper {   grid-template-columns: 45% 55%;   min-height: 600px; }
}

.contact .map-wrapper { height: 300px; width: 100%; border-radius: 16px; overflow: hidden;}

@media (min-width: 992px) { .contact .map-wrapper {   height: 100%;   position: sticky;   top: 100px; }
}

.contact .contact-content { display: flex; flex-direction: column; gap: 30px;}

.contact .contact-cards-container { display: grid; grid-template-columns: 1fr; gap: 15px;}

@media (min-width: 576px) { .contact .contact-cards-container {   grid-template-columns: repeat(2, 1fr); }
}

.contact .contact-card { background-color: var(--surface-color); padding: 20px; border-radius: 12px; display: flex; align-items: flex-start; gap: 15px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04); transition: transform 0.3s ease, box-shadow 0.3s ease;}

.contact .contact-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);}

.contact .contact-card .icon-box { width: 50px; height: 50px; flex-shrink: 0; background-color: color-mix(in srgb, #4EA848, transparent 90%); border-radius: 10px; display: flex; justify-content: center; align-items: center;}

.contact .contact-card .icon-box i { font-size: 22px; color: #4EA848;}

.contact .contact-card .contact-text h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--heading-color);}

.contact .contact-card .contact-text p { font-size: 14px; line-height: 1.5; color: var(--default-color); margin-bottom: 0;}

.contact .contact-form-container { background-color: var(--surface-color); padding: 30px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);}

.contact .contact-form-container h3 { font-size: 24px; font-weight: 700; margin-bottom: 15px; color: var(--heading-color); position: relative; padding-left: 15px;}

.contact .contact-form-container h3:before { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px; background-color: #4EA848; border-radius: 2px;}

.contact .contact-form-container>p { font-size: 15px; line-height: 1.6; margin-bottom: 25px; color: var(--default-color);}

.contact .contact-form-container .php-email-form .form-control { height: auto; padding: 14px 20px; border-radius: 10px; background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%); border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); color: var(--default-color); transition: all 0.3s ease;}

.contact .contact-form-container .php-email-form .form-control:focus { background-color: var(--surface-color); border-color: #4EA848; box-shadow: 0 0 0 3px color-mix(in srgb, #4EA848, transparent 85%);}

.contact .contact-form-container .php-email-form .form-control::placeholder { color: color-mix(in srgb, var(--default-color), transparent 60%);}

.contact .contact-form-container .php-email-form textarea.form-control { min-height: 140px;}

.contact .contact-form-container .php-email-form .form-submit { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-top: 10px;}

@media (max-width: 576px) { .contact .contact-form-container .php-email-form .form-submit {   flex-direction: column;   align-items: flex-start; }
}

.contact .contact-form-container .php-email-form button { background-color: #4EA848; color: var(--contrast-color); border: none; padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 15px; letter-spacing: 0.5px; transition: all 0.3s ease;}

.contact .contact-form-container .php-email-form button:hover { background-color: color-mix(in srgb, #4EA848, #000 15%); transform: translateY(-2px); box-shadow: 0 6px 15px color-mix(in srgb, #4EA848, transparent 75%);}

.contact .contact-form-container .BTNGREEN { background-color: #4EA848; color: var(--contrast-color); border: none; padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 15px; letter-spacing: 0.5px; transition: all 0.3s ease;}

.contact .contact-form-container .BTNGREEN:hover { background-color: color-mix(in srgb, #4EA848, #000 15%); transform: translateY(-2px); box-shadow: 0 6px 15px color-mix(in srgb, #4EA848, transparent 75%);}



.contact .contact-form-container .php-email-form .social-links { display: flex; gap: 12px;}

.contact .contact-form-container .php-email-form .social-links a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%); color: var(--heading-color); font-size: 16px; transition: all 0.3s ease;}

.contact .contact-form-container .php-email-form .social-links a:hover { background-color: #4EA848; color: var(--contrast-color); transform: translateY(-3px);}

@media (max-width: 768px) { .contact .contact-form-container {   padding: 25px 20px; }

  .contact .contact-form-container h3 {   font-size: 22px; }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header { margin-bottom: 60px;}

.terms-of-service .tos-header .last-updated { display: inline-block; padding: 8px 20px; background-color: color-mix(in srgb, #4EA848, transparent 90%); border-radius: 30px; color: #4EA848; font-size: 0.95rem; margin-bottom: 20px;}

.terms-of-service .tos-header h2 { font-size: 2.5rem; margin-bottom: 15px;}

.terms-of-service .tos-header p { color: color-mix(in srgb, var(--default-color), transparent 30%); font-size: 1.1rem; max-width: 700px; margin: 0 auto;}

.terms-of-service .tos-content .content-section { margin-bottom: 50px; scroll-margin-top: 100px;}

.terms-of-service .tos-content .content-section:last-child { margin-bottom: 0;}

.terms-of-service .tos-content .content-section h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--heading-color);}

.terms-of-service .tos-content .content-section p { color: color-mix(in srgb, var(--default-color), transparent 20%); line-height: 1.7; margin-bottom: 20px;}

.terms-of-service .tos-content .content-section p:last-child { margin-bottom: 0;}

.terms-of-service .tos-content .content-section .info-box { display: flex; align-items: flex-start; gap: 15px; padding: 20px; background-color: color-mix(in srgb, #4EA848, transparent 95%); border-radius: 15px; margin-top: 20px;}

.terms-of-service .tos-content .content-section .info-box i { font-size: 1.5rem; color: #4EA848; flex-shrink: 0;}

.terms-of-service .tos-content .content-section .info-box p { margin: 0; font-size: 0.95rem;}

.terms-of-service .tos-content .content-section .list-items { list-style: none; padding: 0; margin: 20px 0;}

.terms-of-service .tos-content .content-section .list-items li { position: relative; padding-left: 25px; margin-bottom: 12px; color: color-mix(in srgb, var(--default-color), transparent 20%);}

.terms-of-service .tos-content .content-section .list-items li:last-child { margin-bottom: 0;}

.terms-of-service .tos-content .content-section .list-items li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background-color: #4EA848;}

.terms-of-service .tos-content .content-section .alert-box { display: flex; gap: 20px; padding: 25px; background-color: var(--surface-color); border-radius: 15px; border-left: 4px solid #4EA848; margin-top: 20px;}

.terms-of-service .tos-content .content-section .alert-box i { font-size: 2rem; color: #4EA848; flex-shrink: 0;}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 { font-size: 1.1rem; margin-bottom: 8px;}

.terms-of-service .tos-content .content-section .alert-box .alert-content p { margin: 0; font-size: 0.95rem;}

.terms-of-service .tos-content .content-section .prohibited-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px;}

@media (max-width: 576px) { .terms-of-service .tos-content .content-section .prohibited-list {   grid-template-columns: 1fr; }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item { display: flex; align-items: center; gap: 12px; padding: 15px; background-color: var(--surface-color); border-radius: 12px;}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i { color: #dc3545; font-size: 1.2rem;}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span { font-size: 0.95rem; color: color-mix(in srgb, var(--default-color), transparent 20%);}

.terms-of-service .tos-content .content-section .disclaimer-box { background-color: var(--surface-color); padding: 25px; border-radius: 15px; margin-top: 20px;}

.terms-of-service .tos-content .content-section .disclaimer-box p { margin-bottom: 15px; font-weight: 500;}

.terms-of-service .tos-content .content-section .disclaimer-box ul { list-style: none; padding: 0; margin: 0;}

.terms-of-service .tos-content .content-section .disclaimer-box ul li { position: relative; padding-left: 25px; margin-bottom: 12px; color: color-mix(in srgb, var(--default-color), transparent 20%); font-size: 0.95rem;}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child { margin-bottom: 0;}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before { content: "•"; position: absolute; left: 8px; color: #4EA848;}

.terms-of-service .tos-content .content-section .notice-box { display: flex; align-items: center; gap: 15px; padding: 20px; background-color: color-mix(in srgb, #4EA848, transparent 95%); border-radius: 15px; margin-top: 20px;}

.terms-of-service .tos-content .content-section .notice-box i { font-size: 1.5rem; color: #4EA848; flex-shrink: 0;}

.terms-of-service .tos-content .content-section .notice-box p { margin: 0; font-size: 0.95rem;}

.terms-of-service .tos-contact { margin-top: 60px;}

.terms-of-service .tos-contact .contact-box { background: linear-gradient(135deg, color-mix(in srgb, #4EA848, transparent 95%) 0%, color-mix(in srgb, #4EA848, transparent 98%) 100%); border-radius: 20px; padding: 40px; display: flex; align-items: center; gap: 30px;}

@media (max-width: 576px) { .terms-of-service .tos-contact .contact-box {   flex-direction: column;   text-align: center; }
}

.terms-of-service .tos-contact .contact-box .contact-icon { width: 60px; height: 60px; background-color: #4EA848; border-radius: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;}

.terms-of-service .tos-contact .contact-box .contact-icon i { font-size: 1.8rem; color: var(--contrast-color);}

.terms-of-service .tos-contact .contact-box .contact-content { flex: 1;}

.terms-of-service .tos-contact .contact-box .contact-content h4 { font-size: 1.4rem; margin-bottom: 8px;}

.terms-of-service .tos-contact .contact-box .contact-content p { color: color-mix(in srgb, var(--default-color), transparent 30%); margin-bottom: 15px;}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link { display: inline-flex; align-items: center; gap: 8px; padding: 12px 25px; background-color: #4EA848; color: var(--contrast-color); border-radius: 30px; text-decoration: none; font-weight: 500; transition: all 0.3s;}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);}

@media print { .terms-of-service .tos-contact {   display: none; }

  .terms-of-service .content-section {   page-break-inside: avoid; }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy { font-size: 1rem; line-height: 1.7;}

.privacy .privacy-header { margin-bottom: 60px; text-align: center; border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); padding-bottom: 40px;}

.privacy .privacy-header .header-content { max-width: 800px; margin: 0 auto;}

.privacy .privacy-header .header-content .last-updated { font-size: 0.95rem; color: color-mix(in srgb, var(--default-color), transparent 40%); margin-bottom: 20px;}

.privacy .privacy-header .header-content h1 { font-size: 2.8rem; color: var(--heading-color); margin-bottom: 20px; font-weight: 600;}

.privacy .privacy-header .header-content .intro-text { font-size: 1.2rem; color: color-mix(in srgb, var(--default-color), transparent 20%); line-height: 1.6;}

.privacy .privacy-content { margin: 0 auto 60px;}

.privacy .privacy-content .content-section { margin-bottom: 50px;}

.privacy .privacy-content .content-section:last-child { margin-bottom: 0;}

.privacy .privacy-content .content-section h2 { font-size: 1.8rem; color: var(--heading-color); margin-bottom: 25px; font-weight: 600;}

.privacy .privacy-content .content-section h3 { font-size: 1.4rem; color: var(--heading-color); margin: 30px 0 20px; font-weight: 500;}

.privacy .privacy-content .content-section p { margin-bottom: 20px;}

.privacy .privacy-content .content-section p:last-child { margin-bottom: 0;}

.privacy .privacy-content .content-section ul { list-style: none; padding: 0; margin: 0 0 20px;}

.privacy .privacy-content .content-section ul li { position: relative; padding-left: 25px; margin-bottom: 12px;}

.privacy .privacy-content .content-section ul li:last-child { margin-bottom: 0;}

.privacy .privacy-content .content-section ul li::before { content: "•"; position: absolute; left: 8px; color: #4EA848;}

.privacy .privacy-contact { max-width: 800px; margin: 0 auto; padding-top: 40px; border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);}

.privacy .privacy-contact h2 { font-size: 1.8rem; color: var(--heading-color); margin-bottom: 20px; font-weight: 600;}

.privacy .privacy-contact p { margin-bottom: 20px;}

.privacy .privacy-contact .contact-details { background-color: var(--surface-color); padding: 25px; border-radius: 10px;}

.privacy .privacy-contact .contact-details p { margin-bottom: 10px;}

.privacy .privacy-contact .contact-details p:last-child { margin-bottom: 0;}

.privacy .privacy-contact .contact-details p strong { color: var(--heading-color); font-weight: 600;}

@media print { .privacy {   font-size: 12pt;   line-height: 1.5; }

  .privacy .privacy-header {   text-align: left;   border-bottom: 1pt solid #000;   padding-bottom: 20pt;   margin-bottom: 30pt; }

  .privacy h1 {   font-size: 24pt; }

  .privacy h2 {   font-size: 18pt;   page-break-after: avoid; }

  .privacy h3 {   font-size: 14pt;   page-break-after: avoid; }

  .privacy p,   .privacy ul {   page-break-inside: avoid; }

  .privacy .contact-details {   border: 1pt solid #000;   padding: 15pt; }
}

@media (max-width: 767px) { .privacy .privacy-header {   margin-bottom: 40px;   padding-bottom: 30px; }

  .privacy .privacy-header .header-content h1 {   font-size: 2.2rem; }

  .privacy .privacy-header .header-content .intro-text {   font-size: 1.1rem; }

  .privacy .privacy-content .content-section {   margin-bottom: 40px; }

  .privacy .privacy-content .content-section h2 {   font-size: 1.6rem; }

  .privacy .privacy-content .content-section h3 {   font-size: 1.3rem; }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 { padding: 120px 0; min-height: 100vh; display: flex; align-items: center; background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, #4EA848, transparent 97%) 100%);}

.error-404 .error-number { font-size: clamp(120px, 20vw, 280px); font-weight: 300; color: color-mix(in srgb, var(--heading-color), transparent 15%); line-height: 0.8; margin-bottom: 40px; font-family: var(--heading-font); letter-spacing: -0.02em;}

.error-404 .error-title { font-size: clamp(32px, 5vw, 48px); font-weight: 300; color: var(--heading-color); margin-bottom: 32px; letter-spacing: -0.01em;}

.error-404 .error-description { font-size: 18px; line-height: 1.7; color: color-mix(in srgb, var(--default-color), transparent 20%); margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto;}

.error-404 .error-actions { display: flex; flex-direction: column; gap: 16px; align-items: center; margin-bottom: 80px;}

@media (min-width: 576px) { .error-404 .error-actions {   flex-direction: row;   justify-content: center;   gap: 24px; }
}

.error-404 .error-actions .btn-primary { display: inline-flex; align-items: center; gap: 12px; padding: 16px 32px; background-color: #4EA848; color: var(--contrast-color); border-radius: 8px; text-decoration: none; font-weight: 400; font-size: 16px; transition: all 0.3s ease; border: 2px solid #4EA848;}

.error-404 .error-actions .btn-primary:hover { background-color: transparent; color: #4EA848; transform: translateY(-2px);}

.error-404 .error-actions .btn-primary i { font-size: 18px;}

.error-404 .error-actions .btn-secondary { display: inline-flex; align-items: center; gap: 12px; padding: 16px 32px; background-color: transparent; color: var(--heading-color); border-radius: 8px; text-decoration: none; font-weight: 400; font-size: 16px; transition: all 0.3s ease; border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);}

.error-404 .error-actions .btn-secondary:hover { border-color: #4EA848; color: #4EA848; transform: translateY(-2px);}

.error-404 .error-actions .btn-secondary i { font-size: 18px;}

.error-404 .helpful-links { text-align: center;}

.error-404 .helpful-links h3 { font-size: 24px; font-weight: 300; color: var(--heading-color); margin-bottom: 40px;}

.error-404 .helpful-links .links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; max-width: 800px; margin: 0 auto;}

@media (min-width: 768px) { .error-404 .helpful-links .links-grid {   grid-template-columns: repeat(3, 1fr); }
}

.error-404 .helpful-links .link-item { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 32px 20px; background-color: var(--surface-color); border-radius: 8px; text-decoration: none; color: var(--default-color); transition: all 0.3s ease; border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);}

.error-404 .helpful-links .link-item:hover { transform: translateY(-4px); box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%); color: #4EA848; border-color: color-mix(in srgb, #4EA848, transparent 70%);}

.error-404 .helpful-links .link-item i { font-size: 24px; color: #4EA848; transition: all 0.3s ease;}

.error-404 .helpful-links .link-item span { font-size: 16px; font-weight: 400;}

.error-404 .helpful-links .link-item:hover i { transform: scale(1.1);}

@media (max-width: 768px) { .error-404 {   padding: 80px 0; }

  .error-404 .error-actions {   margin-bottom: 60px; }

  .error-404 .helpful-links .links-grid {   grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) { .error-404 .helpful-links .links-grid {   grid-template-columns: 1fr; }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section { /* Add your styles here */
}