/* ===== Navbar Styles ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  box-shadow: var(--shadow-md);
}

.navbar {
  padding: 1rem 0;
}

.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar-brand {
  flex-shrink: 0;
}

.site-logo {
  display: block;
  text-decoration: none;
}

.logo-text {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--primary-color);
  margin: 0;
  line-height: 1.2;
  transition: var(--transition);
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1;
}

.site-logo:hover .logo-text {
  color: var(--primary-light);
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar-menu {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: var(--text-dark);
  font-weight: 600;
  transition: var(--transition);
}

.nav-menu li a:hover {
  color: var(--primary-color);
}

.navbar-actions {
  display: none !important;
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  color: white;
}

.btn-call {
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-call:hover {
  background-color: var(--primary-dark);
  color: white;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger-line {
  width: 28px;
  height: 3px;
  background-color: var(--text-dark);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../assets/images/Foam_insulation_hero_image_6b23d167.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-top: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.85), rgba(30, 64, 175, 0.75));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 4rem 1rem;
}

.hero-title {
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-features {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: white;
}

.hero-feature i {
  font-size: 2rem;
}

.hero-feature span {
  font-weight: 600;
}

/* ===== Services Section ===== */
.services-section {
  padding: 5rem 0;
}

.service-card {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
  margin: -2rem -2rem 1rem -2rem;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.service-card p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* ===== Features Section ===== */
.features-section {
  padding: 5rem 0;
}

.feature-card {
  text-align: center;
  position: relative;
}

.feature-number {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(30, 58, 138, 0.1);
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-light));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 2rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* ===== Stats Section ===== */
.stats-section {
  padding: 5rem 0;
}

.stat-card {
  text-align: center;
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.125rem;
  opacity: 0.9;
}

/* ===== How We Work Section ===== */
.how-we-work-section {
  padding: 5rem 0;
}

.work-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 2rem;
}

.work-step h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* ===== Technologies Section ===== */
.technologies-section {
  padding: 5rem 0;
}

.tech-card {
  text-align: center;
}

.tech-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 2rem;
}

.tech-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.tech-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.badge {
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 5rem 0;
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

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

/* ===== Contact Form Section ===== */
.contact-form-section {
  padding: 5rem 0;
}

.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  display: none;
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  display: block;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  display: block;
}

/* ===== Footer Styles ===== */
.site-footer {
  background: var(--text-dark);
  color: white;
  padding-top: 4rem;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-widget-area h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-widget-area ul {
  list-style: none;
  padding: 0;
}

.footer-widget-area ul li {
  margin-bottom: 0.75rem;
}

.footer-widget-area ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-widget-area ul li a:hover {
  color: white;
  padding-right: 5px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-info i {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

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

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

/* ===== Floating Buttons ===== */
.floating-buttons {
  position: fixed;
  left: 2rem;
  bottom: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.floating-btn:hover {
  transform: scale(1.1);
  color: white;
}

.floating-btn-whatsapp {
  background: #25D366;
}

.floating-btn-call {
  background: var(--primary-color);
}

/* ===== Back to Top Button ===== */
.back-to-top {
  position: fixed;
  left: 2rem;
  bottom: 10rem;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  z-index: 998;
}

.back-to-top.show {
  display: flex;
}

.back-to-top:hover {
  background: #ea580c;
  transform: translateY(-3px);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .footer-widgets {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .navbar-actions {
    display: none;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    z-index: 1000;
  }

  .navbar-menu.active {
    right: 0;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .nav-menu li {
    border-bottom: 1px solid var(--border-color);
  }

  .nav-menu li a {
    display: block;
    padding: 1rem 0;
    font-size: 1.125rem;
  }

  .navbar-actions-mobile {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
  }

  .navbar-actions-mobile .btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem !important;
  }
  
  .logo-text {
    font-size: 1.25rem;
  }
  
  .logo-tagline {
    font-size: 0.65rem;
  }
  
  .grid-cols-4,
  .grid-cols-3,
  .grid-cols-2 {
    grid-template-columns: 1fr;
  }
  
  .hero-section {
    padding: 6rem 0 4rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .service-card img {
    height: 200px;
  }
  
  .floating-buttons {
    bottom: 1rem;
    left: 1rem;
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 1rem;
    left: 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .footer-widgets {
    grid-template-columns: 1fr;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .floating-buttons {
    left: 1rem;
    bottom: 1rem;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .back-to-top {
    left: 1rem;
    bottom: 8rem;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}




/* ===== Page Header ===== */
.page-header {
  position: relative;
  padding: 8rem 0 4rem;
  background-image: url('../assets/images/Hero_image_water_leak_detection_1acdedd3.png');
  background-size: cover;
  background-position: center;
  margin-top: 80px;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(30, 64, 175, 0.8));
}

.page-header .container {
  position: relative;
  z-index: 10;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb .separator {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb .current {
  color: white;
  font-weight: 600;
}

/* ===== About Page ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-text h2 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.about-text h3 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.about-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

.vision-mission {
  padding: 5rem 0;
}

.vm-card {
  text-align: center;
}

.vm-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2.5rem;
}

.our-values {
  padding: 5rem 0;
}

.value-card {
  text-align: center;
  padding: 2rem 1rem;
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 2rem;
}

/* ===== Contact Page ===== */
.contact-info-section {
  padding: 5rem 0;
}

.contact-info-card {
  text-align: center;
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 2rem;
}

.contact-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-info-card a {
  color: var(--primary-color);
  font-weight: 600;
}

.text-muted {
  color: var(--text-light);
  font-size: 0.875rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-info h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.contact-features {
  margin-top: 2rem;
}

.contact-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-feature i {
  color: var(--success-color);
  font-size: 1.25rem;
}

.form-row {
  margin-bottom: 1.5rem;
}

.required {
  color: #ef4444;
}

select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: var(--transition);
  background-color: white;
}

select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.btn-block {
  width: 100%;
}

.service-areas {
  padding: 5rem 0;
}

.area-card {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.area-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.area-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.area-card h4 {
  margin: 0;
  color: var(--text-dark);
}

.working-hours {
  padding: 4rem 0;
}

.working-hours-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}

.working-hours-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.working-hours-text h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.hours-list {
  margin-top: 1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.day {
  font-weight: 600;
}

/* ===== Services Page ===== */
.services-intro,
.projects-intro {
  padding: 3rem 0;
}

.main-services {
  padding: 3rem 0;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
  padding: 3rem 0;
}

.service-detail.reverse {
  direction: ltr;
}

.service-detail.reverse .service-detail-content {
  direction: rtl;
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service-detail h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-lead {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.service-detail h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.service-features-list i {
  color: var(--success-color);
  font-size: 1.25rem;
}

.service-detail-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

.why-services {
  padding: 5rem 0;
}

/* ===== Projects Page ===== */
.projects-grid {
  padding: 3rem 0;
}

.project-card {
  overflow: hidden;
}

.project-image {
  position: relative;
  overflow: hidden;
  height: 250px;
  margin: -2rem -2rem 1rem -2rem;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 138, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-link {
  color: white;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
}

.project-link i {
  font-size: 2rem;
}

.project-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.project-content h3 a {
  color: var(--text-dark);
  transition: var(--transition);
}

.project-content h3 a:hover {
  color: var(--primary-color);
}

.project-excerpt {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.project-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-light);
  font-size: 0.875rem;
}

.project-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination a,
.pagination span {
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.pagination a:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.pagination .current {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* ===== Responsive for New Pages ===== */
@media (max-width: 1024px) {
  .about-intro,
  .contact-form-grid,
  .service-detail {
    grid-template-columns: 1fr;
  }
  
  .service-detail.reverse {
    direction: rtl;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }
  
  .working-hours-content {
    flex-direction: column;
    text-align: center;
  }
  
  .project-image {
    height: 200px;
  }
}




/* ===== Service Image Improvements ===== */
.service-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
  margin: -2rem -2rem 1.5rem -2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.3s ease;
  transform-origin: center center;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .service-image {
    height: 250px;
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .service-image {
    height: 220px;
  }
}




/* ===== Blog Archive Page ===== */
.blog-section {
  padding: 5rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.blog-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.blog-category a {
  color: white;
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 0.875rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.blog-title a {
  color: var(--text-dark);
  transition: var(--transition);
}

.blog-title a:hover {
  color: var(--primary-color);
}

.blog-excerpt {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.no-posts {
  text-align: center;
  padding: 5rem 2rem;
}

.no-posts-icon {
  width: 100px;
  height: 100px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
  color: var(--text-light);
}

.no-posts h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.no-posts p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* ===== Single Post Page ===== */
.single-post {
  padding: 3rem 0 5rem;
}

.single-post-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  font-size: 0.875rem;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post-meta a {
  color: var(--primary-color);
  font-weight: 600;
}

.post-thumbnail {
  margin-bottom: 3rem;
  border-radius: 1rem;
  overflow: hidden;
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 3rem;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.post-content p {
  margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 2rem 0;
}

.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 3rem;
}

.nav-previous,
.nav-next {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-next {
  text-align: left;
}

.nav-label {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 600;
}

.nav-previous a,
.nav-next a {
  color: var(--text-dark);
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-previous a:hover,
.nav-next a:hover {
  color: var(--primary-color);
}

/* ===== Blog Responsive ===== */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-image {
    height: 220px;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .post-navigation {
    grid-template-columns: 1fr;
  }
  
  .nav-next {
    text-align: right;
  }
}




/* ===== Header Always Visible ===== */
.site-header {
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ===== Floating Buttons Improvements ===== */
.floating-buttons {
  bottom: 1.5rem !important;
  left: 1.5rem !important;
  gap: 0.75rem !important;
}

.floating-btn {
  width: 55px !important;
  height: 55px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.floating-btn:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
}

.floating-btn-whatsapp {
  background-color: #25D366 !important;
}

.floating-btn-call {
  background-color: #1e40af !important;
}

/* ===== Mobile Improvements ===== */
@media (max-width: 768px) {
  /* Header */
  .site-header {
    padding: 0.5rem 0;
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
  
  /* Logo */
  .logo-text {
    font-size: 1.25rem !important;
  }
  
  .logo-tagline {
    font-size: 0.65rem !important;
  }
  
  /* Floating Buttons */
  .floating-buttons {
    bottom: 1rem !important;
    left: 1rem !important;
  }
  
  .floating-btn {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.25rem !important;
  }
  
  /* Hero Section */
  .hero-section {
    padding: 8rem 0 4rem !important;
    margin-top: 0 !important;
  }
  
  .hero-title {
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
  }
  
  .hero-subtitle {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
  }
  
  .hero-buttons {
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  .hero-buttons .btn {
    width: 100% !important;
    justify-content: center !important;
  }
  
  /* Sections Spacing */
  section {
    padding: 3rem 0 !important;
  }
  
  .section-title h2 {
    font-size: 1.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .section-title p {
    font-size: 0.95rem !important;
  }
  
  /* Service Cards */
  .service-card {
    padding: 1.5rem !important;
  }
  
  .service-card h3 {
    font-size: 1.25rem !important;
  }
  
  .service-card p {
    font-size: 0.95rem !important;
  }
  
  /* Feature Cards */
  .feature-card {
    padding: 1.5rem !important;
  }
  
  .feature-number {
    font-size: 2rem !important;
  }
  
  /* Stats Section */
  .stat-number {
    font-size: 2rem !important;
  }
  
  .stat-label {
    font-size: 0.95rem !important;
  }
  
  /* Contact Form */
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 1rem !important;
    padding: 0.875rem !important;
  }
  
  /* Buttons */
  .btn {
    padding: 0.875rem 1.5rem !important;
    font-size: 1rem !important;
  }
  
  /* Footer */
  .footer-widgets {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  /* Back to Top */
  .back-to-top {
    width: 45px !important;
    height: 45px !important;
    bottom: 1rem !important;
    left: 1rem !important;
    font-size: 1.125rem !important;
  }
}

/* ===== Tablet Improvements ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .floating-btn {
    width: 52px !important;
    height: 52px !important;
  }
}

/* ===== Small Mobile (320px - 480px) ===== */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 1.5rem !important;
  }
  
  .hero-subtitle {
    font-size: 0.9rem !important;
  }
  
  .section-title h2 {
    font-size: 1.5rem !important;
  }
  
  .floating-btn {
    width: 45px !important;
    height: 45px !important;
    font-size: 1.125rem !important;
  }
  
  .btn {
    padding: 0.75rem 1.25rem !important;
    font-size: 0.95rem !important;
  }
}




/* ===== Hide Numbers from Floating Buttons ===== */
.floating-btn::before,
.floating-btn::after,
.floating-btn [aria-label]::before,
.floating-btn [aria-label]::after {
  display: none !important;
  content: none !important;
}

/* Remove any badge or notification */
.floating-buttons .badge,
.floating-buttons .notification,
.floating-btn .badge,
.floating-btn .notification {
  display: none !important;
}




/* ===== Service Card Improvements ===== */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card .service-image {
  position: relative;
}

.service-card .service-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.05) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Ensure images are centered */
.service-card img {
  display: block;
  margin: 0 auto;
}




/* ===== Testimonials Section ===== */
.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 0.25rem 0;
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-rating i {
  color: #ffc107;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 1rem;
  position: relative;
  padding-right: 2rem;
}

.testimonial-quote {
  position: absolute;
  top: -10px;
  right: 0;
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.2;
}

.testimonial-service {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--primary-light);
  color: var(--primary-color);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.testimonial-service i {
  font-size: 0.875rem;
}

/* ===== Article Page Styles ===== */
.article-header {
  padding: 3rem 0 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.breadcrumbs a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.breadcrumbs a:hover {
  opacity: 1;
}

.breadcrumbs span {
  opacity: 0.6;
}

.article-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.875rem;
  opacity: 0.9;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-content-section {
  padding: 3rem 0;
}

.article-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.article-featured-image {
  margin-bottom: 2rem;
  border-radius: 1rem;
  overflow: hidden;
}

.article-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-color);
}

.article-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: var(--primary-color);
}

.article-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
  color: var(--text-color);
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
  margin: 1.5rem 0;
  padding-right: 2rem;
}

.article-content li {
  margin-bottom: 0.75rem;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.article-tags i {
  color: var(--primary-color);
  margin-left: 0.5rem;
}

.article-tags a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary-light);
  color: var(--primary-color);
  border-radius: 2rem;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.article-tags a:hover {
  background: var(--primary-color);
  color: white;
}

.article-share {
  margin: 2rem 0;
  padding: 2rem;
  background: var(--background-color);
  border-radius: 1rem;
}

.article-share h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.share-btn.whatsapp {
  background: #25d366;
  color: white;
}

.share-btn.whatsapp:hover {
  background: #1da851;
}

.share-btn.facebook {
  background: #1877f2;
  color: white;
}

.share-btn.facebook:hover {
  background: #145dbf;
}

.share-btn.twitter {
  background: #1da1f2;
  color: white;
}

.share-btn.twitter:hover {
  background: #0d8bd9;
}

.share-btn.copy {
  background: var(--text-color);
  color: white;
}

.share-btn.copy:hover {
  background: var(--primary-color);
}

.latest-articles-section {
  padding: 5rem 0;
  background: var(--background-color);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.article-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.article-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card:hover .article-card-image img {
  transform: scale(1.1);
}

.article-card-content {
  padding: 1.5rem;
}

.article-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.article-card-date {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.article-card-category a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.article-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.4;
}

.article-card-title a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-card-title a:hover {
  color: var(--primary-color);
}

.article-card-excerpt {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* ===== Responsive for Articles ===== */
@media (max-width: 768px) {
  .article-title {
    font-size: 1.75rem;
  }
  
  .article-content {
    font-size: 1rem;
  }
  
  .article-content h2 {
    font-size: 1.5rem;
  }
  
  .article-content h3 {
    font-size: 1.25rem;
  }
  
  .share-buttons {
    flex-direction: column;
  }
  
  .share-btn {
    width: 100%;
    justify-content: center;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
  }
}


/* ===================================
   Internal Links & SEO Enhancements
   =================================== */

/* Contextual Links */
.contextual-links {
    background: #f0f7ff;
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.contextual-links p {
    margin: 0;
    color: #333;
}

.contextual-links strong {
    color: var(--primary-color);
    font-weight: 600;
}

.contextual-links a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contextual-links a:hover {
    color: var(--secondary-color);
}

/* Popular Posts Widget */
.popular-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-posts-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.popular-posts-list li:last-child {
    border-bottom: none;
}

.popular-posts-list a {
    color: #333;
    font-weight: 500;
    text-decoration: none;
    display: block;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.popular-posts-list a:hover {
    color: var(--primary-color);
}

.popular-posts-list .post-date {
    font-size: 0.85rem;
    color: #999;
}

/* Related Posts Section Enhancement */
.latest-articles-section .section-title {
    position: relative;
    padding-bottom: 1rem;
}

.latest-articles-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

/* Breadcrumbs Enhancement */
.breadcrumbs a {
    position: relative;
    transition: color 0.3s ease;
}

.breadcrumbs a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.breadcrumbs a:hover::after {
    width: 100%;
}

/* Internal Link Highlighting */
.article-content a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(41, 98, 255, 0.3);
    text-decoration-thickness: 2px;
    transition: all 0.3s ease;
}

.article-content a:hover {
    text-decoration-color: var(--primary-color);
    background: rgba(41, 98, 255, 0.05);
    padding: 0 4px;
}


/* ============================================
   Certifications Section Styles
   ============================================ */

.certifications-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}

.certifications-carousel-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.certifications-carousel {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.certification-slide {
  min-width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

.certification-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.certification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.certification-logo {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  background: #f8f9fa;
  border-radius: 50%;
  padding: 2rem;
  transition: all 0.3s ease;
}

.certification-card:hover .certification-logo {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  transform: scale(1.05);
}

.certification-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.certification-card:hover .certification-logo img {
  filter: brightness(0) invert(1);
}

.certification-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.certification-content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Carousel Controls */
.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-btn i {
  font-size: 1.25rem;
}

.carousel-prev {
  margin-right: -25px;
}

.carousel-next {
  margin-left: -25px;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.indicator:hover {
  background: var(--primary-light);
  transform: scale(1.2);
}

.indicator.active {
  background: var(--primary-color);
  width: 40px;
  border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .certifications-section {
    padding: 3rem 0;
  }

  .certification-card {
    padding: 2rem 1.5rem;
  }

  .certification-logo {
    width: 120px;
    height: 120px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .certification-content h3 {
    font-size: 1.25rem;
  }

  .certification-content p {
    font-size: 0.95rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn i {
    font-size: 1rem;
  }

  .carousel-prev {
    margin-right: -20px;
  }

  .carousel-next {
    margin-left: -20px;
  }
}

@media (max-width: 480px) {
  .certification-card {
    padding: 1.5rem 1rem;
  }

  .certification-logo {
    width: 100px;
    height: 100px;
    padding: 1rem;
  }

  .certification-content h3 {
    font-size: 1.1rem;
  }

  .certification-content p {
    font-size: 0.9rem;
  }

  .carousel-controls {
    display: none;
  }

  .carousel-indicators {
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
}

/* Animation for slide entrance */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.certification-slide {
  animation: slideIn 0.5s ease-out;
}
/* ============================================
   تحديث قسم CTA المحدد فقط
   ============================================ */

/* للقسم المحدد - تغيير ألوان النصوص والأزرار */
.cta-section .cta-content h2 {
  color: #1e3a8a !important; /* اللون الأزرق للعنوان "هل تحتاج إلى خدماتنا؟" */
}

.cta-section .cta-content p {
  color: #000000 !important; /* اللون الأسود للنص "لا تتردد في التواصل معنا..." */
}

/* زر "احصل على استشارة مجانية" */
.cta-section .btn:first-child {
  background-color: #1e3a8a !important;
  color: white !important;
  border: 2px solid #1e3a8a !important;
}

.cta-section .btn:first-child:hover {
  background-color: #1e40af !important;
  border-color: #1e40af !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* زر "اتصل الآن" */
.cta-section .btn:last-child {
  background-color: #1e3a8a !important;
  color: white !important;
  border: 2px solid #1e3a8a !important;
}

.cta-section .btn:last-child:hover {
  background-color: #1e40af !important;
  border-color: #1e40af !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* إذا كان القسم له خلفية ملونة، يمكن تغييرها للأبيض أو رمادي فاتح */
.cta-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
}

/* للتأكد من أن النص يظهر بشكل واضح */
@media (max-width: 768px) {
  .cta-section .cta-content h2 {
    font-size: 2rem !important;
  }
  
  .cta-section .cta-content p {
    font-size: 1.125rem !important;
  }
  
  .cta-section .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
