
.web-dev-service-card h3,
.web-dev-service-card p,
.web-dev-feature-card h3,
.web-dev-feature-card p,
.web-dev-feature-list li,
.web-dev-tech-card h3,
.web-dev-tech-card ul li,
.web-dev-tech-card .web-dev-tech-details li,
.cloud-platform-card h3,
.cloud-platform-card p,
.cloud-platform-card .platform-features span,
.cloud-platform-card .certification-badge span,
.ai-industry-card h3,
.ai-industry-card p,
.ai-industry-card .industry-features span,
.ai-industry-card .ai-badge,
.security-feature span,
.cost-feature span,
.impact-feature span {
  color: #14201c !important;
}
.cloud-platform-card p,
.cloud-platform-card h3,
.cloud-platform-card .platform-features span,
.cloud-platform-card .certification-badge span {
  color: #14201c !important;
}
.web-dev-tech-list li, .web-dev-tech-details li {
  color: #14201c;
  font-weight: 500;
  margin-bottom: 0.4em;
  font-size: 1.05em;
  letter-spacing: 0.01em;
}
.web-dev-tech-list li span, .web-dev-tech-details li span {
  color: #14201c;
}
/**
* Template Name: Binary Bit Technologies
* Author: Binary Bit Technologies
* License: https://binarybittech.com/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Plus Jakarta Sans", sans-serif;
  --nav-font: "Inter", sans-serif;
}

/* Global Colors */
:root { 
  --background-color: #ffffff;
  --default-color: #14201c;
  --heading-color: #0a3223;
  --accent-color: #12a16b;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #ffffff;
  --nav-hover-color: #12a16b;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #14201c;
  --nav-dropdown-hover-color: #12a16b;
}

/* Color Presets */
.light-background {
  --background-color: #f4f9f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000704;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.6;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

/*logo*/
.logo-img {
  height: 60px;
  margin-right: 10px;
}

.logo-text {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--heading-font);
  margin: 0;
  white-space: nowrap;
  font-weight: 400px;
}

.sitename {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.logo {
  text-decoration: none;
}

/* Navigation Menu */
/* Navbar Container */
.navbar {
  background: #000;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo img {
  height: 80px;
  border-radius: 50px 50px 50px;
}

.logo .highlight-white{
  color: white;
}

/* Nav Links */
.navmenu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.navmenu ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navmenu ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.navmenu ul li a:hover {
  color: #00c853;  /* Changed to green */
}

.navmenu ul li a.active {
  color: #00c853;
}

/* Dropdown Styles */
.navmenu ul li.dropdown {
  position: relative;
}

.navmenu ul li .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.navmenu ul li .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--nav-dropdown-background-color, #fff);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 10px 0;
  z-index: 100;
}

.navmenu ul li.dropdown:hover .dropdown-menu,
.navmenu ul li.dropdown:focus-within .dropdown-menu {
  display: block;
}

.navmenu ul li .dropdown-menu li {
  width: 100%;
}

.navmenu ul li .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--nav-dropdown-color, #14201c);
  background: none;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.navmenu ul li .dropdown-menu a:hover {
  background: #00c853;
  color: #fff;
}

/* Contact Button */
.btn-contact {
  background: #00c853;
  color: #000;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 20px;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.btn-contact:hover {
  background: #00c853;
  color: #fff;
}

/* Improve button hover/focus states for accessibility and consistency */
.btn-gold:hover, .btn-contact:hover {
  background: #00c853;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,200,83,0.15);
}

/* Improve color contrast for text on dark backgrounds */
.dark-background, .navbar, .hero {
  color: #fff !important;
}

/* Add focus outline for accessibility */
.btn-gold:focus, .btn-contact:focus {
  outline: 2px solid #00c853;
  outline-offset: 2px;
}

/* Make images responsive and lazy load */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Add transition for all buttons */
.btn-gold, .btn-contact {
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #000;
  z-index: 1000;
  transition: all 0.5s ease;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav ul li {
  margin: 15px 0;
  width: 100%;
}

.mobile-nav ul li a {
  display: block;
  padding: 10px 0;
  font-size: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.mobile-nav ul li a:hover {
  color: #00c853;
}

/* Mobile Dropdown Styles */
.mobile-nav ul li.dropdown {
  position: relative;
}

.mobile-nav ul li .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.mobile-nav ul li .dropdown-menu {
  display: none;
  position: static;
  background: #222;
  border-radius: 8px;
  margin-top: 5px;
  padding: 0;
  box-shadow: none;
}

.mobile-nav ul li.dropdown:hover .dropdown-menu,
.mobile-nav ul li.dropdown:focus-within .dropdown-menu {
  display: block;
}

.mobile-nav ul li .dropdown-menu li {
  width: 100%;
}

.mobile-nav ul li .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  background: none;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s, color 0.2s;
}

.mobile-nav ul li .dropdown-menu a:hover {
  background: #00c853;
  color: #fff;
}

.mobile-nav .btn-contact {
  background: #00c853;
  color: #000;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  border: none;
  text-align: center;
}

/* Mobile Nav Toggle and Close Buttons */
.mobile-nav-toggle {
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  display: none;
  background: transparent;
  border: none;
  padding: 5px;
  z-index: 1001;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 1002;
  display: block !important;
}

.mobile-nav-close ~ .mobile-nav-close {
  display: none !important;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Navigation Styles */
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  
  /* Hide desktop nav on mobile */
  .navmenu {
    display: none;
  }
  
  /* Show mobile nav when active */
  .mobile-nav.active {
    display: block;
  }
}

@media (max-width: 576px) {
  .mobile-nav {
    width: 85%;
  }
}

/*--------------------------------------------------------------
# Reduced Button Sizes
--------------------------------------------------------------*/
.btn-gold, .btn-contact, .btn-outline, .cta .btn, .php-email-form button[type="submit"] {
  padding: 10px 24px !important;
  font-size: 14px !important;
}

.hero .btn-gold, .hero .btn-outline {
  padding: 10px 24px !important;
  font-size: 14px !important;
}

.service-card .btn-cta {
  font-size: 14px !important;
}

.web-dev-contact-form button[type="submit"] {
  padding: 10px 24px !important;
  font-size: 14px !important;
}

/*--------------------------------------------------------------
# Footer Spacing for Services Pages
--------------------------------------------------------------*/
.web-development-page .web-dev-section:last-child,
.services-page .service-detail:last-child {
  padding-bottom: 100px !important;
}

.main-content {
  margin-bottom: 60px;
}

.services-page, .web-development-page {
  padding-bottom: 40px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  background: #000;
  color: #fff;
  padding: 100px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: #00c853;
}

.hero .highlight-white {
  color: white;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #ccc;
}

/* Hero Buttons */
.btn-gold {
  background: #00c853;
  color: #000;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  margin-right: 10px;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  background: #00c853;
  color: #fff;
}

.btn-outline {
  border: 2px solid #fff;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  color: #fff;
  background: transparent;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

.hero-buttons {
  margin-bottom: 40px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

.hero-stats .stat h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #f0a500;
}

.hero-stats .stat p {
  margin-top: 5px;
  color: #ccc;
}

/* Responsive Hero */
@media (max-width: 992px) {
  .hero {
    text-align: center;
    padding: 80px 0 40px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .hero p {
    font-size: 18px;
    max-width: 100%;
  }
  
  .hero .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0 40px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .hero .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn-gold, .btn-outline {
    margin-right: 0;
    width: 200px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 60px 0 40px;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 70px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: 0.3s;
}

.clients .client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.clients .client-logo img {
  max-width: 80%;
  max-height: 60px;
  object-fit: contain;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding: 80px 0 60px;
  text-align: center;
}

.about h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

.about p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
}

.about p.lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 30px;
}

/* Vision & Mission Cards */
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.about-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  transition: box-shadow 0.3s ease;
}

.about-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.about-card i {
  font-size: 2rem;
  color: #00c853;
  margin-bottom: 15px;
}

/* Core Values */
.values-title {
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 700;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 30px 0 20px;
}

.value-item {
  text-align: center;
  padding: 20px;
  transition: background-color 0.3s ease;
}

.value-item:hover {
  background-color: rgba(102, 153, 153, 0.1);
  border-radius: 10px;
}

.value-item i {
  font-size: 2rem;
  color: #00c853;
  margin-bottom: 10px;
}

.value-item h4 {
  margin-bottom: 8px;
  font-weight: 700;
}

.value-item p {
  font-size: 0.95rem;
  color: #666;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 80px 0 60px;
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-title p {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  max-width: 600px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  padding: 40px 30px;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  z-index: 1;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card .service-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--accent-color);
  transform: rotateY(180deg);
}

.service-card .service-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
  color: var(--contrast-color);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-card h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.service-card h3 a:hover {
  color: var(--accent-color);
}

.service-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-card .btn-cta {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.service-card .btn-cta i {
  margin-left: 8px;
  transition: 0.3s;
}

.service-card .btn-cta:hover i {
  transform: translateX(5px);
}

.service-card .service-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, transparent 100%);
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease;
}

.service-card:hover .service-bg {
  opacity: 1;
}

/*--------------------------------------------------------------
# Solutions Section
--------------------------------------------------------------*/
.solutions {
  padding: 80px 0 60px;
}

.solution-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  height: calc(100% - 20px);
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.solution-card .solution-icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
  background: var(--accent-color);
  transform: scale(1.1);
}

.solution-card .solution-icon i {
  font-size: 36px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.solution-card:hover .solution-icon i {
  color: var(--contrast-color);
}

.solution-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.solution-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta {
  padding: 80px 0;
  text-align: center;
}

.cta h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.cta .btn {
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta .btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.cta .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 40%);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio {
  padding: 80px 0 60px;
}

.portfolio-item {
  margin-bottom: 25px;
}

.portfolio-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-wrap img {
  transition: all 0.3s ease;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.portfolio-wrap:hover img {
  transform: scale(1.1);
}

.portfolio-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, color-mix(in srgb, var(--background-color), transparent 20%) 0%, color-mix(in srgb, var(--accent-color), transparent 80%) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: all 0.3s ease;
}

.portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 5px;
}

.portfolio-info p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin-bottom: 15px;
}

.portfolio-links {
  display: flex;
  gap: 15px;
}

.portfolio-links a {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.portfolio-links a:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 80px 0 60px;
}

.info-box {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.info-box i {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: block;
}

.info-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.info-box p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.php-email-form {
  padding: 30px;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.php-email-form .form-group {
  margin-bottom: 15px;
}

.php-email-form input,
.php-email-form textarea {
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 14px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background: var(--background-color);
  color: var(--default-color);
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.php-email-form input:focus,
.php-email-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
  outline: none;
}

.php-email-form button[type="submit"] {
  background: var(--accent-color);
  border: none;
  padding: 12px 40px;
  color: var(--contrast-color);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 60px 0 30px;
  background: var(--background-color);
  color: var(--default-color);
}

.footer-top {
  padding-bottom: 30px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer-about .sitename {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  display: block;
}

.footer-about p {
  font-size: 14px;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.footer-about .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  margin-right: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

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

.footer-links h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links ul li a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-contact h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.footer-contact p {
  margin-bottom: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.copyright {
  padding-top: 30px;
  text-align: center;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.4s;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.scroll-top i {
  font-size: 24px;
}

.scroll-top:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*Tools & Technologies*/
.technologies {
  padding: 60px 0 40px;
  text-align: center;
}

.technologies h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 700;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 25px;
  justify-items: center;
  margin-top: 30px;
}

.tech-item {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 15px;
}

.tech-item img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-bottom: 10px;
}

.tech-item p {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.tech-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/
@media (max-width: 1200px) {
  .navmenu li {
    padding: 15px 10px;
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 36px;
  }
  
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0 40px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .section-title p {
    font-size: 16px;
  }
  
  .section-title {
    padding-bottom: 30px;
  }
  
  .about h2 {
    font-size: 28px;
  }
  
  .about p.lead {
    font-size: 16px;
  }
  
  .cta h2 {
    font-size: 28px;
  }
  
  .cta p {
    font-size: 16px;
  }
  
  .services, .solutions, .portfolio, .contact, .cta {
    padding: 60px 0 40px;
  }
  
  .about-cards {
    margin: 30px 0;
  }
}

@media (max-width: 576px) {
  .header .logo h1 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero .hero-stats {
    gap: 20px;
  }
  
  .hero .hero-stats .stat h2 {
    font-size: 28px;
  }
  
  .about .cta-wrapper {
    flex-direction: column;
  }
  
  .about .btn {
    width: 100%;
    text-align: center;
  }
  
  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Page Styles
--------------------------------------------------------------*/
.portfolio-details-page .page-title {
  padding: 100px 0 60px;
  text-align: center;
  background-color: #000 !important;
}

.portfolio-details-page .page-title h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
}

.project-header {
  padding: 60px 0 40px;
}

.project-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.meta-item i {
  color: var(--accent-color);
}

.meta-item a {
  color: var(--accent-color);
  text-decoration: none;
}

.meta-item a:hover {
  text-decoration: underline;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.tech-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-badges span {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.media-showcase {
  margin-bottom: 50px;
}

.portfolio-details-slider {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details-slider img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.project-content {
  padding: 40px 0;
}

.description-box {
  margin-bottom: 40px;
}

.description-box h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.description-box p.lead {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.project-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.info-card {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

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

.card-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.info-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.project-gallery {
  margin: 60px 0;
}

.project-gallery h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.key-features {
  margin: 60px 0;
}

.key-features h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.feature-item h5 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--heading-color);
}

/* Services Page Styles */
.services-page .services-hero {
  background-color: #000;
  padding: 120px 0 80px;
  text-align: center;
}

.services-page .services-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #00c853;
}

.services-page .services-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #ccc;
}

.services-page .service-detail {
  padding: 80px 0;
}

.services-page .service-detail:nth-child(even) {
  background-color: #f4f9f7;
}

.services-page .service-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.services-page .service-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-page .service-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

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

.services-page .service-text {
  flex: 1;
}

.services-page .service-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #0a3223;
}

.services-page .service-text p {
  margin-bottom: 25px;
  color: #555;
}

.services-page .service-features {
  margin: 30px 0;
}

.services-page .service-features h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #0a3223;
}

.services-page .service-features ul {
  list-style: none;
  padding: 0;
}

.services-page .service-features li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.services-page .service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00c853;
  font-weight: bold;
}

.services-page .service-cta {
  text-align: center;
  padding: 60px 0;
  background: #000;
  color: #fff;
}

.services-page .service-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00c853;
}

.services-page .service-cta p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #ccc;
}

@media (max-width: 992px) {
  .services-page .service-content {
    flex-direction: column;
  }
  
  .services-page .service-image, 
  .services-page .service-text {
    width: 100%;
  }
  
  .services-page .service-image {
    margin-bottom: 30px;
  }
  
  .portfolio-details-slider img {
    height: 300px;
  }
  
  .project-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .project-title {
    font-size: 2rem;
  }
  
  .project-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .portfolio-details-slider img {
    height: 250px;
  }
}


/*--------------------------------------------------------------
# Web Development Services Page Styles
--------------------------------------------------------------*/

.web-development-page .web-dev-hero {
  background: #000;
  color: #fff;
  padding: 150px 0 100px;
}

.web-development-page .web-dev-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.web-development-page .web-dev-hero h1 .highlight {
  color: #00c853;
}

.web-development-page .web-dev-hero p.lead {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}

.web-development-page .web-dev-section {
  padding: 80px 0;
}

/* Service Cards */
.web-dev-service-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.web-dev-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.web-dev-service-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.web-dev-service-card:hover .web-dev-service-icon {
  background: var(--accent-color);
}

.web-dev-service-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.web-dev-service-card:hover .web-dev-service-icon i {
  color: var(--contrast-color);
}

.web-dev-service-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.web-dev-service-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/* Process Steps */
.web-dev-process-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--heading-color);
}

.web-dev-process-step {
  text-align: center;
  padding: 20px;
}

.web-dev-step-number {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.web-dev-process-step:hover .web-dev-step-number {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.web-dev-process-step h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.web-dev-process-step p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

/* Feature Cards */
.web-dev-feature-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: calc(100% - 30px);
  position: relative;
  overflow: hidden;
}

.web-dev-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.web-dev-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, transparent 100%);
  opacity: 0;
  z-index: 0;
  transition: all 0.3s ease;
}

.web-dev-feature-card:hover::before {
  opacity: 1;
}

.web-dev-feature-content {
  position: relative;
  z-index: 1;
}

.web-dev-feature-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.web-dev-feature-card:hover .web-dev-feature-icon {
  background: var(--accent-color);
}

.web-dev-feature-icon i {
  font-size: 28px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.web-dev-feature-card:hover .web-dev-feature-icon i {
  color: var(--contrast-color);
}

.web-dev-feature-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.web-dev-feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
}

.web-dev-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.web-dev-feature-list li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.web-dev-feature-list li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 14px;
}

/* Technology Cards */
.web-dev-tech-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.web-dev-tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.web-dev-tech-icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.web-dev-tech-card:hover .web-dev-tech-icon {
  background: var(--accent-color);
  transform: scale(1.1);
}

.web-dev-tech-icon i {
  font-size: 36px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.web-dev-tech-card:hover .web-dev-tech-icon i {
  color: var(--contrast-color);
}

.web-dev-tech-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.web-dev-tech-list {
  display: block;
  list-style-type: disc;
  padding-left: 1.2em;
  color: #14201c;
  margin-top: 1rem;
  margin-bottom: 0;
}

.web-dev-tech-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.web-dev-tech-item i {
  color: var(--accent-color);
  font-size: 20px;
}

.web-dev-tech-item span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.web-dev-tech-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.web-dev-tech-details:last-child {
  border-bottom: none;
}

.web-dev-tech-detail span:first-child {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.web-dev-tech-detail span:last-child {
  color: var(--accent-color);
  font-weight: 600;
}

/* Pricing Packages */
.pricing-package-card {
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  text-align: left;
}

.pricing-package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Package Tabs */
.nav-tabs {
  margin-bottom: 1rem !important; /* Reduce gap between tabs and content */
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.nav-tabs .nav-link {
  padding: 12px 20px; /* Reduce padding in tab links */
  color: var(--default-color);
  border: none;
  border-bottom: 3px solid transparent;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 0;
  background: transparent;
}

.nav-tabs .nav-link:hover {
  color: var(--accent-color);
  border-bottom: 3px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  background: transparent;
}

.nav-tabs .nav-link.active {
  color: var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
  background: transparent;
  font-weight: 700;
}

.tab-content {
  margin-top: 0.5rem; /* Reduce space above tab content */
}

/* Reduce gaps in tab panes */
.tab-pane {
  padding-top: 0.5rem; /* Reduce top padding in tab content */
  padding-bottom: 0.5rem; /* Reduce bottom padding in tab content */
}

/* Reduce spacing inside tab panes for pricing packages */
.tab-pane .row {
  margin-top: 0.5rem; /* Reduce space above the row of pricing cards */
  margin-bottom: 0.5rem; /* Reduce space below the row of pricing cards */
  margin-left: -5px; /* Reduce default negative margins */
  margin-right: -5px; /* Reduce default negative margins */
}

.tab-pane .col-lg-3, .tab-pane .col-md-6 {
  padding-left: 5px; /* Reduce padding to decrease horizontal gaps */
  padding-right: 5px; /* Reduce padding to decrease horizontal gaps */
  margin-bottom: 0.5rem; /* Reduce bottom margin on pricing cards in tabs */
}

/* Ensure proper spacing when tabs are switched */
.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
  padding: 0.5rem 0; /* Minimal padding for active tab */
}

/* Reduce gap specifically after the pricing packages section */
.web-dev-cta-reduced-gap {
  margin-top: 0;
  padding-top: 2rem;
}

/* Reduce bottom spacing for the package section to minimize gap with CTA below */
.web-dev-section.web-dev-section-packages {
  padding-bottom: 2rem !important; /* Reduced from 3rem */
}

/* Alternative specific rule for packages section */
#packages.web-dev-section {
  padding-bottom: 2rem !important; /* Reduced from 3rem */
}

.pricing-package-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  text-align: center;
}

.pricing-package-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  text-align: center;
  margin: 15px 0;
}

.pricing-package-card .period {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: center;
  margin-bottom: 20px;
}

.pricing-package-card ul {
  flex-grow: 1;
  padding: 0;
  margin: 20px 0;
  list-style: none;
}

.pricing-package-card ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-package-card ul li i {
  color: var(--accent-color);
  font-size: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}

.pricing-package-card .btn {
  align-self: center;
  margin-top: auto !important;
  margin-top: 20px;
}

/* WhatsApp Button */
.btn-whatsapp {
  background-color: #25D366 !important;
  border-color: #25D366 !important;
  color: white !important;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background-color: #128C7E !important;
  border-color: #128C7E !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
  font-size: 1.4rem;
}

/* Portfolio Section */
.portfolio-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-wrap img {
  transition: all 0.5s ease;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.portfolio-wrap:hover img {
  transform: scale(1.1);
}

.portfolio-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: all 0.5s ease;
  color: white;
}

.portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio-info h4 {
  color: white;
  margin-bottom: 8px;
}

.portfolio-info p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio-links {
  display: flex;
  gap: 12px;
}

.portfolio-links a {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.portfolio-links a:hover {
  background: white;
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animation Showcase Section */
.animation-showcase,
.animation-demo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.animation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.animation-showcase:hover .animation-overlay,
.animation-demo:hover .animation-overlay {
  opacity: 1;
}

.animation-overlay a {
  color: white;
  text-align: center;
  text-decoration: none;
  background: var(--accent-color);
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.animation-overlay a:hover {
  background: #fff;
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.animation-overlay i {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.animation-sample-card {
  text-align: center;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.animation-sample-card:hover {
  transform: translateY(-8px);
}

.animation-sample-info {
  padding: 15px;
}

.animation-sample-info h5 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.animation-sample-info p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/* CTA Section */
.web-dev-cta {
  text-align: center;
}

.web-dev-contact-form {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 50px;
}

.web-dev-contact-form label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: var(--heading-color);
  text-align: left;
}

.web-dev-benefit {
  text-align: center;
  padding: 30px 20px;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.web-dev-benefit:hover {
  transform: translateY(-5px);
}

.web-dev-benefit i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.web-dev-benefit h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.web-dev-benefit p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .web-development-page .web-dev-hero {
    padding: 120px 0 80px;
  }
  
  .web-development-page .web-dev-hero h1 {
    font-size: 2.5rem;
  }
  
  .web-development-page .web-dev-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .web-development-page .web-dev-hero {
    padding: 100px 0 60px;
  }
  
  .web-development-page .web-dev-hero h1 {
    font-size: 2rem;
  }
  
  .web-development-page .web-dev-hero p.lead {
    font-size: 1rem;
  }
  
  .web-dev-contact-form {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .web-development-page .web-dev-hero h1 {
    font-size: 1.8rem;
  }
  
  .web-dev-service-card,
  .web-dev-feature-card,
  .web-dev-tech-card {
    padding: 30px 20px;
  }
}


/*--------------------------------------------------------------
# Mobile App Development Services Page Styles
--------------------------------------------------------------*/

/* Additional mobile-specific icons and styles */
.bi-android2::before {
  content: "\f3c7";
}

.bi-google-play::before {
  content: "\f3c6";
}

.bi-apple::before {
  content: "\f3c5";
}

.bi-phone-flip::before {
  content: "\f3e1";
}

.bi-palette::before {
  content: "\f3a8";
}

.bi-graph-up-arrow::before {
  content: "\f2d2";
}

/* Mobile-specific hero adjustments */
.web-development-page .web-dev-hero .hero-stats .stat h2 {
  font-size: 2.2rem;
}

/* Platform-specific styling */
.platform-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
}

.platform-ios {
  background: linear-gradient(135deg, #007AFF, #5856D6);
  color: white;
}

.platform-android {
  background: linear-gradient(135deg, #3DDC84, #34A853);
  color: white;
}

.platform-cross {
  background: linear-gradient(135deg, #61DAFB, #764ABC);
  color: white;
}

/* App store badges */
.app-store-badges {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.app-store-badge {
  height: 50px;
  transition: transform 0.3s ease;
}

.app-store-badge:hover {
  transform: scale(1.05);
}

/* Mobile-specific feature enhancements */
.mobile-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.mobile-feature-item {
  text-align: center;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.mobile-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mobile-feature-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.mobile-feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.mobile-feature-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.mobile-feature-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
  margin: 0;
}

/* Development timeline */
.dev-timeline {
  position: relative;
  max-width: 800px;
  margin: 40px auto;
}

.dev-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  width: 45%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: 60px;
}

.timeline-item:nth-child(even) {
  left: 55%;
  padding-left: 60px;
}

.timeline-marker {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  border-radius: 50%;
  top: 10px;
}

.timeline-item:nth-child(odd) .timeline-marker {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-marker {
  left: -10px;
}

.timeline-content {
  background: var(--surface-color);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.timeline-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

/* Mobile-specific responsive adjustments */
@media (max-width: 768px) {
  .dev-timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px !important;
    padding-right: 0 !important;
    left: 0 !important;
    text-align: left !important;
  }
  
  .timeline-item:nth-child(odd) .timeline-marker,
  .timeline-item:nth-child(even) .timeline-marker {
    left: 20px;
    right: auto;
  }
  
  .app-store-badges {
    flex-direction: column;
    align-items: center;
  }
}

/* App showcase section */
.app-showcase {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.app-showcase h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.app-showcase p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.showcase-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.showcase-item:hover {
  transform: translateY(-10px);
}

.showcase-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.showcase-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: white;
}

.showcase-item p {
  font-size: 1rem;
  margin-bottom: 0;
  opacity: 0.8;
}


/*--------------------------------------------------------------
# Cybersecurity Services Page Styles
--------------------------------------------------------------*/

/* Additional cybersecurity-specific icons */
.bi-shield-lock::before {
  content: "\f235";
}

.bi-database-shield::before {
  content: "\f236";
}

.bi-bug::before {
  content: "\f237";
}

.bi-person-check::before {
  content: "\f238";
}

.bi-file-earmark-check::before {
  content: "\f239";
}

.bi-cloud-check::before {
  content: "\f240";
}

.bi-shield-exclamation::before {
  content: "\f241";
}

/* Cybersecurity-specific hero adjustments */
.web-development-page .web-dev-hero .hero-stats .stat h2 {
  font-size: 2.2rem;
}

/* Security assessment section */
.security-assessment-features {
  margin: 30px 0;
}

.security-feature {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.security-feature i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.security-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.metric-card h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.metric-card p {
  margin: 0;
  opacity: 0.9;
}

/* Threat level indicators */
.threat-level {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
}

.threat-low {
  background: linear-gradient(135deg, #10B981, #059669);
  color: white;
}

.threat-medium {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: white;
}

.threat-high {
  background: linear-gradient(135deg, #EF4444, #DC2626);
  color: white;
}

.threat-critical {
  background: linear-gradient(135deg, #7C3AED, #6D28D9);
  color: white;
}

/* Security compliance badges */
.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.compliance-badge {
  background: var(--surface-color);
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  min-width: 120px;
  transition: transform 0.3s ease;
}

.compliance-badge:hover {
  transform: translateY(-5px);
}

.compliance-badge i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.compliance-badge span {
  display: block;
  font-weight: 600;
  color: var(--heading-color);
  font-size: 0.9rem;
}

/* Security service tiers */
.security-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.security-tier {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.security-tier:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.security-tier.popular {
  border: 2px solid var(--accent-color);
  transform: scale(1.05);
}

.security-tier.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.tier-header {
  margin-bottom: 30px;
}

.tier-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.tier-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.tier-period {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.tier-features li {
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tier-features li:last-child {
  border-bottom: none;
}

.tier-features li i {
  color: var(--accent-color);
}

/* Security incident timeline */
.incident-timeline {
  position: relative;
  max-width: 800px;
  margin: 40px auto;
}

.incident-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-color);
  transform: translateX(-50%);
}

.incident-item {
  position: relative;
  margin-bottom: 40px;
  width: 45%;
}

.incident-item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: 60px;
}

.incident-item:nth-child(even) {
  left: 55%;
  padding-left: 60px;
}

.incident-marker {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  border-radius: 50%;
  top: 10px;
}

.incident-item:nth-child(odd) .incident-marker {
  right: -10px;
}

.incident-item:nth-child(even) .incident-marker {
  left: -10px;
}

.incident-content {
  background: var(--surface-color);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.incident-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.incident-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.incident-time {
  font-size: 0.8rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-top: 5px;
}

/* Cybersecurity-specific responsive adjustments */
@media (max-width: 768px) {
  .incident-timeline::before {
    left: 30px;
  }
  
  .incident-item {
    width: 100%;
    padding-left: 70px !important;
    padding-right: 0 !important;
    left: 0 !important;
    text-align: left !important;
  }
  
  .incident-item:nth-child(odd) .incident-marker,
  .incident-item:nth-child(even) .incident-marker {
    left: 20px;
    right: auto;
  }
  
  .security-tier.popular {
    transform: scale(1);
  }
  
  .compliance-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .security-metrics {
    grid-template-columns: 1fr;
  }
}

/* Protection level indicators */
.protection-level {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
}

.text-white, .text-light {
  color: black !important;
}

.protection-basic {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.protection-advanced {
  background: color-mix(in srgb, #F59E0B, transparent 90%);
  color: #D97706;
}

.protection-enterprise {
  background: color-mix(in srgb, #EF4444, transparent 90%);
  color: #DC2626;
}

/* Security certification badges */
.certification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.certification-item {
  text-align: center;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.certification-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.certification-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.certification-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.certification-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.certification-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.8rem;
  margin: 0;
}

/*--------------------------------------------------------------
# Cloud Solutions Services Page Styles
--------------------------------------------------------------*/

/* Additional cloud-specific icons */
.bi-cloud-arrow-up::before {
  content: "\f2c3";
}

.bi-amazon::before {
  content: "\f2c4";
}

.bi-microsoft::before {
  content: "\f2c5";
}

.bi-google::before {
  content: "\f2c6";
}

.bi-arrow-up-right::before {
  content: "\f2c7";
}

.bi-graph-down::before {
  content: "\f2c8";
}

/* Cloud-specific hero adjustments */
.web-development-page .web-dev-hero .hero-stats .stat h2 {
  font-size: 2.2rem;
}

/* Cloud platform cards */
.cloud-platform-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.cloud-platform-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-color);
}

.platform-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.platform-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 20px 0;
}

.platform-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 4px 12px;
  border-radius:  15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.certification-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 15px;
}

/* Cost savings chart */
.cost-savings-features {
  margin: 30px 0;
}

.cost-feature {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.cost-feature i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.cost-feature span {
  font-weight: 500;
  color: var(--heading-color);
}

.cost-savings-chart {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.chart-item {
  margin-bottom: 25px;
}

.chart-label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.chart-bar {
  position: relative;
  height: 30px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 15px;
  overflow: hidden;
}

.chart-fill {
  position: absolute;
  height: 100%;
  border-radius: 15px;
  transition: width 1s ease-in-out;
}

.chart-fill.before {
  background: color-mix(in srgb, var(--default-color), transparent 40%);
  opacity: 0.6;
}

.chart-fill.after {
  background: var(--accent-color);
}

.chart-values {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  font-size: 0.9rem;
  font-weight: 600;
}

.before-value {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.after-value {
  color: var(--accent-color);
}

/* Cloud service models */
.cloud-models {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.cloud-model {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.cloud-model:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cloud-model.recommended {
  border: 2px solid var(--accent-color);
  transform: scale(1.05);
}

.cloud-model.recommended::before {
  content: 'Recommended';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.model-icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.cloud-model:hover .model-icon {
  background: var(--accent-color);
  transform: scale(1.1);
}

.model-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.cloud-model:hover .model-icon i {
  color: var(--contrast-color);
}

.cloud-model h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.cloud-model p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
}

.model-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.model-features li {
  padding: 8px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.model-features li:last-child {
  border-bottom: none;
}

.model-features li i {
  color: var(--accent-color);
}

/* Migration timeline */
.migration-timeline {
  position: relative;
  max-width: 800px;
  margin: 40px auto;
}

.migration-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-color);
  transform: translateX(-50%);
}

.migration-item {
  position: relative;
  margin-bottom: 40px;
  width: 45%;
}

.migration-item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: 60px;
}

.migration-item:nth-child(even) {
  left: 55%;
  padding-left: 60px;
}

.migration-marker {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  border-radius: 50%;
  top: 10px;
}

.migration-item:nth-child(odd) .migration-marker {
  right: -10px;
}

.migration-item:nth-child(even) .migration-marker {
  left: -10px;
}

.migration-content {
  background: var(--surface-color);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.migration-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.migration-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.migration-duration {
  font-size: 0.8rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-top: 5px;
}

/* Cloud deployment types */
.deployment-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.deployment-type {
  text-align: center;
  padding: 25px 20px;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.deployment-type:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.deployment-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.deployment-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.deployment-type h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.deployment-type p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
  margin: 0;
}

/* Cloud-specific responsive adjustments */
@media (max-width: 768px) {
  .migration-timeline::before {
    left: 30px;
  }
  
  .migration-item {
    width: 100%;
    padding-left: 70px !important;
    padding-right: 0 !important;
    left: 0 !important;
    text-align: left !important;
  }
  
  .migration-item:nth-child(odd) .migration-marker,
  .migration-item:nth-child(even) .migration-marker {
    left: 20px;
    right: auto;
  }
  
  .cloud-model.recommended {
    transform: scale(1);
  }
  
  .cloud-platform-card {
    margin-bottom: 30px;
  }
}

/* Cloud benefits indicators */
.cloud-benefit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
}

.benefit-cost {
  background: color-mix(in srgb, #10B981, transparent 90%);
  color: #059669;
}

.benefit-scalability {
  background: color-mix(in srgb, #3B82F6, transparent 90%);
  color: #1D4ED8;
}

.benefit-security {
  background: color-mix(in srgb, #EF4444, transparent 90%);
  color: #DC2626;
}

.benefit-reliability {
  background: color-mix(in srgb, #8B5CF6, transparent 90%);
  color: #7C3AED;
}

/* Cloud certification badges */
.cloud-certifications {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.cloud-certification {
  text-align: center;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.cloud-certification:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.certification-logo {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.certification-logo i {
  font-size: 24px;
  color: var(--accent-color);
}

.cloud-certification h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.cloud-certification p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.8rem;
  margin: 0;
}

/*--------------------------------------------------------------
# Artificial Intelligence Services Page Styles
--------------------------------------------------------------*/

/* Additional AI-specific icons */
.bi-cpu::before {
  content: "\f2c9";
}

.bi-robot::before {
  content: "\f2ca";
}

.bi-graph-up-arrow::before {
  content: "\f2cb";
}

.bi-bar-chart::before {
  content: "\f2cc";
}

.bi-chat-left-text::before {
  content: "\f2cd";
}

.bi-eye::before {
  content: "\f2ce";
}

.bi-lightbulb::before {
  content: "\f2cf";
}

.bi-speedometer2::before {
  content: "\f2d0";
}

.bi-arrow-repeat::before {
  content: "\f2d1";
}

.bi-heart-pulse::before {
  content: "\f2d2";
}

.bi-bank::before {
  content: "\f2d3";
}

.bi-truck::before {
  content: "\f2d4";
}

.bi-megaphone::before {
  content: "\f2d5";
}

.bi-house-gear::before {
  content: "\f2d6";
}

.bi-cash-coin::before {
  content: "\f2d7";
}

/* AI-specific hero adjustments */
.web-development-page .web-dev-hero .hero-stats .stat h2 {
  font-size: 2.2rem;
}

/* AI industry cards */
.ai-industry-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.ai-industry-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-color);
}

.industry-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.industry-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 20px 0;
}

.ai-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* AI impact metrics */
.ai-impact-features {
  margin: 30px 0;
}

.impact-feature {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.impact-feature i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.impact-feature span {
  font-weight: 500;
  color: var(--heading-color);
}

.ai-impact-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.impact-metric {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.impact-metric:hover {
  transform: translateY(-5px);
}

.impact-metric h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.impact-metric p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-size: 0.9rem;
}

/* AI model types */
.ai-models {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.ai-model {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.ai-model:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ai-model.advanced {
  border: 2px solid var(--accent-color);
  transform: scale(1.05);
}

.ai-model.advanced::before {
  content: 'Advanced';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.model-type-icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.ai-model:hover .model-type-icon {
  background: var(--accent-color);
  transform: scale(1.1);
}

.model-type-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.ai-model:hover .model-type-icon i {
  color: var(--contrast-color);
}

.ai-model h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.ai-model p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
}

.model-applications {
  list-style: none;
  padding: 0;
  margin: 0;
}

.model-applications li {
  padding: 8px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.model-applications li:last-child {
  border-bottom: none;
}

.model-applications li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 14px;
}

/* AI development pipeline */
.ai-pipeline {
  position: relative;
  max-width: 800px;
  margin: 40px auto;
}

.ai-pipeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-color);
  transform: translateX(-50%);
}

.pipeline-stage {
  position: relative;
  margin-bottom: 40px;
  width: 45%;
}

.pipeline-stage:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: 60px;
}

.pipeline-stage:nth-child(even) {
  left: 55%;
  padding-left: 60px;
}

.pipeline-marker {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  border-radius: 50%;
  top: 10px;
}

.pipeline-stage:nth-child(odd) .pipeline-marker {
  right: -10px;
}

.pipeline-stage:nth-child(even) .pipeline-marker {
  left: -10px;
}

.pipeline-content {
  background: var(--surface-color);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pipeline-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.pipeline-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.pipeline-duration {
  font-size: 0.8rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-top: 5px;
}

/* AI capability areas */
.ai-capabilities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.ai-capability {
  text-align: center;
  padding: 25px 20px;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.ai-capability:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.capability-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.capability-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.ai-capability h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.ai-capability p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
  margin: 0;
}

/* AI-specific responsive adjustments */
@media (max-width: 768px) {
  .ai-pipeline::before {
    left: 30px;
  }
  
  .pipeline-stage {
    width: 100%;
    padding-left: 70px !important;
    padding-right: 0 !important;
    left: 0 !important;
    text-align: left !important;
  }
  
  .pipeline-stage:nth-child(odd) .pipeline-marker,
  .pipeline-stage:nth-child(even) .pipeline-marker {
    left: 20px;
    right: auto;
  }
  
  .ai-model.advanced {
    transform: scale(1);
  }
  
  .ai-industry-card {
    margin-bottom: 30px;
  }
  
  .ai-impact-metrics {
    grid-template-columns: 1fr;
  }
}

/* AI technology indicators */
.ai-technology {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
}

.tech-ml {
  background: color-mix(in srgb, #10B981, transparent 90%);
  color: #059669;
}

.tech-dl {
  background: color-mix(in srgb, #3B82F6, transparent 90%);
  color: #1D4ED8;
}

.tech-nlp {
  background: color-mix(in srgb, #8B5CF6, transparent 90%);
  color: #7C3AED;
}

.tech-cv {
  background: color-mix(in srgb, #EF4444, transparent 90%);
  color: #DC2626;
}

.tech-rl {
  background: color-mix(in srgb, #F59E0B, transparent 90%);
  color: #D97706;
}

/* AI framework badges */
.ai-frameworks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.ai-framework {
  text-align: center;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.ai-framework:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.framework-logo {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.framework-logo i {
  font-size: 24px;
  color: var(--accent-color);
}

.ai-framework h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.ai-framework p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.8rem;
  margin: 0;
}

/* Neural network visualization */
.neural-network {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  margin: 40px 0;
  position: relative;
}

.network-layer {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0 20px;
}

.neuron {
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.connection {
  position: absolute;
  height: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  transform-origin: left center;
}


/* WhatsApp Chat Widget Styles */
.whatsapp-chat-widget {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 380px;
  height: 550px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  z-index: 10000;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #ddd;
  animation: slideInUp 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.whatsapp-chat-widget.active {
  display: flex;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-header {
  background: linear-gradient(135deg, #00c853, #00963f);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  position: relative;
}

.chat-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: white;
}

.chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.chat-info p {
  margin: 0;
  font-size: 12px;
  opacity: 0.9;
}

.close-chat {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.3s;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-chat:hover {
  background: rgba(255, 255, 255, 0.3);
}

.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
}

.message {
  display: flex;
  margin-bottom: 10px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.bot-message {
  justify-content: flex-start;
}

.user-message {
  justify-content: flex-end;
}

.message-content {
  max-width: 80%;
  padding: 12px 18px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.bot-message .message-content {
  background: white;
  border-bottom-left-radius: 5px;
  border: 1px solid #eee;
}

.user-message .message-content {
  background: linear-gradient(135deg, #00c853, #00963f);
  color: white;
  border-bottom-right-radius: 5px;
  border: 1px solid rgba(0, 200, 83, 0.3);
}

.message-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.message-time {
  font-size: 10px;
  color: #999;
  display: block;
  margin-top: 5px;
  text-align: right;
}

.quick-replies {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.quick-reply {
  background: white;
  border: 1px solid #d0f0e0;
  border-radius: 25px;
  padding: 12px 18px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.quick-reply:hover {
  background: #e8f8f0;
  border-color: #00c853;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.quick-reply i {
  color: #00c853;
  font-size: 16px;
}

.chat-input-container {
  padding: 20px;
  background: white;
  border-top: 1px solid #eee;
}

.typing-indicator {
  display: none;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 13px;
  color: #00c853;
  font-weight: 500;
}

.typing-indicator.active {
  display: flex;
}

.typing-dots {
  display: flex;
  gap: 4px;
}

.typing-dots span {
  width: 8px;
  height: 8px;
  background: #00c853;
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

.chat-input {
  display: flex;
  gap: 12px;
  align-items: center;
}

.chat-input input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  outline: none;
  font-size: 14px;
  transition: all 0.3s;
  background: #f8f9fa;
}

.chat-input input:focus {
  border-color: #00c853;
  box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.2);
  background: white;
}

.chat-input button {
  background: linear-gradient(135deg, #00c853, #00963f);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 200, 83, 0.3);
}

.chat-input button:hover {
  background: linear-gradient(135deg, #00963f, #007a33);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 200, 83, 0.4);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #00c853, #00963f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 6px 25px rgba(0, 200, 83, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  border: 3px solid white;
}

.whatsapp-float:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 8px 30px rgba(0, 200, 83, 0.6);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(0, 200, 83, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0); }
}

.whatsapp-icon {
  color: white;
  font-size: 32px;
  transition: transform 0.3s;
}

.whatsapp-float:hover .whatsapp-icon {
  transform: scale(1.2);
}

.whatsapp-tooltip {
  position: absolute;
  bottom: 75px;
  right: 0;
  background: rgba(0, 200, 83, 0.95);
  color: white;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.8);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .whatsapp-chat-widget {
    width: 90%;
    height: 70%;
    right: 5%;
    bottom: 10%;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-icon {
    font-size: 24px;
  }
}

/* Scrollbar Styling */
.chat-messages::-webkit-scrollbar {
  width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

