
/* ==================== CSS VARIABLES ==================== */
:root {
    --primary-color: #01796f;
    --secondary-color: #1A1A2E;
    --tertiary-color: #808080;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --border-color: #E0E0E0;
    --transition: all 0.3s ease;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}




/* Top Bar */
.topbar {
  background-color: #1f2933; /* dark neutral */
  color: #ffffff;
  font-size: 0.9rem;
}

.topbar a {
  color: #ffffff;
  text-decoration: none;
}

.topbar a:hover {
  text-decoration: underline;
}

.navbar-logo {
  height: 45px;       /* controls logo size */
  width: auto;
  max-width: 160px;   /* prevents overflow */
}


.hero-section {
  height: 65vh;
  min-height: 300px;
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.55)
    ),
    url("../images/temawe.webp");
  background-size: cover;
  background-position: center;
}

.hero-section h1 {
  color: #fff;
  font-size: 3rem;
  text-align: center;
  padding-top: 12%;
}



/* ===============ABOUT US =================== */

.about-intro-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-intro-image {
    position: relative;
}

.about-intro-image img {
    width: 100%;
    border-radius: 10px;
}

.quote-button {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.quote-button a {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.4);
    transition: var(--transition);
}

.quote-button a:hover {
    background-color: #e63939;
    transform: translateY(-3px);
}

.section-label {
    display: inline-block;
    color: var(--tertiary-color);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 14px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--tertiary-color);
}

.section-description {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.stat-card:hover {
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.stat-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50%;
}

.stat-icon img {
    width: 30px;
    height: 30px;
}

.stat-content {
    flex: 1;
}

.stat-title {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.stat-suffix {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.stat-description {
    font-size: 14px;
    color: var(--text-light);
}


/* ==================== WORKING PROCESS SECTION ==================== */
.working-process-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.section-header {
    margin-bottom: 60px;
}

.section-header.text-center {
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 68, 68, 0.1);
}

.process-image {
    margin-bottom: 30px;
}

.process-image img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.process-title {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.process-description {
    color: var(--text-light);
    line-height: 1.6;
}


/* ==================== COMPANY DETAILS SECTION ==================== */
/* ==================== COMPANY DETAILS SECTION ==================== */
.company-details-section {
    padding: 100px 0;
    background-color: var(--white);
}

.company-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.company-images {
    position: relative;
}

.company-main-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
}

.badge-text {
    display: block;
    font-size: 14px;
}

.company-secondary-img {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.company-tertiary-img {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 180px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.company-decoration {
    position: absolute;
    bottom: -50px;
    right: 50px;
    width: 150px;
    opacity: 0.3;
}

/* Tabs Container */
.tabs-container {
    margin-bottom: 40px;
}

.tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.tab-btn {
    padding: 15px 25px;
    background-color: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.tab-btn.active::after,
.tab-btn:hover::after {
    width: 100%;
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn i {
    font-size: 18px;
}

.tabs-content {
    position: relative;
    min-height: 300px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: start;
}

.tab-image img {
    width: 150px;
    border-radius: 10px;
}

.tab-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.tab-text h6 {
    color: var(--secondary-color);
    font-size: 16px;
    margin-top: 20px;
}

.company-footer {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.phone-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

/* ==================== SERVICES TABS SECTION ==================== */
/* .services-tabs-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.services-tabs-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 60px;
}

.service-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-tab-btn {
    padding: 30px;
    background-color: var(--white);
    border: 2px solid transparent;
    border-radius: 10px;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.service-tab-btn:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.service-tab-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.service-tab-btn i {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
    color: var(--primary-color);
}

.service-tab-btn.active i {
    color: var(--white);
}

.service-tab-btn h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-tab-btn p {
    font-size: 14px;
    opacity: 0.8;
}

.service-tabs-content {
    position: relative;
}

.service-tab-pane {
    display: none;
}

.service-tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.service-tab-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.service-tab-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95), transparent);
    padding: 40px;
    color: var(--white);
}

.service-overlay-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-overlay-icon img {
    width: 40px;
    height: 40px;
}

.service-overlay h5 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service-overlay p {
    margin-bottom: 20px;
    opacity: 0.9;
} */
 .services-tabs-section {
      padding: 80px 0;
      background-color: #f8f9fa;
    }

    .section-header {
      max-width: 700px;
      margin: 0 auto 50px;
    }

    .section-label {
      display: inline-block;
      font-size: 0.85rem;
      text-transform: uppercase;
      color: #05e877;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .section-title {
      font-size: 2.2rem;
      font-weight: 700;
    }

    .services-tabs-wrapper {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 30px;
    }

    /* =========================
       Tabs Navigation
    ========================= */
    .service-tabs-nav {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .service-tab-btn {
      background: #fff;
      border: 1px solid #e5e7eb;
      padding: 25px;
      border-radius: 10px;
      text-align: left;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .service-tab-btn i {
      font-size: 30px;
      color: #ff6b00;
      margin-bottom: 10px;
    }

    .service-tab-btn h4 {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .service-tab-btn p {
      font-size: 0.95rem;
      color: #6b7280;
      margin: 0;
    }

    .service-tab-btn.active,
    .service-tab-btn:hover {
      background: #01796f;
      color: #fff;
      border-color: #01796f;    
    }

    .service-tab-btn.active i,
    .service-tab-btn:hover i {
      color: #fff;
    }

    .service-tab-btn.active p,
    .service-tab-btn:hover p {
      color: #f3f4f6;
    }

    /* =========================
       Tabs Content
    ========================= */
    .service-tab-pane {
      display: none;
    }

    .service-tab-pane.active {
      display: block;
    }

    .service-tab-image {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
    }

    .service-tab-image img {
      width: 100%;
      display: block;
    }

    /* =========================
       Overlay (Desktop)
    ========================= */
    .service-overlay {
      position: absolute;
      bottom: 30px;
      left: 30px;
      right: 30px;
      background: rgba(0, 0, 0, 0.7);
      color: #fff;
      padding: 25px;
      border-radius: 12px;
    }

    .service-overlay-icon img {
      width: 40px;
      margin-bottom: 15px;
    }

/* ==================== TEAM SECTION ==================== */
.team-section {
    padding: 100px 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-name {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-name a {
    color: var(--secondary-color);
}

.team-name a:hover {
    color: var(--primary-color);
}

.team-role {
    color: var(--text-light);
    font-size: 14px;
}

/* ==================== NEWSLETTER SECTION ==================== */
.newsletter-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 36px;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 15px 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: #0f0f1e;
}

/* ==================== FOOTER ==================== */
.footer {
    position: relative;
    padding: 80px 0 30px;
    background-color: var(--secondary-color);
    color: var(--white);
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
}

.footer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-title {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.opening-hours {
    margin-bottom: 25px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
}

.copyright a {
    color: var(--primary-color);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top:hover {
    background-color: #e63939;
    transform: translateY(-5px);
}

.scroll-to-top.show {
    display: flex;
}



   /* WhatsApp Widget Styles */
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-button {
  background: #25d366;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  position: relative;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button svg {
  width: 24px;
  height: 24px;
  fill: white;
  flex-shrink: 0;
}

.button-text {
  color: white;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}

.notification-dot {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 14px;
  height: 14px;
  background: #ff3333;
  border-radius: 50%;
  border: 2px solid white;
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(255, 51, 51, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 51, 51, 0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3),
      0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }
}

.whatsapp-popup {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: scale(0);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: bottom right;
}

.whatsapp-popup.active {
  transform: scale(1);
  opacity: 1;
}

.popup-header {
  background: #25d366;
  color: white;
  padding: 16px 20px;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.popup-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  object-fit: cover;
}

.popup-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.popup-info p {
  font-size: 13px;
  opacity: 0.9;
}

.popup-body {
  padding: 20px;
}

.popup-message {
  background: #f0f0f0;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

.popup-actions {
  display: flex;
  gap: 10px;
}

.popup-btn {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.popup-btn.primary {
  background: #25d366;
  color: white;
}

.popup-btn.primary:hover {
  background: #22c55e;
  transform: translateY(-1px);
}

.popup-btn.secondary {
  background: #f3f4f6;
  color: #6b7280;
}

.popup-btn.secondary:hover {
  background: #e5e7eb;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s ease;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}



/* =======================RESPONSIVE STYLES ======================= */


/* Mobile cleanup */
@media (max-width: 576px) {
  .topbar span {
    display: block;
    margin-bottom: 4px;
  }
}


@media (max-width: 576px) {
  .navbar-logo {
    height: 38px;
  }
}


 /* About Intro */
 @media (max-width: 768px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* Working Process */
    .process-grid {
        grid-template-columns: 1fr;
    }

  

    /* Company Details */
    .company-details-grid {
        grid-template-columns: 1fr;
    }

    .company-secondary-img,
    .company-tertiary-img {
        display: none;
    }

    .tabs-nav {
        flex-direction: column;
        border-bottom: none;
    }

    .tab-btn::after {
        display: none;
    }

    .tab-btn {
        border-bottom: 2px solid var(--border-color);
    }

    .tab-btn.active {
        border-bottom-color: var(--primary-color);
    }

    .tab-content-wrapper {
        grid-template-columns: 1fr;
    }

    .company-footer {
        flex-direction: column;
        align-items: flex-start;
    }

 /* Services Tabs */

    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Newsletter */
    .newsletter-title {
        font-size: 28px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

 }

     /* Overlay BELOW image */
    /*========================= */
    @media (max-width: 991px) {
      .services-tabs-wrapper {
        grid-template-columns: 1fr;
      }

      .service-tabs-nav {
        flex-direction: row;
      }

      .service-tab-btn {
        flex: 1;
      }

      .service-overlay {
        position: static;
        margin-top: 20px;
        background: #111827;
      }
    }

    @media (max-width: 576px) {
      .service-tabs-nav {
        flex-direction: column;
      }

      .service-tab-btn p {
        display: none;
      }

      .service-overlay {
        padding: 18px;
        text-align: center;
      }
    }



