/* --- Global & Variables --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --tectigon-dark: #121212; 
  --tectigon-dropdown-bg: #242424;
  --tectigon-accent: #00d68f; 
  --tectigon-white: #ffffff;
  --tectigon-muted: #e0e0e0;
  --tectigon-font: 'Poppins', sans-serif;
}

/* --- Navbar Styles --- */
.tectigon-navbar-wrapper {
  font-family: var(--tectigon-font);
  background-color: var(--tectigon-dark);
  color: var(--tectigon-white);
  padding: 20px 0;
  width: 100%;
  position: relative;
  z-index: 1000;
}

.tectigon-navbar-wrapper a {
  text-decoration: none;
}

.tectigon-navbar-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tectigon-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tectigon-logo-box {
  display: flex;
  flex-direction: column;
}

.tectigon-logo-text {
  font-size: 28px;
  font-weight: 600;
  color: var(--tectigon-white);
  position: relative;
  display: flex;
  align-items: center;
  line-height: 1;
}

.tectigon-logo-accent {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 2px;
}

.tectigon-logo-accent::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 35px;
  background-color: var(--tectigon-accent);
  border-radius: 50%;
  z-index: -1;
}

.tectigon-logo-sub {
  font-size: 10px;
  color: var(--tectigon-muted);
  letter-spacing: 1px;
  margin-top: 4px;
}

.tectigon-nav-menu {
  display: flex;
}

.tectigon-nav-list {
  display: flex;
  align-items: center;
  gap: 35px;
}

.tectigon-nav-link {
  color: var(--tectigon-white);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
}

.tectigon-nav-link:hover {
  color: var(--tectigon-accent);
}

.tectigon-navbar-wrapper .text-sm {
  font-size: 11px;
   color: #00d68f;
}

.tectigon-dropdown {
  position: relative;
}

.tectigon-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--tectigon-dropdown-bg);
  min-width: 200px;
  padding: 15px 0;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.tectigon-dropdown:hover .tectigon-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tectigon-dropdown-menu li a {
  display: block;
  color: var(--tectigon-white);
  padding: 10px 25px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.tectigon-dropdown-menu li a:hover {
  color: var(--tectigon-accent);
  padding-left: 30px;
}

.tectigon-btn-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid var(--tectigon-accent);
  border-radius: 10px;
  color: var(--tectigon-white);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tectigon-btn-cta:hover {
  background-color: var(--tectigon-accent);
  color: var(--tectigon-dark);
}

.tectigon-mobile-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--tectigon-white);
}

/* Navbar Responsive */
@media (max-width: 992px) {
  .tectigon-btn-cta { 
    display: none; 
  }
  
  .tectigon-mobile-toggle { 
    display: block; 
  }

  .tectigon-nav-menu { 
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--tectigon-dropdown-bg);
    padding: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .tectigon-nav-menu.active {
    display: block;
  }

  .tectigon-nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .tectigon-nav-link {
    padding: 15px 40px;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .tectigon-dropdown-menu {
    position: static;
    box-shadow: none;
    background-color: transparent;
    padding: 0 0 0 20px;
    display: none; 
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .tectigon-dropdown.active-mobile .tectigon-dropdown-menu {
    display: block;
  }
}

/* --- Page Wrapper & Sections --- */
.page-wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

.page-wrapper {
  background-color: #0f0f0f;
  color: #ffffff;
  font-family: 'Inter', -apple-system, sans-serif;
  overflow-x: hidden;
}

.hero-section {
  padding: 80px 5% 0 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- About Hero Section --- */
.ab-hero-section {
  background-color: #111111; 
  color: #ffffff;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: flex-end; 
  box-sizing: border-box;
  width: 100%;
}

.ab-hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ab-hero-subtitle {
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ab-hero-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 3px solid #00e6a8; 
  background-color: transparent;
}

.ab-hero-title {
 font-size: 140px;
    line-height: 1.05;
    margin: 0;
    letter-spacing: -1.5px;
}

.ab-hero-breadcrumbs {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 10px; 
}

.ab-breadcrumb-link {
  color: #00e6a8; 
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.ab-breadcrumb-link:hover {
  opacity: 0.8;
}

.ab-breadcrumb-separator {
  color: #888888;
  margin: 0 6px;
}

.ab-breadcrumb-current {
  color: #e0e0e0; 
}

@media (max-width: 768px) {
  .ab-hero-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    padding: 80px 5%;
  }

  .ab-hero-title {
    font-size: 52px;
  }
  
  .ab-hero-breadcrumbs {
    padding-bottom: 0;
  }
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  background-image: url('happy.avif');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; 
  border-radius: 30px;
  max-width: 100%;
  margin: 0 auto 100px auto; 
  overflow: hidden; 
  min-height: 600px;
}

.cta-overlay {
  position: absolute;
  /* inset: 0; */
  background: linear-gradient(to right, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.8) 40%, rgba(17, 17, 17, 0.6) 100%);
  z-index: 1;
}

.cta-container {
  position: relative;
  z-index: 2; 
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding: 100px 60px;
  align-items: center;
  min-width: 1200px;
}

@media (max-width: 1024px) {
  .cta-container {
    grid-template-columns: 1fr;
    padding: 80px 40px;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .cta-container {
    padding: 60px 20px;
  }
}

/* Building Digital Experiences */

/* --- Service Content Section --- */

:root {
  --tectigon-dark: #121212;
  
  --tectigon-accent: #1feda8; 
 
}

.service-content-section {
  background-color: var(--tectigon-dark, #121212);
  color: var(--tectigon-white, #ffffff);
  
  font-family: var(--tectigon-font, 'Poppins', sans-serif);
}




.sc-container {
  max-width: 1500px;
  margin: 10px auto;
  display: grid;
  grid-template-columns: 320px 1fr; /* Sidebar width and remaining space */
  gap: 60px;
  align-items: start;
}

/* --- Left Sidebar --- */
.sc-sidebar {
  background-color: #1a1a1a; /* Dark gray card background */
  padding: 30px;
  border-radius: 20px;
}

.sc-sidebar-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Subtle divider line */
}

.sc-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sc-service-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #242424; /* Button background */
  color: var(--tectigon-white, #ffffff);
  text-decoration: none;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.sc-service-list li a:hover {

  border: 1px solid var(--tectigon-accent, #00d68f);
  background-color: #1e2622;
}



/* --- Right Main Content --- */
.sc-main-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.sc-text-block {
  color: #a0a0a0; /* Lighter text for paragraphs */
  font-size: 16px;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}

/* --- Bottom Split Grid --- */
.sc-bottom-grid {
  
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.sc-growth-list h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
}

.sc-growth-list ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Custom Green Bullet Points */
.sc-growth-list ul li {
  position: relative;
  padding-left: 25px;
  color: #e0e0e0;
  font-size: 15px;
  line-height: 1.4;
}

.sc-growth-list ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background-color: var(--tectigon-accent, #00d68f);
  border-radius: 50%;
}

.sc-growth-image {
  width: 100%;
  height: 100%;
}

.sc-growth-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: none;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .sc-container {
    grid-template-columns: 1fr; /* Stack sidebar and content */
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .sc-main-title {
    font-size: 32px;
  }
  
  .sc-bottom-grid {
    grid-template-columns: 1fr; /* Stack list and image */
    gap: 40px;
  }
  
  .sc-growth-image img {
    height: 300px; /* Give the image a fixed height on mobile */
  }
}






/* --- newnenweneennew --- */


/* Replace the active icon CSS from the previous step with this to get the white circle/dark arrow */
.sc-service-list li.sc-active a i {
  background-color: #ffffff;
  color: #141414; /* Dark arrow color */
  border-radius: 50%;
  padding: 4px;
  font-size: 14px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Service Details Bottom Section --- */
.service-details-bottom {
  background-color: var(--tectigon-dark, #121212);
  color: var(--tectigon-white, #ffffff);

  font-family: var(--tectigon-font, 'Poppins', sans-serif);
}

/* --- Left Sidebar Form --- */
.sc-form-card {
  background-color: #1a1a1a;
  padding: 40px 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

.form-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.form-desc {
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.form-group input, 
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle underline */
  color: #a0a0a0;
  font-family: inherit;
  font-size: 14px;
  padding: 8px 0;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}

.form-group input:focus, 
.form-group textarea:focus {
  border-bottom-color: var(--tectigon-accent, #00d68f);
  color: #ffffff;
}

.submit-btn {
  background-color: var(--tectigon-accent, #00d68f);
  color: #000000;
  border: none;
  border-radius: 10px;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #00b377;
}

/* --- Deliverables Grid --- */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.deliverable-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.deliverable-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border: 1px solid var(--tectigon-accent, #00d68f);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tectigon-accent, #00d68f);
  font-size: 16px;
}

.deliverable-item span {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

/* --- How It Works Grid --- */
.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.hiw-image img {
  width: 90%;
  height: 60%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.hiw-main-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 30px;
}

.hiw-step {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.step-number {
  background-color: #1a1a1a;
  color: var(--tectigon-accent, #00d68f);
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}

.step-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.step-text p {
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.6;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .deliverables-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .how-it-works-grid {
    grid-template-columns: 1fr;
  }
  
  .hiw-image img {
    height: 300px;
  }
}

/* footer css */


/* Base wrapper styling */
.footer-wrapper {
  background-color: #111111;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  padding: 80px 40px 0 40px; /* Padding top and sides, no bottom padding to let text clip */
  box-sizing: border-box;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.footer-wrapper * {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

/* Top Section Grid */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* --- Column 1: Brand --- */
.brand-logo {

    max-width: 180px;
    background-color: #121212;
    padding: 5px 10px;
    border-radius: 8px;
   

}

.brand-tagline {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  max-width: 90%;
}

.divider {
  height: 1px;
  background-color: #333333;
  margin-bottom: 30px;
  width: 100%;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.email-block {
  grid-column: span 2;
}

.info-block h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.info-block p {
  color: #a0a0a0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* --- Column 2: Quick Links --- */
.col-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.short-divider {
  width: 50px;
}

.quick-links {
  list-style: none;
}

.quick-links li {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  color: #a0a0a0;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.quick-links a { color: #a0a0a0; text-decoration: none;}

.quick-links li:hover {
  color: #00e676;
}

.arrow-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid #00e676;
  border-radius: 50%;
  color: #00e676;
  font-size: 14px;
  margin-right: 12px;
  padding-bottom: 2px; /* Centers the HTML arrow symbol */
}

/* --- Column 3: Newsletter --- */
.newsletter-heading {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
}

.subscribe-form {
  display: flex;
  background-color: #262626;
  border-radius: 30px;
  padding: 6px;
  margin-bottom: 40px;
}

.subscribe-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 0.95rem;
  outline: none;
}

.subscribe-form input::placeholder {
  color: #888888;
}

.subscribe-form button {
  background-color: #00f2a6;
  color: #000000;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #00c98a;
}

.social-section {
  display: flex;
  align-items: center;
  gap: 30px;
}

.social-section h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background-color: #262626;
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background-color 0.3s ease;
}

.social-btn:hover {
  background-color: #00f2a6;
  color: #000000;
}

/* --- Bottom Giant Text --- */
.footer-bottom {
  font-size: 18vw; /* Scales with the viewport width */
  font-weight: 800;
  line-height: 0.75;
  letter-spacing: -2px;
  white-space: nowrap;
  transform: translateY(10%); /* Pushes the text down to clip at the bottom */
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 2px #00f2a6;
  margin-right: 15px;
}

.solid-text {
  color: #ffffff;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .newsletter-col {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .newsletter-col {
    grid-column: span 1;
  }
  .contact-info {
    grid-template-columns: 1fr;
  }
  .email-block {
    grid-column: span 1;
  }
  .social-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .footer-bottom {
    font-size: 24vw;
  }
}
