/* 
==================================
Global Styles - Optimized
==================================
*/
:root {
  --primary: #FF4F00;
  --primary-light: rgba(255, 79, 0, 0.1);
  --accent: var(--primary);
  --accent-light: var(--primary-light);
  --secondary: #22c55e;
  --text: #ffffff;
  --text-light: #cccccc;
  --body-bg: #121212;
  --card-bg: #1E1E1E;
  --shadow-color: rgba(0, 0, 0, 0.25);
  --shadow: 0 4px 20px var(--shadow-color);
  --border-color: rgba(255, 138, 60, 0.2);
  --gradient: linear-gradient(90deg, var(--primary), var(--primary));
  --gradient-hover: linear-gradient(135deg, var(--primary), var(--primary));
  --orange-accent: var(--primary);
  --orange-light: var(--primary);
  --transition: all 0.3s ease;
  --container-padding: clamp(1rem, 5vw, 2rem);
  --section-spacing: clamp(3rem, 8vw, 5rem);
  --bs-btn-close-color:⬜;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background-color: var(--body-bg);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--accent);
}

.container {
  max-width: 1400px;
  padding: 0 2rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  color: var(--text);
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 
==================================
Navbar
==================================
*/
.navbar {
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 138, 60, 0.2);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  padding: 1.25rem 0;
  transition: all 0.3s ease;
  width: 100%;
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 9999;
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--orange-accent) !important;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  padding: 0 1.5rem;
  transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--orange-accent);
}

.nav-contact-btn {
  background-color: var(--orange-accent);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  text-decoration: none;
}

.nav-contact-btn:hover {
  background-color: var(--orange-light);
  color: #fff;
  text-decoration: none;
}

.navbar-scrolled {
  padding: 0.75rem 0;
  background-color: rgba(30, 30, 40, 0.95);
}

/* 
==================================
Header Section
==================================
*/
.header-section {
  padding: 8rem 1rem 5rem;
  background-color: var(--body-bg);
  position: relative;
  color: var(--text);
}

.header-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.nav-button {
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  background: var(--card-bg);
  color: var(--text);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  display: inline-block;
  background-color: var(--card-bg);
}

.nav-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background: var(--gradient-hover);
  color: white;
}

/* 
==================================
Testimonials Section
==================================
*/
.testimonials-section {
  padding: 8rem 1rem 6rem;
  overflow: hidden;
  width: 100%;
  position: relative;
  background-color: #f8f9fa;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -5%;
  width: 40%;
  height: 70%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  z-index: -1;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 30%;
  height: 60%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
}

.testimonials-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.testimonial-slider {
  position: relative;
  width: 100%;
  height: 100%;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: #FF4F00;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
  min-height: 320px;
  display: none;
  position: relative;
  border: none;
  transition: all 0.5s ease;
  opacity: 0;
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.8s ease-in-out forwards;
  opacity: 1;
}



.quote-content {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text);
  position: relative;
  padding: 0 1rem;
  font-style: italic;
}

.quote-content::first-letter {
  font-size: 130%;
  font-weight: 600;
  color: var(--primary);
}

.client-info {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.client-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1.5rem;
  position: relative;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-image::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  z-index: -1;
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.client-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  line-height: 1.4;
}

.client-position {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.arrow-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  color: var(--primary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 1rem;
  box-shadow: var(--shadow);
}

.arrow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  background: var(--primary);
  color: white;
}

.slider-indicators {
  display: flex;
  gap: 0.7rem;
  margin: 0 1rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.indicator.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: scale(1.2);
}

/* 
==================================
Footer
==================================
*/
.footer {
  background-color: var(--card-bg);
  padding: 5rem 0 1rem;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.02);
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.footer-description {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gradient);
  color: white;
  transform: translateY(-3px);
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text);
  transition: color 0.3s ease;
}

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

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.contact-info i {
  /* width: 24px; */
  /* margin-right: 0.75rem; */
  color: var(--primary);

}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-light);
}

    /* footer-social */

.footer-social{
  display: inline-flex;
  /* justify-content: center; */
  align-items: center;
  gap:4px;
  padding: 5px;
  /* border: 1px solid red; */
  .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--orange-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  
  .social-icon:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
  }
}

/* 
==================================
Responsive Styles
==================================
*/
@media (max-width: 992px) {
  .testimonial-card {
    padding: 3rem 2rem;
  }
  
  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 768px) {
  .testimonial-slider {
    height: 600px;
  }
  
  .testimonial-card {
    padding: 2.5rem 1.5rem;
  }
  
  .quote-content {
    font-size: 1.1rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .nav-button {
    padding: 0.7rem 1.3rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .testimonial-slider {
    height: 650px;
  }
  
  .testimonial-card {
    padding: 2rem 1.25rem;
  }
  
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .nav-button {
    width: 80%;
  }
  
  .footer {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .contact-info li {
    justify-content: center;
  }
}

/* 
==================================
Contact Page Styles
==================================
*/
.contact-hero {
  background: var(--gradient);
  padding: 10rem 1rem 7rem;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/pattern.svg');
  opacity: 0.1;
}

.contact-section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.contact-form-container {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  height: 100%;
}

.contact-info-container {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  height: 100%;
}

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

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

.contact-form .form-control {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
  outline: none;
}

.contact-form .form-select {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
  outline: none;
}

.error-message {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

.success-message {
  background-color: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.5);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.5s ease;
}

.success-message i {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: 1rem;
}

.success-message h4 {
  color: #22c55e;
  margin-bottom: 0.5rem;
}

.success-message.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.contact-item {
  display: flex;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--primary);
  font-size: 1.2rem;
}

.contact-text h5 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-text p {
  margin-bottom: 0;
  color: var(--text-light);
}

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

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-icon:hover {
  background: var(--gradient);
  color: white;
  transform: translateY(-3px);
}

.map-section {
  position: relative;
  z-index: 1;
}

.map-container {
  height: 450px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Workflow Page Styles */
.workflow-hero {
  background: var(--gradient);
  padding: 10rem 1rem 7rem;
  position: relative;
  overflow: hidden;
}

.workflow-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/pattern.svg');
  opacity: 0.1;
}

@media (max-width: 992px) {
  .contact-form-container,
  .contact-info-container {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-form-container,
  .contact-info-container {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .contact-hero,
  .workflow-hero {
    padding: 8rem 1rem 5rem;
  }
  
  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

/* 
==================================
Services Page Styles
==================================
*/
.services-hero {
  background: var(--gradient);
  padding: 10rem 1rem 7rem;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/pattern.svg');
  opacity: 0.1;
}

.services-section {
  position: relative;
}

.section-heading {
  position: relative;
  padding-bottom: 1rem;
}

.section-heading h2 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.service-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.3s ease;
}

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

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: var(--primary);
}

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

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.service-features li i {
  color: var(--secondary);
  margin-right: 0.75rem;
  font-size: 0.9rem;
}

.cta-section {
  background: var(--card-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

/* 
==================================
Portfolio Page Styles
==================================
*/
.portfolio-hero {
  background: var(--gradient);
  padding: 10rem 1rem 7rem;
  position: relative;
  overflow: hidden;
}

.portfolio-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/pattern.svg');
  opacity: 0.1;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-btn {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.25rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gradient);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-grid {
  position: relative;
}

.portfolio-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  height: 100%;
}

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

.portfolio-thumb {
  position: relative;
  overflow: hidden;
  height: 240px;
}

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

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

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

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

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

.overlay-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--card-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.overlay-icon:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.portfolio-info {
  padding: 1.5rem;
  display: flex; 
  /* flex:1; */
  justify-content: space-between; 
  align-items: center;
  flex-wrap: wrap;
}

.portfolio-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.portfolio-info p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

.portfolio-modal .modal-content {
  background: var(--card-bg);
  border: none;
  border-radius: 16px;
  overflow: hidden;
}

.portfolio-modal .modal-header {
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem;
}

.portfolio-modal .modal-body {
  padding: 2rem;
}

.project-showcase {
  border-radius: 8px;
  overflow: hidden;
}

.project-details {
  padding: 1rem;
}

.project-info {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.project-info li {
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
}

.project-info li:last-child {
  border-bottom: none;
}

.project-description h5 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

/* 
==================================
About Page Styles
==================================
*/
.about-hero {
  background: var(--gradient);
  padding: 10rem 1rem 7rem;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/pattern.svg');
  opacity: 0.1;
}

.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 80px;
  height: 80px;
  border: 4px solid var(--primary);
  border-radius: 16px;
  z-index: -1;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 80px;
  height: 80px;
  border: 4px solid var(--accent);
  border-radius: 16px;
  z-index: -1;
}

.about-content h2 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.value-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
}

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

.value-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: var(--primary);
}

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.team-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

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

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  transition: all 0.5s ease;
}

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

.team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.team-card:hover .team-social {
  transform: translateY(0);
}

.team-social .social-link {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--card-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.team-social .social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.team-info p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

.stat-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text);
}

.cta-container {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

@media (max-width: 992px) {
  .service-card,
  .portfolio-card,
  .team-card,
  .value-card,
  .stat-card {
    padding: 1.5rem;
  }
  
  .service-icon,
  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .portfolio-thumb {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  
  .service-icon,
  .value-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .service-card h3,
  .value-card h3 {
    font-size: 1.3rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
  
  .cta-container {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .portfolio-filters {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-btn {
    width: 80%;
  }
  
  .portfolio-thumb {
    height: 180px;
  }
  
  .about-image::before,
  .about-image::after {
    display: none;
  }
}

/* 
==================================
Home Page Sections
==================================
*/
.featured-portfolio {
  background-color: var(--primary-light);
  position: relative;
  overflow: hidden;
}

.featured-portfolio::before {
  content: '';
  position: absolute;
  top: -5%;
  right: -5%;
  width: 40%;
  height: 70%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.featured-portfolio::after {
  content: '';
  position: absolute;
  bottom: -5%;
  left: -5%;
  width: 30%;
  height: 60%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.featured-portfolio .container {
  position: relative;
  z-index: 1;
}

/* 
==================================
Hero Sections - Common Styles
==================================
*/
.hero-section {
  padding: 10rem 1rem 6rem;
  background: var(--gradient);
  color: white;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-section p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Specific Hero Sections */
.services-hero,
.portfolio-hero,
.about-hero,
.contact-hero,
.workflow-hero {
  background: var(--gradient);
  position: relative;
  padding: 10rem 1rem 6rem;
}

.services-hero::before,
.portfolio-hero::before,
.about-hero::before,
.contact-hero::before,
.workflow-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
#cardList{
  transition: 2s all ease ;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.5;
  margin-bottom: 1.5rem;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.portfolio-item {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  box-shadow: var(--shadow);
  border-radius: 12px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

#exploreBtn{
  background: #FF4F00;
  padding: .8rem 2rem;
  border: none;
  border-radius: 10px;
  color: white;
  transition: all ease 1s;
}
#exploreBtn:hover{
  background-color: #7918d996;
  transform: translatey(-5px);
}


.center{
  display: flex;
  justify-content: center;
  align-items: center;
}
.primary-p{
  
}

.h2{
  font-size: 4rem;
  font-weight: 700;
}
.h3{
  font-size: 3.5rem;
  font-weight: 700;
}
.h5{
  font-size: 1.2rem;
  font-weight: 700;
}
@media (max-width: 575.98px) {
 

  .container{
 

    /* min-width:350px; */
 

    flex:1;
 

  }
 

  .hero-content {
 

    gap: 20px;
 

    padding: 2rem 1rem;
 

    flex:1;
 

    min-width: 80vw;
 

    .hero-title{
 

      font-size: 2rem;
 

    }
 

  }

   /* about section */
   .stat-card{
 padding: 1rem  ;
 gap: 2px;
    .stat-number{
      font-size: 1.5rem;
     }
   }
 
 /* predifiend classes */
  .h2{
    font-size: 2.5rem;
    font-weight: 700;
  }
  .h3{
    font-size: 1.6rem;
    font-weight: 700;
  }
  .h5{
    font-size: 1rem;
  font-weight: 700;
  }

 

  /* home page */
 


 


 

}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
 .hero-content{
  padding: 4rem;
 }
 /* about section */
 .stat-number{

 }


}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {

}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

}

/* comman style devices (large desktops, 1200px and up) */

@media (max-width: 1900px) and (min-width:550px) {
 .hero-content{
  padding: 4rem;
 }
}