@charset "UTF-8";

/* 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: "Raleway",  sans-serif; --nav-font: "Poppins",  sans-serif;}

: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: #FF8000; /* 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: #FF8000; /* 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: #FF8000; /* 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: #FCFCFC; font-family: "Montserrat", sans-serif; font-size:16px;}

a { color: var(--accent-color); text-decoration: none; transition: 0.3s;}
a:hover { color: color-mix(in srgb, var(--accent-color), transparent 25%); text-decoration: none;}

h1, h3, h5 { color: #FF8000	;font-family: "Cabin", sans-serif;}
h2, h4, h6 { color: #FF8000	;font-family: "Cabin", sans-serif;}

/* 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 var(--accent-color); 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); }
}


/*--------------------------------------------------------------
# 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: var(--accent-color) transparent var(--accent-color) 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); }
}

/*--------------------------------------------------------------
# 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:2.5rem; font-weight:500; margin-bottom: 10px;}
.page-title h1 span {color: #00C187; font-weight:600; } 

.page-title .breadcrumbs ol { display: flex; flex-wrap: wrap; list-style: none; justify-content: center; padding: 0; margin: 0; font-size: 0.8rem; font-weight: 400; text-transform:uppercase;}
.page-title .breadcrumbs ol li a{color:#FF8000;}
.page-title .breadcrumbs ol li+li { padding-left: 10px;}
.page-title .breadcrumbs ol li+li::before { content: "\2192"; display: inline-block; padding-right: 10px; color:#FFF;}


/*--------------------------------------------------------------
# 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:126px; margin-right: 8px;}

.header .btn-getstarted, .header .btn-getstarted:focus { color: #FFF; background:#00C187; font-size: 0.9rem; padding: 8px 25px; margin: 0 0 0 30px; border-radius: 4px; transition: 0.3s; text-transform:uppercase;}
.header .btn-getstarted:hover, .header .btn-getstarted:focus:hover {background:#FF8000; }

.header .btn-ACTIVE, .header .btn-ACTIVE:focus { color: #FFF; background:#C74A2E; font-size: 0.9rem; padding: 8px 25px; margin: 0 0 0 30px; border-radius: 4px; transition: 0.3s; text-transform:uppercase;}
.header .btn-ACTIVE:hover, .header .btn-ACTIVE:focus:hover {background:#FF8000; }

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

  .header .btn-getstarted {   order: 2;   margin: 0 15px 0 0;   padding: 6px 15px; }

  .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(0, 193, 135, 0.85);}

/*--------------------------------------------------------------
# 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: 0.9rem;font-family: "Cabin", sans-serif; font-weight:600; 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: 0.8rem;   line-height: 0;   margin-left: 5px;   transition: 0.3s; }

  .navmenu li:last-child a {   padding-right: 0; }
  .navmenu li:hover>a {   color: #FF8000; }
	.navmenu .active,   .navmenu .active:focus {font-weight:700; color: #FF8000; }

  .navmenu .dropdown ul {   margin: 0;   padding: 10px 0;   background:  #FF8000;   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;   font-size: 15px;   text-transform: none;   color: #FFF; }

  .navmenu .dropdown ul a i {   font-size: 0.8rem; }

  .navmenu .dropdown ul a:hover,   .navmenu .dropdown ul .active:hover,   .navmenu .dropdown ul li:hover>a {   color: #000; }

  .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: var(--nav-color);   font-size: 28px;   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:#00C187;   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: #FFF;   padding: 10px 20px;  font-weight: 500;   display: flex;   align-items: center;   justify-content: space-between;   white-space: nowrap;   transition: 0.3s; }

  .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, var(--accent-color), transparent 90%); }

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

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

  .navmenu .active i,   .navmenu .active:focus i {   background-color: var(--accent-color);   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: 120px; position: relative; min-height:80vh; 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 video { width: 100%; height: 100%; object-fit: cover;}
.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.2); z-index: 2;}

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

.hero .hero-content h1 { font-size: 3rem; 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; color:#FFF;}

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

.hero .hero-content .hero-actions .btn { padding: 10px 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 h1 { font-size: 2rem;}
}

.hero .hero-content .hero-actions .btn-primary { background-color: #00C187; border-color: #00C187; color: #FFF;}
.hero .hero-content .hero-actions .btn-primary:hover { background-color: #FF8000; border-color: #FF8000; 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: var(--accent-color); border-color: var(--accent-color); transform: translateY(-2px);}

.hero .hero-content .hero-stats { background-color:rgba(0, 193, 135, 0.6); 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: 700; margin-bottom: 0.5rem; color:#FFF;}

.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; }


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

/*--------------------------------------------------------------
# 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;}

.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: 10px 0; scroll-margin-top: 90px; overflow: clip;}

@media (max-width: 1199px) {

  section,   .section {   scroll-margin-top: 66px; }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title { text-align: center; padding-bottom: 60px; position: relative;}

.section-title h2 { font-size: 32px; 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: color-mix(in srgb, var(--default-color), transparent 60%); left: 0; right: 0; bottom: 1px; margin: auto;}
.section-title h2::after { content: ""; position: absolute; display: block; width: 60px; height: 3px; background: var(--accent-color); left: 0; right: 0; bottom: 0; margin: auto;}

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


/*--------------------------------------------------------------
# MAIN TEXT
--------------------------------------------------------------*/
#MainText{min-height:400px;background:rgba(0, 193, 135, 0.1); }

/*--------------------------------------------------------------
# PAGE SECTIONS
--------------------------------------------------------------*/
#MainText .PageSections {padding:60px 0;}
#MainText .PageSections .section-title { text-align: center; padding-bottom: 60px;}

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

#MainText .PageSections .PSections-item { height: 100%; transition: all 0.4s ease;}
#MainText .PageSections .PSections-item .PSections-content h3 {font-weight:500; margin-bottom: 16px; line-height: 1.4;  color:#00C187; font-size:1.45rem;}
#MainText .PageSections .PSections-item .PSections-content p, #MainText .PageSections p {text-align:justify; line-height: 1.7; margin-bottom: 24px;}

#MainText .PageSections .PSections-item .PSections-content .PSections-link { display: inline-flex; align-items: center; gap: 8px;text-decoration: none; font-weight:700; transition: all 0.3s ease; text-transform:uppercase;}
#MainText .PageSections .PSections-item .PSections-content .PSections-link span { border-bottom: 1px solid transparent; transition: border-color 0.3s ease;}
#MainText .PageSections .PSections-item .PSections-content .PSections-link i { font-size: 14px; transition: transform 0.3s ease;}
#MainText .PageSections .PSections-item .PSections-content .PSections-link:hover {color:#C74A2E; }
#MainText .PageSections .PSections-item .PSections-content .PSections-link:hover span { border-bottom-color: var(--accent-color);}
#MainText .PageSections .PSections-item .PSections-content .PSections-link:hover i { transform: translateX(4px);}

/*--------------------------------------------------------------
# PAGE TEXT AREA
--------------------------------------------------------------*/

#MainText .TheText{padding:4rem 0;}

#MainText .TheText h2{font-weight:500; font-size: 2rem; }
#MainText .TheText h3{font-weight:600; font-size:1.6rem; color:#00C187; margin-top:2rem; }

#MainText .TheText p img.Sitfombe{padding:1rem; width:90%; margin:0 auto; border-radius:30px;}

#MainText .TheText p{text-align:justify; margin-bottom:1rem; font-size: 1.1rem; }
#MainText .TheText p.MakeBig{font-size: 1.3rem;color:#C74A2E;}

#MainText .TheText ul li {list-style:none; text-align:justify; color:#000;}
#MainText .TheText ul li::before {content: "\2192"; margin-left:-20px; padding-right:10px;color:#C74A2E;}



/*--------------------------------------------------------------
# PROFILES
--------------------------------------------------------------*/

#MainText .TheText .profile { background-color: var(--surface-color); border-radius: 8px; overflow: hidden; transition: all 0.3s ease-in-out; height:100%;}
#MainText .TheText .profile:hover { transform: translateY(-8px); box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);}

#MainText .TheText .profile .member-img img { width: 100%;}

#MainText .TheText .profile .member-info { padding: 32px 28px; text-align: center;}

#MainText .TheText .profile .member-info h4 { font-size: 1.3rem; font-weight: 300; margin: 0 0 8px 0; color: var(--heading-color); line-height: 1.3;}
#MainText .TheText .profile .member-info span { display: block; font-size: 0.8rem; color: var(--accent-color); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;}
#MainText .TheText .profile .member-info p { font-size: 0.9rem; line-height: 1.7; color: color-mix(in srgb, var(--default-color), transparent 20%); margin-bottom: 24px;}

#MainText .TheText .profile .member-info .social { display: flex; justify-content: center; gap: 12px;}
#MainText .TheText .profile .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;}
#MainText .TheText .profile .member-info .social a:hover { background-color: var(--accent-color); color: var(--contrast-color); transform: translateY(-3px);}

#MainText .TheText .profile:hover .member-img img { transform: scale(1.08);}
#MainText .TheText .profile:hover .member-img::after { opacity: 1;}


/*--------------------------------------------------------------
# DEPTS SECTION
--------------------------------------------------------------*/
#MainText .TheText .Dept-item { background:rgba(0, 193, 135, 0.1); 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%); height:100%;}

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

#MainText .TheText .Dept-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, var(--accent-color), transparent 80%);}

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

#MainText .TheText .Dept-item h3 { font-size:1.6rem; font-weight:600; color:#FF8000; margin-bottom: 15px; line-height: 1.3;}
#MainText .TheText .Dept-item p {line-height: 1.7; margin-bottom: 25px; font-size: 1.1rem;}


/*--------------------------------------------------------------
# PRODUCTS SECTION
--------------------------------------------------------------*/

#MainText .TheText .Prod-visual { position: relative; overflow: hidden; border-radius: 8px; margin-bottom: 32px;}

#MainText .TheText .Prod-visual { position: relative; overflow: hidden; height: 250px;}
#MainText .TheText .Prod-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease;}
#MainText .TheText .Prod-visual:hover img { transform: scale(1.05);}

#MainText .TheText .Prod-item { background:rgba(0, 193, 135, 0.1); 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%);}

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

#MainText .TheText .Prod-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, var(--accent-color), transparent 80%);}

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

#MainText .TheText .Prod-item h3 { font-size:1.6rem; font-weight:600; color:#FF8000; margin-bottom: 15px; line-height: 1.3;}
#MainText .TheText .Prod-item p {line-height: 1.7; margin-bottom: 25px; font-size: 1.1rem;}

/*--------------------------------------------------------------
# TABLES
--------------------------------------------------------------*/
#MainText  table { width: 100%; text-align:left; margin:2rem 0;}
#MainText  table thead {background-color:rgba(199, 74, 46, 0.8); border-bottom:1px solid #FFF;}
#MainText  table thead tr th { color:#FFF;   border:1px solid #FFF;}
#MainText  table thead tr th:last-child {border-right:none; }
#MainText  table thead tr th { text-align: left;padding:1rem 0.5rem; font-weight:600;}
#MainText  table tbody {border-top: none; border-bottom: none;}
#MainText  table tbody tr {background-color:rgba(199, 74, 46, 0.1); }
#MainText  table tbody tr:nth-child(even) { background-color:rgba(199, 74, 46, 0.05);}
#MainText  table tbody tr td { text-align: left;padding:0.5rem 1rem ; border:1px solid #FFF;}


#MainText .TheText .p-item { height: 100%; transition: all 0.4s ease; padding:1rem;text-align:center; }
#MainText .TheText .p-item img { width:90%; border-radius:10px; margin:1rem auto;}
#MainText .TheText .p-item a{color:#00C187; font-weight:700;}
#MainText .TheText .p-item a:hover{color:#C74A2E; }



/*--------------------------------------------------------------
# CONTACTS PAGE SECTION
--------------------------------------------------------------*/


#MainText .TheText .contact .contact-card { background-color: var(--surface-color); padding: 20px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04); transition: transform 0.3s ease, box-shadow 0.3s ease; margin-bottom:2rem;}

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

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

#MainText .TheText .contact .contact-card .icon-box i { font-size:2rem; color:#FF8000;}

#MainText .TheText .contact .contact-card .contact-text h4 { font-size:1.2rem; font-weight: 600; margin-bottom: 8px; color: #00C187;}

#MainText .TheText .contact .contact-card .contact-text p { font-size: 1rem; line-height: 1.5;margin-bottom: 0;}

#MainText .TheText .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);}

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

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

#MainText .TheText .contact .contact-form-container>p {line-height: 1.6; margin-bottom: 25px;}

#MainText .TheText .contact .contact-form-container .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;}

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

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

#MainText .TheText .contact .contact-form-container textarea.form-control { min-height: 140px;}

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

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

#MainText .TheText .contact .contact-form-container .fsubmit { background-color: var(--accent-color); 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;}

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

#MainText .TheText .contact .contact-form-container .social-links { display: flex; gap: 12px;}
#MainText .TheText .contact .contact-form-container .social-links a { display: flex; align-items: center; justify-content: center; width:50px; height:50px; border-radius: 50%; background-color: #00C187; color: #FFF; font-size:1.5rem; transition: all 0.3s ease;}

#MainText .TheText .contact .contact-form-container .social-links a:hover { background-color: #FF8000; color:#000; transform: translateY(-3px);}

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

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


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about { background:rgba(0, 193, 135, 0.1); padding:3rem 0;}

.about .content .section-heading { font-size: 2.5rem; font-weight:500; line-height: 1.2; color: #FF8000; letter-spacing:1px;}

.about .content p.lead-text { font-size: 1.25rem; font-weight: 300; line-height: 1.7; text-align:justify; color:#000;}
.about .content p.description-text { font-size: 1rem; line-height: 1.8; text-align:justify;}

.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:400; color: #FF8000; line-height: 1; margin-bottom: 0.5rem;}
.about .stats-grid .stat-item .stat-number span{ font-size:1rem; font-weight:700;}

.about .stats-grid .stat-item .stat-label { font-size: 0.9rem;font-weight:700;  color: #000;  text-transform: uppercase; letter-spacing: 0.05em;}
.about .stats-grid .stat-item .stat-label span {font-weight: 400;}

.about .cta-section .cta-link { display: inline-flex; align-items: center; color:#FF8000; font-weight:700; font-size: 1.1rem; text-decoration: none; transition: all 0.3s ease;}
.about .cta-section .cta-link:hover { color:#000; 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;}

.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: var(--accent-color);}

.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; }
}



/*--------------------------------------------------------------
# WHAT WE DO SECTION
--------------------------------------------------------------*/
.WhatWD {padding:60px 0;}
.WhatWD .section-title { text-align: center; padding-bottom: 60px;}



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

.WhatWD .wdo-item { height: 100%; transition: all 0.4s ease;}

.WhatWD .wdo-item .wdo-visual { position: relative; overflow: hidden; border-radius: 8px; margin-bottom: 32px;}

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

.WhatWD .wdo-item .wdo-content h3 {font-weight: 300; margin-bottom: 16px; line-height: 1.4;}
.WhatWD .wdo-item .wdo-content p {text-align:justify; line-height: 1.7; margin-bottom: 24px;}

.WhatWD .wdo-item .wdo-content .wdo-link { display: inline-flex; align-items: center; gap: 8px;  color:#00C187;text-decoration: none; font-weight:700; transition: all 0.3s ease; text-transform:uppercase;}

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

.WhatWD .wdo-item .wdo-content .wdo-link i { font-size: 14px; transition: transform 0.3s ease;}

.WhatWD .wdo-item .wdo-content .wdo-link:hover {color:#FF8000; }

.WhatWD .wdo-item .wdo-content .wdo-link:hover span { border-bottom-color: var(--accent-color);}

.WhatWD .wdo-item .wdo-content .wdo-link:hover i { transform: translateX(4px);}

.WhatWD .wdo-item:hover .wdo-visual img { transform: scale(1.05);}

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

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

.WhatWD .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;}

.WhatWD .cta-section .btn-primary { display: inline-flex; align-items: center; gap: 12px; background-color: var(--accent-color); 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;}

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

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

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

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

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

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

@media (max-width: 768px) { .WhatWD .wdo-item .wdo-visual {   margin-bottom: 24px; }

  .WhatWD .wdo-item .wdo-visual img {   height: 240px; }

  .WhatWD .wdo-item .wdo-content h3 {   font-size: 22px; }

  .WhatWD .wdo-item .wdo-content p {   font-size: 15px;   margin-bottom: 20px; }
}


.WhatWD .p-item { height: 100%; transition: all 0.4s ease; padding:1rem;text-align:center; }
.WhatWD .p-item img { width:80%; border-radius:10px; margin:0 auto;}

.WhatWD .p-item h3 {font-weight: 300; margin-bottom: 16px; line-height: 1.4; color:#FFF;}
.WhatWD .p-item p a {line-height: 1.7; margin-bottom: 24px; color:#FFF; text-transform:capitalize; font-weight:700; }

.WhatWD .p-item .p-link { display: inline-flex; align-items: center; gap: 8px;  color:#FF8000;text-decoration: none; font-weight:700; transition: all 0.3s ease; text-transform:uppercase;}
.WhatWD .p-item .p-link span { border-bottom: 1px solid transparent; transition: border-color 0.3s ease;}
.WhatWD .p-item .p-link i { font-size: 14px; transition: transform 0.3s ease;}
.WhatWD .p-item .p-link:hover {color:#FBFFF7; }
.WhatWD .p-item .p-link:hover span { border-bottom-color: var(--accent-color);}
.WhatWD .p-item .p-link:hover i { transform: translateX(4px);}

/*--------------------------------------------------------------
# BACKGROUND
--------------------------------------------------------------*/
#ORange{background: #00C187; border-radius:10px;}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer { color:#000; background:#FF8000; padding: 80px 0 0; position: relative;;}

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

.footer .social-links a { display: flex; align-items: center; justify-content: center; color:#FFF; transition: all 0.3s ease; text-decoration: none; margin-right:20px ;}
.footer .social-links a:hover {color: #404D37; transform: translateY(-3px);}
.footer .social-links a i { font-size:30px;}


.footer .footer-contacts h5 {color:#404D37; font-size: 1.2rem; font-weight:700; margin-bottom: 18px;}
.footer .footer-contacts p { margin-bottom:1rem; color:#FFF; font-weight:400;}
.footer .footer-contacts p i { color:#404D37; font-size: 1.2rem; font-weight:700; margin-right:1rem; }



.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: var(--accent-color);}

.footer .footer-links-grid ul li a:hover { color: var(--accent-color); 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: var(--accent-color); color: var(--contrast-color); border-color: var(--accent-color); transform: translateY(-2px);}

.footer .footer-bottom { margin-top: 60px; padding: 25px 0; border-top: 1px solid #FFF;}

.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:#FFF; 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:#FFF;}

.footer .footer-bottom .footer-bottom-content .credits a { color:#404D37; text-decoration: none; font-weight: 400;}
.footer .footer-bottom .footer-bottom-content .credits a:hover { text-decoration: underline;color:#FFF;}

@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; }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top { position: fixed; visibility: hidden; opacity: 0; right: 15px; bottom: 15px; z-index: 99999; background-color: var(--accent-color); 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, var(--accent-color), transparent 20%); color: var(--contrast-color);}

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



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

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

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

.services .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%);}

.services .service-item::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 60%), var(--accent-color)); 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, var(--accent-color), transparent 80%);}

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

.services .service-item:hover .service-number { color: var(--accent-color); transform: scale(1.1);}

.services .service-item:hover .service-icon { transform: scale(1.05); background: var(--accent-color);}

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

.services .service-item:hover .service-cta { transform: translateX(8px); color: var(--accent-color);}

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

.services .service-item.featured .featured-badge { position: absolute; top: 20px; right: 20px; background: var(--accent-color); 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: var(--accent-color);}

.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, var(--accent-color), 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: var(--accent-color); 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, var(--accent-color), color-mix(in srgb, var(--accent-color), 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, var(--accent-color), transparent 70%);}

.services .services-footer .primary-cta:hover { transform: translateY(-2px); box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), 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; padding:60px 0;}

.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: var(--accent-color);}

.services-alt .service-item .service-content .service-link:hover span { border-bottom-color: var(--accent-color);}

.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), var(--accent-color) 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: var(--accent-color); 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, var(--accent-color), 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, var(--accent-color), 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: var(--accent-color); 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, var(--accent-color), transparent 20%); color: var(--contrast-color); transform: translateY(-2px);}

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

.projects .project-category { color: var(--accent-color); 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: var(--accent-color);}

@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, var(--accent-color), 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, var(--accent-color), transparent 92%); border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);}

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

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern i { color: var(--accent-color);}

.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: var(--accent-color);}

.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: var(--accent-color); 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 {padding-top:100px;}

.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: var(--accent-color); 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: var(--accent-color); 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: var(--accent-color);}

.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, var(--accent-color), 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: var(--accent-color); color: var(--contrast-color); border: none;}

.call-to-action .action-panel .panel-content .action-buttons .btn-primary:hover { background: color-mix(in srgb, var(--accent-color), 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: var(--accent-color); color: var(--accent-color); 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: var(--accent-color); 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: var(--accent-color); 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: var(--accent-color); 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: var(--accent-color); border-bottom-color: var(--accent-color); 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: var(--accent-color); 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, var(--accent-color), transparent 85%); color: var(--accent-color); 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: var(--accent-color);}

.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: var(--accent-color); 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, var(--accent-color), 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, var(--accent-color), transparent 95%);}

.service-details .service-sidebar .expertise-highlights .expertise-grid .expertise-item i { color: var(--accent-color); 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, var(--accent-color), transparent 95%);   border-bottom-color: var(--accent-color); }

  .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: var(--accent-color); 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: var(--accent-color); 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: var(--accent-color);}

.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: var(--accent-color); 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: var(--accent-color); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), 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: var(--accent-color); 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, var(--accent-color), #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, var(--accent-color), transparent 90%); border-radius: 10px; display: flex; justify-content: center; align-items: center;}

.contact .contact-card .icon-box i { font-size: 22px; color: var(--accent-color);}

.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: var(--accent-color); 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: var(--accent-color); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), 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: var(--accent-color); 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, var(--accent-color), #000 15%); transform: translateY(-2px); box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), 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: var(--accent-color); 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, var(--accent-color), transparent 90%); border-radius: 30px; color: var(--accent-color); 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, var(--accent-color), transparent 95%); border-radius: 15px; margin-top: 20px;}

.terms-of-service .tos-content .content-section .info-box i { font-size: 1.5rem; color: var(--accent-color); 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: var(--accent-color);}

.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 var(--accent-color); margin-top: 20px;}

.terms-of-service .tos-content .content-section .alert-box i { font-size: 2rem; color: var(--accent-color); 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: var(--accent-color);}

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

.terms-of-service .tos-content .content-section .notice-box i { font-size: 1.5rem; color: var(--accent-color); 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, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), 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: var(--accent-color); 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: var(--accent-color); 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: var(--accent-color);}

.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, var(--accent-color), 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: var(--accent-color); color: var(--contrast-color); border-radius: 8px; text-decoration: none; font-weight: 400; font-size: 16px; transition: all 0.3s ease; border: 2px solid var(--accent-color);}

.error-404 .error-actions .btn-primary:hover { background-color: transparent; color: var(--accent-color); 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: var(--accent-color); color: var(--accent-color); 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: var(--accent-color); border-color: color-mix(in srgb, var(--accent-color), transparent 70%);}

.error-404 .helpful-links .link-item i { font-size: 24px; color: var(--accent-color); 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 */
}