/* takmabSite.css */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
    overflow-x: hidden;
  }

  .socials .fa-icon {
    font-size:1.3rem;
  }
  .contact-info a {
    display: grid;
    grid-template-columns: 1fr 6fr;
  }

  .contact-info a i {
    font-size:30px;
    margin: auto;
  }
  .contact-info a div p {
    font-size:larger;
    font-weight: 900;
  }

  .contact-info a div {
    margin-left: 7px;
  }


  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Top Contact Bar */
  .top-contact-bar {
    background-color: #2e7d32;
    color: white;
    padding: 0.1rem;
    font-size: 0.9rem;
    display: grid;
    grid-template-columns: 6fr 1fr;
    height: fit-content
  }

  .top-contact-bar .contact-info {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    height: fit-content;
  }

  .socials {
    align-items: center;
    margin: auto;
  }

  @media (max-width: 320px) {
  .contact-info .email {
    display: none;
  }

  .contact-info small {
    max-width: 100px;
  }


  }

  @media (max-width: 660px) {

    .contact-info a div {
      display: flex;
      align-items: center;
    }

    .contact-info a div p {
      display: none;
    }

    .contact-info a {
      text-align: center;
      display: block;
      line-height: 1;
    }

    

    .socials {
      display: none      
    }
    .top-contact-bar {
      grid-template-columns: 100%;
      padding: 5px;
    }

    .socials h4 {
      display:none;
    }

    .contact-info .fa-icon {
      font-size: 1rem;
    }

    .contact-info p {
      font-size: 18px;
    }

    .price-layer{
      line-height: 15px;
    }
  }

 

.main-nav > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
  
  
  /* Navigation */
 nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    font-size: 1.7rem;
    font-weight: bold;
    color: #2e7d32;
  }


  
  .nav-links {
    list-style: none;
    flex-direction: column;
    gap: 1rem;
  }

   .nav-links {
     list-style: none;
    flex-direction: column;
    gap: 1rem;
  }

 

   .nav-icons {
    color: green;
    font-size: 30px;
    width: 30px;
  }

  .nav-icons .close {
      display: none;
    }

  .active-tab {
    background-color: #1b5e20;
    padding: 5px;
    border-radius: 9px;
  }
  
  .nav-links li a {
    color: #2e7d32;
    transition: all 0.5s ease-in-out;
  }

  .nav-links li a:hover {
    color: white;
    background-color: green;
    padding: 8px;
    border-radius: 3px;  }

    @media (min-width: 400px) {
        .nav-cta a {
    background-color: #2e7d32;
    color: white;
    padding: 0.5rem 0.5rem;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
  }
  }

  
  .nav-cta a {
    background-color: #2e7d32;
    color: white;
    padding: 0.3rem 0.3rem;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 500;
  }
  @media (max-width: 768px) {
  .nav-links {
    list-style: none;
    flex-direction: column;
    gap: 1rem;
    background-color: white;
    position:absolute;
    right: 0px;
    top: 70px;
    padding: 20px;
    font-weight:bold;
    opacity: 0;
    width: 0;
    transition: all 1s ease-in-out;
    overflow: hidden;
  }
   .active-small-nav {
    width:fit-content;
    opacity: 1;
    transition: all 1s ease-in-out;
  }
  }
  
  @media (min-width: 768px) {
    .nav-links {
      display: flex;
      flex-direction: row;
    }

    .logo {
      font-size: 2rem;
      font-weight: bold;
      color: #2e7d32;
    }

    .nav-icons {
      display: none;
    }
    
  }
 
  .hero-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 400%;
    z-index: 0;
    overflow: hidden;
    display: flex;
    animation: slide 15s infinite linear;
    
  }

.hero-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(40, 180, 98, 0), rgba(40, 180, 98, 0.466));
  z-index: 1;
}

@keyframes slide {
  0%   { transform: translateX(0); }
  25%   { transform: translateX(0); }

  30%   { transform: translateX(-100vw); }
  45%  { transform: translateX(-100vw); }

  50%  { transform: translateX(-200vw); }
  70%  { transform: translateX(-200vw); }

  75% { transform: translateX(-300vw); }
  100% { transform: translateX(-300vw); }
}


.hero-img img {
    height: 100%;
    width: 100vw;
    object-fit: cover;
  }

  .hero {
    width: 100vw;
    position: relative;
    height: 87vh;
    background: linear-gradient(rgba(40, 180, 98, 0.425), rgba(40, 180, 98, 0.233));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
  position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    padding: 0 1.5rem;
    transform: translateY(50px);
    opacity: 0;
    animation: slideUp 1s ease-out forwards;
    width: 100%;
    z-index: 2;
}





@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-headline {
    position: relative;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    min-height: 150px;
    height: 50%;
    display: flex;
    align-items: center;
}

.headline-text {
    position: absolute;
    width: 100%;
    left: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.headline-text.active {
    opacity: 1;
    transform: translateY(0);
}

.hero h1 {
    background: linear-gradient(45deg, #e8f5e9 60%, #28b463 40%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: -1px;
}

@media (max-width: 400px) {
.hero h1 {
    font-size: 2rem;
    line-height: 2rem;
  }
.cta-buttons {
  padding: 10px;
}

.services {
  margin: auto 10px;
}

.projects {
  padding: unset;
}

}


.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn:first-child {
    background: #28b463;
    color: white;
    border: 2px solid #28b463;
}

.cta-btn:last-child {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .hero-headline {
        min-height: 120px;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        max-width: 300px;
        margin: 0 auto;
    }
}


.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 1rem;
  overflow: hidden;
}

.trust-bar div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-weight: bold;
  background-color: #f5f5f5;
  height: 150px;
  width: 100%;
  text-align: center;
  border-radius: 7px;
  margin: 5px;
  box-shadow: 0px 2px 4px 2px rgba(0, 128, 0, 0.199);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.trust-bar div.active {
  opacity: 1;
  transform: translateY(0);
}

.trust-bar p {
  line-height: 0.5;
}

.trust-bar div p span {
  font-size: 30px;
  display: block;
  margin-bottom: 0.5rem;
}

@media (max-width: 942px)and (min-width: 570px)  {
  .trust-bar {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      padding: 4rem 2rem;
  }
}

@media (min-width: 942px) {
  .trust-bar {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      padding: 4rem 2rem;
  }
  
  .trust-bar div {
      width: 100%;
      height: 180px;
      transform: translateY(80px);
  }

  /* Sequential animation delays for desktop */
  .trust-bar div:nth-child(1) { transition-delay: 0.2s; }
  .trust-bar div:nth-child(2) { transition-delay: 0.4s; }
  .trust-bar div:nth-child(3) { transition-delay: 0.6s; }
  .trust-bar div:nth-child(4) { transition-delay: 0.8s; }
}

@media (max-width: 599px) {
  .trust-bar div {
      width:100%;
  }
}


About_us Sectuion
.about-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
}

.about-image {
  display:flex;
  flex: 1;
  width: auto;
  max-width: 550px;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0px 0px 4px 6px rgba(0, 0, 0, 0.238)
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.about-text {
  flex: 1;
  max-width: 600px;
  text-align: center;
}

.about-text h2 {
  color: #2e7d32;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 400;
 

}


.text-link {
  display: inline-block;
  padding: 12px 24px;
  background-color: #2e7d32;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.text-link:hover {
  background-color: #1b5e20;
  color: #fff;
}

  
  
/* Responsive layout */
@media (min-width: 768px) {
  .about-us {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    width: 90%;
  }

  .about-text {
    text-align: left;
    padding-left: 2rem;
  }
}


/* Add these new styles */
.about-image,
.about-text {
  margin: auto;
  opacity: 0;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .about-image {
    transform: translateX(50%);
    opacity: 0;
  }
  
  .about-text {
    opacity: 0;
    transform: translateX(-50%);
  }
  
  .about-us.active .about-image,
  .about-us.active .about-text {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 767px) {
  .about-image {
    transform: translateY(30%);
  }
  
  .about-text {
    transform: translateY(-30%);
  }
  
  .about-us.active .about-image,
  .about-us.active .about-text {
    opacity: 1;
    transform: translateY(0);
    width: 95%;
  }
}

/* Add transition delays */
.about-image {
  transition-delay: 0.6s;
}

.about-text {
  transition-delay: 0.3s;
}


/* .trust_us {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  z-index: -1;
  background:url('images/IMG-20250516-WA0027.jpg') center/cover;

}

.background-plan {
   position: relative;
   margin-top: 50px;
   padding-bottom: 6rem;
} */





  
  /* Services Section */
  .services {
    padding: 2rem 1rem;
    background-color: #fff;
    text-align: center;
    margin: auto;
  }
  
  .services h2 {
    color: #2e7d32;
    margin-bottom: 1rem;
    font-size: 2em;
  }
  
  .services-grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;

    gap: 1rem;
  }

  .services-grid li i {
    display: flex;
    align-items: center;
  }

 

  .services-grid li p {
    display: flex;
    align-items: center;
    text-align: left;
    margin-left:20px;
    font-size: 1rem;
    font-weight: bolder;
  }
  
  .services-grid li {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: calc(33.33% - 1rem );
    margin-bottom: 30px;
    border-top: 5px solid rgba(222, 234, 222, 0.239);
    background: #f4f4f4;
    padding: 1rem;
    border-radius: 5px;
    list-style: none;
    display: grid;
    grid-template-columns: 50px 1fr ;
    height: 150px;
    transition: all 1s ease;
    width: 300px;
    opacity: 0;
    transform: translateY(-50%);
  }

  .services-grid li.active {
    opacity: 1;
    transform: translateY(0);
  }

  .services-grid li:hover {
    border-top: 5px solid green;
    box-shadow:0 4px 8px rgba(0,3,0,0.05);
  }

  .services-grid .fas,.services-icon  {
    font-size: 3rem;
    color: #2e7d32;
  }
  
  @media (min-width: 400px) {
    .services-grid li {
        flex-basis: calc(50% - 1rem );
    }
}
  @media (max-width: 590px) {
        .services-grid li {
            flex-basis: 100%;
            width: 100%;
            margin-bottom: 0px;
        }


  }
  
  @media (min-width: 992px) {
    .services-grid li {
        flex-basis: calc(33.33% - 1rem );
    }
  }





  
  
  /* CTA Highlight */
  .cta-highlight {
    background-color: #4caf50;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
  }

  .cta-highlight {
    background-color: #2e7d32; /* Green background */
    color: white;
    text-align: center;
    padding: 3rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .cta-container {
    max-width: 800px;
    margin: auto;
    padding: 0 1rem;
  }
  
  .cta-message {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
  }
  
  .cta-btn {
    background-color: white;
    color: #2e7d32;
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  .cta-btn:hover {
    background-color: #256429;
    color: white;
  }
  
/* Responsive tweaks */
@media (max-width: 600px) {
  .cta-message {
    font-size: 1.2rem;
  }

  .cta-btn {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
  }
}
  

/* Projects */
.projects {
  padding: 3rem 1rem;
  background-color: #f7f7f7;
  text-align: center;
}

.projects h2 {
  font-size: 2rem;
  color: #2e7d32;
  margin-bottom: 2rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.project-card {
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateX(-30%);
  transition: all 0.8s ease;
  display: flex;
  justify-content: center;
}

.project-notes {
  width: 0;
  position: absolute;
  top:0;
  bottom: 0;
  height: 100%;
  color: white;
  background-color: rgba(0, 0, 0, 0.39);
  display: flex;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: all 0.5s ease;
}
.project-card:hover {
  .project-notes{
  width: 100%;
  opacity: 1;
}
}


.project-notes p {
  background-color: rgba(0, 0, 0, 0.171);
  display: flex;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.project-card.active {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.8s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Title Tab Styling */
.project-title-tab {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.95);
  color: #2e7d32;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}


.project-title-tab:hover {
  background-color: #2e7d32;
  color: #fff;
}



/* See More Button */
.see-more {
  display: inline-block;
  margin-top: 2rem;
  padding: 12px 24px;
  background-color: #2e7d32;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.see-more:hover {
  background-color: #1b5e20;
}



/* Team Section */
.our-team {
  padding: 2rem 1rem;
  text-align: center;
}

.team-grid {
  display: flex;
  justify-content: space-around;
  scroll-snap-align: start;
  scroll-behavior: smooth;
  gap: 5rem;
  overflow-x: auto;
  min-width: 100%;
  margin: 1rem;
  scrollbar-width: none;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

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

/* Why Choose Us */

:root {
--primary-green: #2e7d32;
--accent-green: #81c784;
--dark-green: #1b5e20;
--highlight-green: #c8e6c9;
}

/* Base Styles */
.why-choose-us {
padding: 4rem 1rem;
background: linear-gradient(45deg, #f8fff8 0%, #ffffff 100%);
}

.wc-container {
max-width: 1200px;
margin: 0 auto;
}

/* Title Styling */
.section-title {
  color: var(--dark-text);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
  position: relative;
  h2 {
    font-size: 2rem;
  }
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-green);
  margin: 1rem auto;
  border-radius: 2px;
}

.section-subtitle {
  color: var(--primary-green);
  text-align: center;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 3rem;
}

/* Grid Layout */
.wc-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}

/* Card Design */
.wc-card {
background: white;
border-radius: 15px;
padding: 2rem;
box-shadow: 0 8px 30px rgba(46,125,50,0.08);
transition: transform 0.3s ease;
border: 1px solid #e0f2e1;
}

.wc-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 40px rgba(46,125,50,0.12);
}

/* Icon Design */
.wc-icon {
  padding-left: 5px;
width: 80px;
height: 80px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
}

.wc-icon img {
width: 40px;
height: 40px;
}

.years-badge {
font-size: 2rem;
font-weight: 700;
color: var(--primary-green);
}

/* Content Styling */
.why-choose-us {
color: var(--dark-green);
font-size: 1.4rem;
text-align: center;
margin-bottom: 1rem;
}

.why-choose-us p {
color: #616161;
text-align: center;
line-height: 1.6;
}

/* Special Components */
.expertise-list {
list-style: none;
padding: 0;
text-align: center;
}

.expertise-list li {
position: relative;
padding-left: 1.5rem;
margin: 0.5rem 0;
}

.expertise-list li::before {
content: '✓';
color: var(--accent-green);
position: absolute;
left: 0;
}

.price-features {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
justify-content: center;
}

.feature-pill {
background: var(--highlight-green);
color: var(--dark-green);
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.9rem;
}

.sustainability-stats {
display: flex;
justify-content: center;
gap: 2rem;
margin-top: 1.5rem;
}

.stat {
text-align: center;
}

.stat-number {
font-size: 1.8rem;
font-weight: 700;
color: var(--primary-green);
}

.stat-label {
font-size: 0.9rem;
color: #616161;
}

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

.sustainability-stats {
  flex-direction: column;
  gap: 1rem;
}
}

:root {
  --primary-green: #2e7d32;
  --deep-green: #1b5e20;
  --accent-green: #81c784;
  --trust-green: #c8e6c9;
}

/* Base Styling */
.why-choose-takmab {
  padding: 4rem 1rem;
  background: linear-gradient(45deg, #f8fff8 0%, #ffffff 100%);
}

.wct-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styling */
.wct-header {
  text-align: center;
  margin-bottom: 3rem;
}

.wct-header h2 {
  color: var(--deep-green);
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
}

.wct-subtitle {
  color: var(--primary-green);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Grid Layout */
.wct-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Card Design */
.wct-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(46,125,50,0.08);
  position: relative;
  overflow: hidden;
}

/* Timeline Card */
.timeline-visual {
  height: 120px;
  position: relative;
  margin-bottom: 1.5rem;
}

.timeline-bar {
  height: 4px;
  background: var(--trust-green);
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  transform: translateY(-50%);
}

.milestone-dot {
  width: 24px;
  height: 24px;
  background: var(--primary-green);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.milestone-year {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

/* Team Expertise */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.expertise-item {
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  background: var(--trust-green);
}

/* Price Visualization */
.price-visual {
  height: 120px;
  position: relative;
  margin: 2rem 0;
}

.price-layer {
  position: absolute;
  width: 80%;
  left: 10%;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 500;
}

.base-price {
  background: var(--primary-green);
  bottom: 0;
}

.labor-price {
  background: var(--accent-green);
  bottom: 45px;
}

.profit-layer {
  background: var(--deep-green);
  bottom: 90px;
}

/* Trust Footer */
.wct-trust-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 2rem;
  background: var(--trust-green);
  border-radius: 20px;
}

.trust-item {
  text-align: center;
  padding: 1rem;
}

/* Interactive Elements */
.pulse-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.card-ribbon {
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--primary-green);
  color: white;
  padding: 0.5rem 2rem;
  transform: rotate(45deg);
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .wct-header h2 {
    font-size: 2rem;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
  }
}


  
:root {
  --testimonial-green: #2e7d32;
  --dark-green: #1b5e20;
  --accent-green: #81c784;
  --text-dark: #333;
}

/* Base Styling */
.testimonials {
  padding: 4rem 1rem;
  background: linear-gradient(45deg, #f8fff8 0%, #ffffff 100%);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Typography */
.testimonials-heading {
  color: var(--dark-green);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.testimonials-subhead {
  color: var(--testimonial-green);
  text-align: center;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 3rem;
}

/* Testimonial Cards */
.testimonial-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 2rem;
  scrollbar-width:none;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(46,125,50,0.08);
  scroll-snap-align: start;
  min-width: 85%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

.client-profile {
  text-align: center;
  border-right: 2px solid var(--accent-green);
  padding-right: 2rem;
}

.client-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--accent-green);
}

.client-name {
  color: var(--dark-green);
  margin-bottom: 0.25rem;
}

.client-role {
  color: #666;
  font-size: 0.9rem;
}

.client-rating {
  color: #ffb300;
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

/* Testimonial Content */
.testimonial-content {
  position: relative;
  padding-left: 2rem;
}

.quote-icon {
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  font-size: 6rem;
  color: var(--accent-green);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-text {
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
}

.project-details {
  display: flex;
  gap: 1rem;
}

.detail-pill {
  background: var(--accent-green);
  color: var(--dark-green);
  padding: 0.5rem 0.9rem;
  border-radius: 25px;
  font-size: 0.5rem;
  font-weight: 600;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.control-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--testimonial-green);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: var(--testimonial-green);
}

.control-arrow {
  width: 20px;
  height: 20px;
  fill: var(--testimonial-green);
}

.control-btn:hover .control-arrow {
  fill: white;
}

.dot-indicators {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
}

.dot.active {
  background: var(--testimonial-green);
}

/* Responsive Design */
@media (max-width: 992px) {
  .testimonial-card {
    grid-template-columns: 1fr;
    min-width: 90%;
  }

  .client-profile {
    border-right: none;
    border-bottom: 2px solid var(--accent-green);
    padding-right: 0;
    padding-bottom: 2rem;
  }

  .testimonial-content {
    padding-left: 0;
  }

  .quote-icon {
    left: -0.5rem;
    top: -2rem;
  }
}

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

  .testimonial-card {
    min-width: 100%;
  }

  .testimonial-text {
    font-size: 1rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}
  
  /* Free Consultation */
  .free-consult {
    background: #2e7d32;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
  }
  
  /* Contact Section */
  .contact {
    padding: 2rem 1rem;
  }
  
  .contact form {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .contact-details {
    margin-top: 1.5rem;
    text-align: center;
  }
  
  /* Footer */
  footer {
    background: #1b1b1b;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .footer-columns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  @media (min-width: 768px) {
    .footer-columns {
      flex-direction: row;
      justify-content: space-between;
    }
  }
  
  .footer-bottom {
    margin-top: 1.5rem;
    font-size: 0.85rem;
  }


/* Contact Form Styles */
.contact-form-section {
  padding: 4rem 2rem;
  background: #f8f9fa;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  height: fit-content;
}
.contact-form-section > div {
  flex-basis: 45%;
  transform: translateY(100%);
  opacity: 0;
  transition: all 1s ease-in-out;
}

.contact-form-section >div.active {
  opacity: 1;
  transform: translate(0);
}

.contact-form-section .on_call img {
  width: auto;
  height: 100%;
  border-radius: 15px;
}

.contact-form-section .on_call {
  object-fit: cover;
  border-radius: 50px;
  height: 400px;
  display:flex;
  justify-content: center;
  align-items: center
  
}

.takmab-contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  height: 100%;
}

.form-group {
  position: relative;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: #38a169;
  box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.full-width {
  grid-column: 1 / -1;
}

.submit-btn {
  background: #38a169;
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 auto;
}

.submit-btn:hover {
  background: #2f8555;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Loading Spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  opacity: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form States */
.takmab-contact-form.loading .spinner {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-form-section {
    padding: 2rem 1rem;
  }

  .takmab-contact-form {
    padding: 1.5rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .submit-btn {
    width: 100%;
    justify-content: center;
  }
  .contact-form-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .contact-form-section  div {
    flex-basis: 100%;
    width: 100%;
  }


  .contact-form-section .on_call img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    max-width: 400px;
    max-height: 100%;
  }
  .contact-form-section .on_call {
    display: flex;
    align-items: center;
  }
  
}

@media (max-width: 480px) {
  .form-input, .form-textarea {
    font-size: 0.9rem;
  }
  
  .submit-btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
  
}

.whatsapp-icon-wrapper {
  position: fixed;
  right: 3rem;
  bottom: 50px;
  background-color: white;
  height: fit-content;
  height: 30px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  box-shadow: 0 0 7px 2px rgb(68, 68, 68);
  z-index: 9999;
} 

.whatsapp-icon {
  font-size: 50px;
  color: rgb(4, 190, 4);
  
}

/* * {
  border: 1px solid red;
} */
  
 


:root {
    --primary-color: #4CAF50; /* Green */
    --dark-color: #333;
    --text-color: #666;
    --light-bg: #f9f9f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

footer .footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .footer-links a:hover {
    color: var(--primary-color);
}

footer .contact-info p {
    margin-bottom: 15px;
    color: #cccccc;
    display: flex;
    align-items: center;
}

footer .contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
}

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

footer .social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #222;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: #cccccc;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    footer .social-links {
        justify-content: center;
    }
    
    footer .contact-info p {
        justify-content: center;
        font-size: 13px;
    }

}

  