
/* navbarr */

/* --- Scoped Navbar Styles --- */

*, *::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;
    
}

.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;
}

/* Safely scoping links and lists inside the navbar only */
.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;
}

/* --- Logo --- */
.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;
}

/* --- Nav Links --- */
.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;
}

/* --- Dropdown Menu --- */
.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);
    
    /* Animation hidden state */
    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;
}

/* --- CTA Button --- */
.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);
}

/* --- Mobile Toggle --- */
.tectigon-mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--tectigon-white);
}

/* --- Mobile Responsive & Hamburger Menu --- */
@media (max-width: 992px) {
    .tectigon-btn-cta { 
        display: none; 
    }
    
    .tectigon-mobile-toggle { 
        display: block; 
    }

    .tectigon-massive-title {
        font-size: 2.5rem; /* Reduced from 4rem */
        word-wrap: break-word; /* Forces long words to break if necessary */
    }
    
    /* Hide by default, but set it up as a dropdown column */
    .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);
    }

    /* When JS adds the 'active' class, show it! */
    .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);
    }

    /* Make dropdowns push content down on mobile instead of hovering */
    .tectigon-dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: transparent;
        padding: 0 0 0 20px;
        display: none; /* Hide sub-menus by default on mobile */
        visibility: visible;
        opacity: 1;
        transform: none;
    }

    /* When we tap a dropdown on mobile */
    .tectigon-dropdown.active-mobile .tectigon-dropdown-menu {
        display: block;
    }
}




body{

    background-color:#000 ;
}
.ab-hero-section {
  background-color: #111111; /* Dark background matching the image */
  color: #ffffff;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  padding: 120px 5%; /* Generous top/bottom padding */
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* Aligns the breadcrumbs to the bottom of the title */
  box-sizing: border-box;
  width: 100%;
}

/* Left Side Content */
.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;
}

/* The hollow teal dot */
.ab-hero-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 3px solid #00e6a8; /* Teal accent */
  background-color: transparent;
}

.ab-hero-title {
 
   
    font-size: 140px;
    line-height: 1.05;
    margin: 0;
    letter-spacing: -1.5px;

}

/* Right Side Breadcrumbs */
.ab-hero-breadcrumbs {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 10px; /* Fine-tunes the bottom alignment with the text baseline */
}

.ab-breadcrumb-link {
  color: #00e6a8; /* Teal active link */
  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; /* Slightly muted white for the current page */
}


/* Responsive adjustments for mobile screens */
@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;
  }
}

/* about the founder */

/* Base wrapper styling */
.about-wrapper {
  background-color: #111111;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  padding: 80px 40px;
  box-sizing: border-box;
  max-width: 100%;
  margin: 0 auto;
}

.about-wrapper * {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

/* Section Label */
.section-label {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: transparent;
  border: 2px solid #00f2a6;
  border-radius: 50%;
  margin-right: 12px;
}

/* Intro Row */
.intro-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}

.main-heading {
  flex: 1.5;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}

.sub-text {
  flex: 1;
  color: #a0a0a0;
  font-size: 1.1rem;
  line-height: 1.6;
  padding-top: 10px;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* --- Left Column: Images Layout Updates --- */
.image-gallery {
  display: flex;
  gap: 25px;
}

.gallery-left {
  display: flex;
  flex-direction: column;
  width: 45%;
}

.gallery-right {
  width: 55%;
}

.img-short {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 40px;
}

.img-tall {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
}

/* Trust Section & Avatars (Moved below the short image) */
.trust-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.team-avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid #111111;
  object-fit: cover;
  margin-left: -15px;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #262626;
  color: #00f2a6;
  font-weight: bold;
  font-size: 1.2rem;
  cursor: pointer;
}

.trust-text {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

/* --- Right Column: Details --- */
.quote-box {
  position: relative;
  margin-bottom: 40px;
  padding-left: 20px;
}

.quote-icon {
  position: absolute;
  top: -15px;
  left: -20px;
  background-color: #00f2a6;
  color: #111111;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-family: serif;
  font-weight: bold;
  line-height: 1;
  padding-top: 5px;
}

.quote-text {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.author-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.author-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.author-title {
  color: #00f2a6;
  font-size: 0.95rem;
  font-weight: 600;
}

.btn-outline {
  display: inline-block;
  padding: 12px 24px;
  background-color: #262626;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-outline:hover {
  background-color: #333333;
}

.divider {
  height: 1px;
  background-color: #222222;
  margin-bottom: 30px;
}

/* Features List */
.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.check-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border: 2px solid #00f2a6;
  border-radius: 50%;
  color: #00f2a6;
  font-size: 0.9rem;
  margin-right: 15px;
  font-weight: bold;
}

.feature-list p {
  font-size: 1.05rem;
  font-weight: 600;
  color: #e0e0e0;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .intro-row {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .image-gallery {
    flex-direction: column;
  }
  .gallery-left, .gallery-right {
    width: 100%;
  }
  .main-heading {
    font-size: 2.5rem;
  }
  .quote-text {
    font-size: 1.8rem;
  }
  .author-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
 /* the counter */
 /* Base reset isolated to the wrapper (leaving the body tag alone) */
.custom-wrapper {
  background-color: #111111;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  padding: 80px 40px;
  box-sizing: border-box;
  max-width: 100%;
  margin: 0 auto;
}

.custom-wrapper * {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

/* Top Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 100px;
}

.stat-item {
  position: relative;
  padding-right: 30px;
}

/* Add dividers between items except the last one */
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #333333;
}

.stat-title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 30px;
  max-width: 90%;
}

.stat-number-wrap {
  display: flex;
  align-items: center;
}

.number {
  font-size: 6rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px #444444; /* Creates the hollow text effect */
  line-height: 1;
}

.accent {
  font-size: 2.5rem;
  font-weight: bold;
  color: #00e676; /* Bright green/cyan */
  margin-left: 5px;
  line-height: 1;
  -webkit-text-stroke: 0; /* Ensures the accent isn't hollow */
}

/* rating part */

/* --- Skills & Technical Expertise Section --- */
.skills-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* --- Feedback Card Styles --- */

.feedback-card {
  background: rgba(38, 38, 38, 0.4); 
  color: aliceblue; 
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1); 
  border-radius: 20px; 
  padding: 40px; 
  display: flex; 
  flex-direction: column; 
  gap: 15px; 
  max-width: 320px;
}

.stars { 
  color: #ffc107; 
  font-size: 1.4rem; 
  letter-spacing: 4px; 
}

.rating-number { 
  font-size: 5.5rem; 
  font-weight: 800; 
  line-height: 1; 
}

.feedback-text { 
  font-size: 1.2rem; 
  font-weight: 700; 
  line-height: 1.4; 
  color: #fff; 
}

/* This creates the hollow number effect */
.outline-text { 
  color: transparent; 
  -webkit-text-stroke: 2px var(--tectigon-accent); /* Make sure your accent variable is defined! */
}


.skills-heading {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 50px;
}

.skills-content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.skills-info p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.skills-info .divider {
  margin: 40px 0;
  background: #2a2a2a;
}

.skills-list {
  list-style: none;
}

.skills-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
}

.skill-icon-box {
  width: 40px;
  height: 40px;
  background: rgba(0, 214, 143, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tectigon-accent);
}

.skills-image {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  border-radius: 24px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .skills-left {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
  }
  .skills-heading {
    font-size: 3.2rem;
  }
}

@media (max-width: 768px) {
  .skills-left {
    flex-direction: column;
  }
  .skills-content-split {
    grid-template-columns: 1fr;
  }
  .skills-image {
    height: 400px;
  }
}

/* =========================================
   Work Process Section - Scoped Styles
   ========================================= */

/* Main wrapper to contain all base styles */
.work-process-section {
  background-color: #141414;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  padding: 8rem 2rem;
  box-sizing: border-box;
}

/* Reset inside the section only */
.work-process-section *,
.work-process-section *::before,
.work-process-section *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.work-process-section::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.work-process-section {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
/* Layout */
.wp-container {
  display: flex;
  max-width: 1500px;
  margin: 0 auto;
  gap: 4rem;
}

.wp-left-col { 
  flex: 1; 
  position: sticky; 
  top: 4rem; 
  height: fit-content; 
}

.wp-right-col { 
  flex: 1.2; 
  display: flex; 
  flex-direction: column; 
  gap: 4rem; 
}

/* Left Column Elements */
.wp-badge { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  font-size: 0.9rem; 
  margin-bottom: 1.5rem; 
}

.wp-dot { 
  width: 10px; 
  height: 10px; 
  border: 2px solid #00d2ff; 
  border-radius: 50%; 
}

.wp-title { 
  font-size: 3.5rem; 
  line-height: 1.15; 
  margin-bottom: 1.5rem; 
  font-weight: 700; 
  color: #ffffff;
}

.wp-desc { 
  color: #a0a0a0; 
  margin-bottom: 2.5rem; 
  font-size: 1.1rem; 
  max-width: 90%; 
}

.wp-btn {
  background-color: #2a2a2a; 
  color: white; 
  border: none;
  padding: 1rem 2rem; 
  font-size: 1rem; 
  border-radius: 8px; 
  cursor: pointer;
  font-weight: 600; 
  transition: background-color 0.2s;
}

.wp-btn:hover { 
  background-color: #3a3a3a; 
}

/* Right Column (Staggered List) Elements */
.wp-step { 
  position: relative; 
  width: 75%; 
}

.wp-step.wp-even { 
  align-self: flex-end; 
  width: 65%; /* Reduced from 75% to create more "shift" to the right */
  text-align: left; /* Keeps text aligned left within the shifted box */
}

.wp-step-number {
  position: absolute;
  top: -30px;
  left: -40px;
  font-size: 6rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  z-index: 0;
  line-height: 1;
}

.wp-step-content {
  position: relative;
  z-index: 1;
  border-left: 2px solid #006655; /* Muted teal line */
  padding-left: 1.5rem;
  margin-top: 1.5rem;
}

.wp-step-title { 
  font-size: 1.5rem; 
  margin-bottom: 0.5rem; 
  font-weight: 600; 
  color: #ffffff;
}

.wp-step-text { 
  color: #a0a0a0; 
  font-size: 1rem; 
}

/* Mobile Responsiveness */
@media (max-width: 960px) {
  .wp-container { 
    flex-direction: column; 
  }
  .wp-left-col { 
    position: relative; 
    top: 0; 
  }
  .wp-step { 
    width: 100%; 
    padding-left: 2rem;
  }
  .wp-step.wp-even { 
    align-self: flex-start; 
  }
  .wp-step-number {
    left: -10px;
  }
}


/* Scoped variables */
.cf-feedback-section {
    --cf-bg-color: #0d0d0d;
    --cf-text-main: #ffffff;
    --cf-text-muted: #8a8a8a;
    --cf-accent: #00e6a8;
    --cf-font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    /* Dull Background Image setup */
    background: linear-gradient(rgba(13, 13, 13, 0.88), rgba(13, 13, 13, 0.88)), 
    url('https://img.freepik.com/premium-photo/beautiful-world-map-with-unique-captivating-design_1209158-25772.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
     align-content: center;
    color: var(--cf-text-main);
    font-family: var(--cf-font-main);
    height: 100vh; 
    overflow-y: auto; 
    margin-top: -100px;;
    width: 100%;
   ;
}

.cf-scroll-content {
    padding: 80px 40px;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 66px auto;
}

/* Top Row Layout */
.cf-feedback-section .cf-top-row {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
}

.cf-feedback-section .cf-left-col {
    flex: 1;
    max-width: 450px;
}

.cf-feedback-section .cf-right-col {
    flex: 1;
    position: relative;
    max-width: 600px;
}

/* Left Column Styles */
.cf-feedback-section .cf-highlight-label {
    color: var(--cf-text-main);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.cf-feedback-section .cf-dot {
    width: 8px;
    height: 8px;
    background-color: var(--cf-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--cf-accent);
}

.cf-feedback-section .cf-title {
    font-size: 48px;
    line-height: 1.1;
    margin: 0 0 30px 0;
    font-weight: 700;
}

.cf-feedback-section .cf-trust-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cf-feedback-section .cf-avatar-stack {
    display: flex;
    align-items: center;
}

.cf-feedback-section .cf-avatar-stack img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--cf-bg-color);
    object-fit: cover;
}

.cf-feedback-section .cf-avatar-stack img:not(:first-child) {
    margin-left: -15px;
}

.cf-feedback-section .cf-add-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #222;
    color: var(--cf-accent);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-left: -15px;
    z-index: 10;
    border: 2px solid var(--cf-bg-color);
}

.cf-feedback-section .cf-trust-text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

/* --- TEXT SLIDER STYLES --- */
.cf-feedback-section .cf-testimonial-viewport {
    overflow: hidden; /* Hides the slides that are off-screen */
    width: 100%;
}

.cf-feedback-section .cf-testimonial-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
}

.cf-feedback-section .cf-slide {
    min-width: 100%; /* Each slide takes up the full width of the viewport */
    box-sizing: border-box;
    padding-right: 20px;
}

.cf-feedback-section .cf-quote-text {
    font-size: 22px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 40px;
    font-weight: 300;
}

.cf-feedback-section .cf-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cf-feedback-section .cf-author-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.cf-feedback-section .cf-author-details h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.cf-feedback-section .cf-author-details p {
    margin: 0;
    color: var(--cf-text-muted);
    font-size: 14px;
}

.cf-feedback-section .cf-quote-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 60px;
    color: var(--cf-accent);
    font-family: serif;
    line-height: 1;
    pointer-events: none;
}

/* --- LOGO MARQUEE SLIDER STYLES --- */
.cf-feedback-section .cf-bottom-row {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    width: 100%;
}

.cf-feedback-section .cf-logo-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.cf-feedback-section .cf-logo-track {
    display: inline-flex;
    width: max-content;
    animation: cf-scrollLogos 25s linear infinite;
}

/* Pause the logo slider when the user hovers over it */
.cf-feedback-section .cf-logo-track:hover {
    animation-play-state: paused;
}

.cf-feedback-section .cf-logo-slot {
    color: #777;
    font-size: 24px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 40px; /* Spacing between logos */
    transition: color 0.3s ease;
}

.cf-feedback-section .cf-logo-slot:hover {
    color: var(--cf-text-main);
    cursor: pointer;
}

@keyframes cf-scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Moves exactly half the track to create a seamless loop */
}

/* Responsive */
@media (max-width: 768px) {
    .cf-feedback-section .cf-top-row {
        flex-direction: column;
    }
}

/* 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: 16vw; /* 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;
  }
}

