/* ========================================
   RAINBOW SHINE INFOTECH - STYLESHEET
   Organized by page sections for better maintainability
   ======================================== */

/* ====================
   GLOBAL STYLES & CSS RESET
   ==================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
  overflow-x: hidden; /* Prevent horizontal scrollbar */
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

a {
  color: #4a90e2;
  text-decoration: none;
}

.btn-call-nav {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-left: 10px;
}

.btn-call-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-call-nav .btn-icon {
  font-size: 0.8rem;
}

/* ====================
   HEADER SECTION - Top Bar with Social Media & Contact Info
   ==================== */

.site-header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 255, 255, 0.95);
}

/* Add padding to body to account for fixed header */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
  overflow-x: hidden; /* Prevent horizontal scrollbar */
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-top: 0; /* Will be set by JavaScript */
}

.header-top {
  border-bottom: 1px solid #f0f0f0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  max-width: 100%;
  margin: 0 auto;
}

/* Header Social Media Icons - Original Styling Preserved */
.header-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 80px;
}

.header-social-link {
  color: #333;
  font-size: 1.2em;
  transition: color 0.3s ease;
  padding-left: 8px;
  text-decoration: none;
}

.header-social-link:hover {
  color: #4a90e2;
}

/* Contact Information - Phone, Email, and Request a Call Button */
.contact-details {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.95em;
  padding-right: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.contact-icon {
  color: #667eea;
}

.contact-text {
  color: #333;
}

.contact-link {
  color: #4a90e2;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

/* Button Components - Primary Call-to-Action Button */
.btn {
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
  color: white;
  box-shadow: 0 4px 10px rgba(139, 69, 19, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(139, 69, 19, 0.5);
  background: linear-gradient(135deg, #a0522d 0%, #cd853f 100%);
}

.btn-primary.btn-call-nav {
  background: linear-gradient(135deg, #b7410e 0%, #d95b2d 100%);
  box-shadow: 0 4px 10px rgba(183, 65, 14, 0.3);
}

.btn-primary.btn-call-nav:hover {
  background: linear-gradient(135deg, #c94f1a 0%, #e0743d 100%);
  box-shadow: 0 6px 15px rgba(183, 65, 14, 0.4);
}

.btn-icon {
  margin-right: 8px;
}

/* ====================
   HERO SECTION - Image Slider with Welcome Messages
   ==================== */

.hero-section {
  width: 100%;
  margin-top: 0;
}

/* Image Slider Container - Full viewport height */
.slider {
  position: relative;
  width: 100%;
  height: 80vh;
  max-width: 100%;
  margin: auto;
  background-color: #000;
}

/* Individual Slides - Each with background image and text */
.slide {
  display: none;
  width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
}

/* Slide Text Overlay - Animated welcome messages */
.slide-text {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  color: white;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  text-align: center;
  animation: slideTextIn 0.6s ease;
}

@keyframes slideTextIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Fade Animation for Smooth Slide Transitions */
.fade {
  animation: fade 0.5s ease;
}

@keyframes fade {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}

/* Slider Navigation Arrows - Previous/Next controls */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s ease;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  user-select: none;
  -webkit-user-select: none;
  z-index: 10;
}

.next {
  right: 0;
}

.prev {
  left: 0;
}

.prev:hover,
.next:hover {
  background-color: rgba(102, 126, 234, 0.8);
  color: #ffd700;
}

/* Slider Navigation Dots - Slide indicators */
.dots-container {
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.3);
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 8px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #667eea;
}

.dot:hover {
  background-color: #667eea;
}

/* ====================
   NAVIGATION SECTION - Main Menu with Logo and Mega Dropdowns
   ==================== */

/* Main Navigation Bar - Purple gradient background */
.main-navigation {
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Company Logo - Rainbow Shine Infotech branding */
.brand-logo {
  margin-left: 80px;
}

.logo-link {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background-color: #fff;
  border-radius: 0;
  transition: all 0.3s ease;
  text-decoration: none;
}

.logo-link:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
}

.logo-image {
  height: 45px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* Primary Navigation Menu - Company, Services, Work, Industry, Blog, Contact */
.primary-nav {
  display: flex;
  gap: 30px;
  position: relative;
  z-index: 100;
  margin-right: 30px;
  padding: 8px 0;
}

.nav-link {
  color: #fff;
  font-weight: 500;
  padding: 12px 15px;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 8px;
  left: 50%;
  background-color: #ffd700;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #ffd700;
}

.nav-link:hover::after {
  width: 80%;
}

/* Dropdown Menu Structure - For mega menu functionality */
.nav-dropdown {
  position: relative;
  display: inline-block;
  align-items: center;
  z-index: 1000;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #764ba2;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
  z-index: 1;
  border-radius: 5px;
  top: 100%;
  left: 0;
  margin-top: 8px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

/* Mega Menu Dropdown - Large dropdown with multiple columns */
.mega-menu {
  position: absolute;
  background-color: #fff;
  width: 800px;
  max-width: 90vw;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: 30px;
  z-index: 1000;
  border-radius: 8px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  margin-top: 8px;
  display: flex;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
  border: 1px solid #e0e0e0;
}

.nav-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  display: flex;
}

.nav-dropdown:hover {
  z-index: 1001;
}

/* Mega Menu Columns - Organized content sections */
.mega-menu-column {
  flex: 1;
  min-width: 150px;
  padding: 0 20px;
  border-right: 1px solid #e0e0e0;
}

.mega-menu-column:last-child {
  border-right: none;
}

.mega-menu-title {
  color: #333;
  font-size: 0.85rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mega-menu-link {
  color: #666;
  padding: 8px 0;
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
}

.mega-menu-link:hover {
  color: #667eea;
  padding-left: 8px;
}

/* Mega Menu Promotional Section - Download report call-to-action */
.mega-menu-promo {
  flex: 1;
  min-width: 250px;
  padding: 0 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-title {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.btn-download {
  background: white;
  color: #667eea;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.promo-stats {
  font-size: 0.85rem;
  opacity: 0.9;
  margin: 0;
  font-weight: 500;
}

/* ====================
   WHY CHOOSE US SECTION - IMAGE LEFT, DESCRIPTION RIGHT
   ==================== */

.why-choose-section {
  padding: 100px 0;
  background: #f8f9fa;
  background-size: cover;
  background-position: center;
  width: 80vw;
  margin: 0 10vw;
}

.why-choose-section .section-title {
  color: #333;
  text-align: center;
  margin-bottom: 15px;
}

.why-choose-section .section-subtitle {
  color: #666;
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.why-choose-section .section-description {
  color: #777;
  text-align: left;
  font-size: 1rem;
  width: 100%;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10px;
  align-items: stretch;
}

/* New Layout Container */
.why-choose-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: stretch;
  min-height: 500px;
}

/* Left Section - Image */
.why-choose-image-section {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin-left: 2vw;
}

.section-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right Section - Description */
.why-choose-description-section {
  display: flex;
  align-items: center;
  padding: 20px 20px 20px 2vw;
}

.description-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.heading-item {
  margin-bottom: 25px;
}

.heading-item h3 {
  font-size: 2.2rem;
  font-weight: 600;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.heading-item h4 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #b7410e;
  text-align: left;
  margin-right: 0;
  width: 100%;
  display: block;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 0;
  position: relative;
  text-align: left;
}

/* Features Grid Layout */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.features-column {
  padding: 0 10px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  text-align: left;
}

.features-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #667eea;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.3;
}

/* Responsive Features Grid */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features-column {
    padding: 0;
  }
}

.feature-list li::before {
  content: none;
  position: static;
  color: #000;
  font-weight: bold;
  font-size: 1.2rem;
}

.view-more-btn {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  align-self: flex-end;
  margin-top: auto;
}

.view-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
  background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
}

/* Left Side - Image */
.why-choose-image {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main-image {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.main-image:hover {
  transform: scale(1.02);
}

/* View More Button */
.view-more-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  align-self: center;
}

.view-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
  background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
}

/* Right Side - Description */
.why-choose-description {
  padding: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.description-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.point-item {
  background: white;
  padding: 25px;
  border-radius: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #667eea;
  border-bottom: 1px solid #f0f0f0;
}

.point-item:first-child {
  border-radius: 12px 12px 0 0;
}

.point-item:last-child {
  border-radius: 0 0 12px 12px;
  border-bottom: none;
}

.point-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.point-item h3::before {
  content: "";
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: inline-block;
}

.point-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.point-item li {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 8px;
  padding-left: 0;
  position: relative;
  text-align: left;
}

.point-item li::before {
  content: "✓ ";
  position: static;
  color: #667eea;
  font-weight: bold;
  font-size: 0.9rem;
}

.point-item li:last-child {
  margin-bottom: 0;
}

/* Responsive Why Choose Us Section */
@media (max-width: 768px) {
  .why-choose-section {
    padding: 60px 0;
  }

  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-choose-image {
    order: 2;
  }

  .why-choose-description {
    order: 1;
  }

  .point-item {
    padding: 20px;
  }

  .point-item h3 {
    font-size: 1.1rem;
  }

  .point-item li {
    font-size: 0.85rem;
  }
}

.why-choose-item:hover h3 {
  color: #667eea;
}

.why-choose-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Why Choose Us Section */
@media (max-width: 768px) {
  .why-choose-section {
    padding: 60px 0;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .why-choose-item {
    padding: 30px 20px;
  }

  .why-choose-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .why-choose-icon i {
    font-size: 1.8rem;
  }

  .why-choose-item h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .why-choose-item {
    padding: 25px 15px;
  }

  .why-choose-icon {
    width: 60px;
    height: 60px;
  }

  .why-choose-icon i {
    font-size: 1.5rem;
  }
}

/* ====================
   CLIENTS SECTION
   ==================== */

.clients-section {
  padding: 60px 0;
  background-color: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #667eea;
  margin-top: 10px;
  font-weight: 500;
}

.clients-grid {
  display: flex;
  gap: 0;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 60px;
  overflow: hidden;
  position: relative;
}

.clients-grid-wrapper {
  display: flex;
  width: fit-content;
  transition: transform 0.5s ease;
}

.client-logo {
  background-color: #fff;
  padding: 30px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border: 2px solid #d1d5db;
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
  width: 180px;
  margin-right: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  margin-top: 0;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  margin-top: 0;
}

.carousel-nav:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-nav.prev {
  left: 10px;
}

.carousel-nav.next {
  right: 10px;
}

.carousel-nav i {
  color: white;
  font-size: 1rem;
}

.client-logo:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background-color: #e9ecef;
}

.client-logo:hover {
  background-color: #f8f9fa;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: scale(1.1);
  border: none;
}

.client-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: all 0.3s ease;
}

.client-logo:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive Clients Section */
@media (max-width: 1024px) {
  .client-logo {
    width: 180px;
    min-height: 120px;
  }

  .client-logo img {
    max-height: 50px;
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .client-logo {
    width: 150px;
    min-height: 100px;
    padding: 20px 10px;
  }

  .client-logo img {
    max-height: 40px;
  }
}

@media (max-width: 480px) {
  .client-logo {
    width: 120px;
    min-height: 80px;
    padding: 15px 8px;
  }

  .client-logo img {
    max-height: 30px;
  }
}

/* SERVICES BAR */
.services-bar {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 50px;
  padding: 15px 30px;
  margin: 30px auto;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.2);
  color: #1565c0;
}

.services-bar .service-item {
  padding: 10px 20px;
  font-weight: 500;
  font-size: 0.9rem;
  border-right: 1px solid rgba(33, 150, 243, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.services-bar .service-item:last-child {
  border-right: none;
}

.services-bar .service-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  color: #1565c0;
}

/* ====================
   TESTIMONIALS SCROLLER SECTION
   ==================== */

.testimonials-scroller-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-scroller-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.scroll-btn:hover {
  background: linear-gradient(135deg, #764ba2 0%, #f093fb 100%);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(118, 75, 162, 0.4);
}

.scroll-btn.prev-btn {
  left: 0;
}

.scroll-btn.next-btn {
  right: 0;
}

.testimonials-scroller {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: thin;
  scrollbar-color: #667eea #f1f1f1;
}

.testimonials-scroller::-webkit-scrollbar {
  height: 8px;
}

.testimonials-scroller::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.testimonials-scroller::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
}

.testimonial-card {
  flex: 0 0 280px;
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.1);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card.centered {
  transform: scale(1.15);
  box-shadow: 0 25px 60px rgba(102, 126, 234, 0.4);
  border-color: #667eea;
  z-index: 10;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.testimonial-card.centered::before {
  opacity: 1;
  height: 5px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.testimonial-card.centered .testimonial-image {
  border-color: #667eea;
  transform: scale(1.2);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.testimonial-card.centered .testimonial-name {
  color: #667eea;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(102, 126, 234, 0.2);
}

.testimonial-card.centered .testimonial-rating i {
  transform: scale(1.25);
  text-shadow: 0 4px 10px rgba(255, 215, 0, 0.7);
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.5));
}

.testimonial-card.centered .testimonial-description {
  color: #2c3e50;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.7;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Dim other cards when one is centered */
.testimonials-scroller:has(.testimonial-card.centered)
  .testimonial-card:not(.centered) {
  opacity: 0.7;
  transform: scale(0.95);
  filter: grayscale(20%);
}

.testimonials-scroller:has(.testimonial-card.centered)
  .testimonial-card:not(.centered):hover {
  opacity: 0.8;
  transform: scale(0.98);
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  border: 3px solid #667eea;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-image {
  border-color: #764ba2;
  transform: scale(1.05);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-name {
  color: #667eea;
}

.testimonial-rating {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonial-rating i {
  color: #ffd700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.testimonial-rating svg {
  color: #ffd700;
  fill: #ffd700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.testimonial-rating {
  color: #ffd700;
}

.testimonial-card:hover .testimonial-rating i {
  transform: scale(1.1);
  text-shadow: 0 3px 6px rgba(255, 215, 0, 0.5);
}

.testimonial-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #34495e;
  font-style: italic;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-description {
  color: #2c3e50;
  transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials-scroller-section {
    padding: 60px 0;
  }

  .testimonials-scroller-wrapper {
    padding: 0 50px;
  }

  .scroll-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .testimonial-card {
    flex: 0 0 250px;
    padding: 20px;
  }

  .testimonial-card.centered {
    transform: scale(1.05);
  }

  .testimonial-image {
    width: 70px;
    height: 70px;
  }

  .testimonial-name {
    font-size: 1.1rem;
  }

  .testimonial-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .testimonials-scroller-section {
    padding: 40px 0;
  }

  .testimonials-scroller-wrapper {
    padding: 0 40px;
  }

  .scroll-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .testimonial-card {
    flex: 0 0 220px;
    padding: 15px;
  }

  .testimonial-card.centered {
    transform: scale(1.03);
  }

  .testimonial-image {
    width: 60px;
    height: 60px;
  }

  .testimonial-name {
    font-size: 1rem;
  }

  .testimonial-description {
    font-size: 0.85rem;
  }
}

/* ====================
   MAP SECTION - Full Width Background with Top-Right Overlay
   ==================== */

.map-section {
  padding: 0;
  background: transparent;
  position: relative;
  height: 600px;
  overflow: hidden;
  margin-bottom: 80px;
}

.map-background {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.map-placeholder {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.map-content {
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
}

.map-content i {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.map-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.map-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.load-map-btn {
  background: white;
  color: #667eea;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.load-map-btn:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.load-map-btn i {
  font-size: 1.1rem;
}

.map-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Quick Contact Overlay - Top Right Corner */
.quick-contact-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 400px;
  max-height: 90vh;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 10;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.map-contact-header {
  text-align: center;
  margin-bottom: 25px;
}

.map-contact-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
}

.map-contact-header p {
  color: #7f8c8d;
  font-size: 0.9rem;
  line-height: 1.5;
}

.map-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.map-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.map-contact-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-3px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.2);
}

.map-contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-contact-icon i {
  color: white;
  font-size: 1rem;
}

.map-contact-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.map-contact-text p {
  color: #7f8c8d;
  line-height: 1.5;
  margin: 0;
  font-size: 0.85rem;
}

.map-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-contact-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.map-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.map-contact-btn.secondary {
  background: transparent;
  border: 2px solid #667eea;
  color: #667eea;
}

.map-contact-btn.secondary:hover {
  background: #667eea;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .map-section {
    height: auto;
    min-height: 500px;
  }

  .map-background {
    min-height: 500px;
  }

  .map-wrapper {
    position: relative;
    height: 400px;
  }

  .quick-contact-overlay {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0;
    margin-top: 20px;
  }

  .map-content i {
    font-size: 3rem;
  }

  .map-content h3 {
    font-size: 1.5rem;
  }

  .map-content p {
    font-size: 1rem;
  }

  .load-map-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .map-wrapper {
    height: 300px;
  }

  .quick-contact-overlay {
    padding: 20px 15px;
  }

  .map-contact-header h3 {
    font-size: 1.3rem;
  }

  .map-contact-item {
    padding: 12px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .map-contact-icon {
    width: 35px;
    height: 35px;
  }

  .map-contact-icon i {
    font-size: 0.9rem;
  }

  .map-contact-text h4 {
    font-size: 0.9rem;
  }

  .map-contact-text p {
    font-size: 0.8rem;
  }

  .map-contact-btn {
    padding: 10px 15px;
    font-size: 0.85rem;
  }
}

.portfolio-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  width: 100%;
  display: block;
  clear: both;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 50px;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 20px;
  flex-wrap: wrap;
}

.filter-item {
  padding: 12px 24px;
  font-weight: 500;
  font-size: 1rem;
  color: #1565c0;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
  position: relative;
  margin: 0 10px;
}

.filter-item:hover {
  color: #28a745;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 25px;
}

.filter-item.active {
  color: #28a745;
  background: white;
  border-radius: 25px;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
}

.portfolio-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-grid {
  display: grid; /* Changed from none to grid */
  gap: 25px;
  margin-top: 40px;
}

/* Logo Grid - 5x5 with increased spacing */
#logo-grid {
  display: grid; /* Explicitly set display: grid */
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 8px; /* Increased spacing between boxes */
  margin-top: 60px;
}

/* Website Grid - 3x3 Layout */
#website-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
}

/* SEO Grid - 3x3 Layout */
#seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
}

/* Branding Grid - 3x3 Layout */
#branding-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
}

/* Marketing Grid - 3x3 Layout */
#marketing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
}

.portfolio-item {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
  aspect-ratio: 1;
  position: relative;
  min-height: 150px;
}

.portfolio-item.show {
  animation: fadeInUp 0.5s ease;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
  width: 100%;
  height: 60%;
  overflow: hidden;
  position: relative;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-item.website {
  min-height: 350px;
}

.portfolio-item.website .portfolio-image {
  height: 100%;
}

.portfolio-info {
  padding: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.portfolio-info h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
  line-height: 1.2;
}

.portfolio-info p {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.3;
  margin: 0;
}

.portfolio-link {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 2px;
}

.portfolio-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Logo items enlarged view */
.portfolio-item.logo.enlarged {
  grid-column: span 3;
  grid-row: span 3;
  aspect-ratio: 1.2;
  z-index: 10;
}

.portfolio-item.logo.enlarged .portfolio-image {
  height: 75%;
}

.portfolio-item.logo.enlarged .portfolio-info h3 {
  font-size: 1.3rem;
}

.portfolio-item.logo.enlarged .portfolio-info p {
  font-size: 0.95rem;
}

.view-more-container {
  text-align: center;
  margin-top: 50px;
  width: 100%;
}

.view-more-btn {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.view-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

/* Responsive Portfolio Section */
@media (max-width: 768px) {
  .portfolio-filters {
    gap: 10px;
    margin-bottom: 30px;
  }

  .filter-item {
    padding: 10px 18px;
    font-size: 0.9rem;
    margin: 5px;
  }

  /* Override specific grids for mobile */
  #logo-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(13, 1fr);
  }

  #website-grid,
  #seo-grid,
  #branding-grid,
  #marketing-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
  }

  .portfolio-item.logo.enlarged {
    grid-column: span 1;
    grid-row: span 1;
  }

  .portfolio-item.logo.enlarged .portfolio-image {
    height: 250px;
  }
}

.view-more-container {
  text-align: center;
  margin-top: 50px;
}

.view-more-btn {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.view-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

/* ====================
   PORTFOLIO DASHBOARD
   ==================== */

.portfolio-dashboard {
  padding: 40px 0;
  background-color: #f8f9fa;
  min-height: 100vh;
}

.dashboard-container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  gap: 30px;
  padding: 0 20px;
}

/* Sidebar Styles */
.dashboard-sidebar {
  width: 280px;
  background: white;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: fit-content;
  position: sticky;
  top: 20px;
}

.dashboard-sidebar h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  text-align: center;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
  font-weight: 500;
}

.sidebar-item i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.sidebar-item:hover {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  transform: translateX(5px);
}

.sidebar-item.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.sidebar-item.active:hover {
  transform: translateX(0);
}

/* Main Content Styles */
.dashboard-content {
  flex: 1;
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.content-header {
  margin-bottom: 40px;
  text-align: center;
}

.content-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.content-header p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

/* Portfolio Grid Container */
.portfolio-grid-container {
  position: relative;
}

.portfolio-grid-container .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  animation: fadeInUp 0.5s ease;
}

/* Responsive Dashboard */
@media (max-width: 1024px) {
  .dashboard-container {
    flex-direction: column;
  }

  .dashboard-sidebar {
    width: 100%;
    position: static;
  }

  .sidebar-menu {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 10px;
  }

  .sidebar-item {
    flex-shrink: 0;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .portfolio-dashboard {
    padding: 20px 0;
  }

  .dashboard-container {
    padding: 0 15px;
    gap: 20px;
  }

  .dashboard-sidebar {
    padding: 20px 15px;
  }

  .dashboard-content {
    padding: 25px 20px;
  }

  .content-header h2 {
    font-size: 1.8rem;
  }

  .portfolio-grid-container .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .dashboard-sidebar h3 {
    font-size: 1.1rem;
  }

  .sidebar-item {
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  .dashboard-content {
    padding: 20px 15px;
  }

  .content-header h2 {
    font-size: 1.5rem;
  }

  .content-header p {
    font-size: 0.9rem;
  }
}

.services-section {
  padding: 80px 5vw;
  background-color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image-container {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.service-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image-container img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.7) 0%,
    rgba(118, 75, 162, 0.7) 100%
  );
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-overlay .service-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  width: 100%;
  height: 80%;
}

.service-card:hover .service-overlay .service-content {
  transform: translateY(0);
}

.service-overlay .service-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.service-overlay .service-description {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease 0.1s;
}

.service-card:hover .service-overlay .service-description {
  opacity: 1;
  transform: translateY(0);
}

.service-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease 0.2s;
}

.service-card:hover .service-buttons {
  opacity: 1;
  transform: translateY(0);
}

.know-more-btn,
.make-quest-btn {
  background: white;
  color: #667eea;
  border: none;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.know-more-btn:hover,
.make-quest-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.make-quest-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.make-quest-btn:hover {
  background: white;
  color: #667eea;
}

.service-name {
  padding: 20px;
  text-align: center;
  background-color: #fff;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-name h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  transition: all 0.3s ease;
}

.service-name-buttons {
  display: flex;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  position: absolute;
}

.service-card:hover .service-name {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-card:hover .service-name h3 {
  opacity: 0;
  transform: translateY(-5px);
}

.service-card:hover .service-name-buttons {
  opacity: 1;
  transform: translateY(0);
}

.service-name-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-name-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.service-name-btn.quest {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.service-name-btn.quest:hover {
  background: white;
  color: #667eea;
}

/* Responsive Services Section */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 5vw;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .service-image-container {
    height: 200px;
  }

  .service-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80%;
  }

  .service-content h3 {
    font-size: 1.3rem;
    margin: 0;
  }

  .service-description {
    font-size: 0.9rem;
    margin: 0;
  }

  .service-name {
    padding: 15px;
  }

  .service-name h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .services-grid {
    gap: 15px;
  }

  .service-image-container {
    height: 180px;
  }

  .service-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80%;
  }

  .service-content h3 {
    font-size: 1.2rem;
    margin: 0;
  }

  .service-description {
    font-size: 0.85rem;
    margin: 0;
  }

  .service-buttons {
    gap: 8px;
  }

  .know-more-btn,
  .make-quest-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .service-name {
    padding: 12px;
  }

  .service-name h3 {
    font-size: 1rem;
  }
}

.why-choose-section .container {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* ====================
   TESTIMONIALS SCROLLER SECTION
   ==================== */

.testimonials-scroller-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-scroller-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.scroll-btn:hover {
  background: linear-gradient(135deg, #764ba2 0%, #f093fb 100%);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(118, 75, 162, 0.4);
}

.scroll-btn.prev-btn {
  left: 0;
}

.scroll-btn.next-btn {
  right: 0;
}

.testimonials-scroller {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: thin;
  scrollbar-color: #667eea #f1f1f1;
}

.testimonials-scroller::-webkit-scrollbar {
  height: 8px;
}

.testimonials-scroller::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.testimonials-scroller::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
}

.testimonial-card {
  flex: 0 0 280px;
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.1);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card.centered {
  transform: scale(1.15);
  box-shadow: 0 25px 60px rgba(102, 126, 234, 0.4);
  border-color: #667eea;
  z-index: 10;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card.centered.fully-centered {
  transform: scale(1.15);
  box-shadow: 0 30px 70px rgba(102, 126, 234, 0.5);
  border-color: #667eea;
  z-index: 10;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.testimonial-card.centered::before {
  opacity: 1;
  height: 5px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.testimonial-card.centered .testimonial-image {
  border-color: #667eea;
  transform: scale(1.2);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.testimonial-card.centered .testimonial-name {
  color: #667eea;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(102, 126, 234, 0.2);
}

.testimonial-card.centered .testimonial-rating i {
  transform: scale(1.25);
  text-shadow: 0 4px 10px rgba(255, 215, 0, 0.7);
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.5));
}

.testimonial-card.centered .testimonial-description {
  color: #2c3e50;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.7;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Dim other cards when one is centered - using JavaScript approach for better compatibility */
.testimonial-card.dimmed {
  opacity: 0.7;
  transform: scale(0.95);
  filter: grayscale(20%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card.dimmed:hover {
  opacity: 0.8;
  transform: scale(0.98);
}

.testimonial-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-name {
  color: #667eea;
}

.testimonial-card.centered .testimonial-name {
  color: #667eea;
}

.testimonial-rating {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonial-rating i {
  color: #ffd700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.testimonial-rating svg {
  color: #ffd700;
  fill: #ffd700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.testimonial-rating {
  color: #ffd700;
}

.testimonial-card:hover .testimonial-rating i {
  transform: scale(1.1);
  text-shadow: 0 3px 6px rgba(255, 215, 0, 0.5);
}

.testimonial-card.centered .testimonial-rating i {
  transform: scale(1.15);
  text-shadow: 0 4px 8px rgba(255, 215, 0, 0.6);
}

.testimonial-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #34495e;
  font-style: italic;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-description {
  color: #2c3e50;
  transform: scale(1.02);
}

.testimonial-card.centered .testimonial-description {
  color: #2c3e50;
  font-size: 1rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials-scroller-section {
    padding: 60px 0;
  }

  .testimonials-scroller-wrapper {
    padding: 0 50px;
  }

  .scroll-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .testimonial-card {
    flex: 0 0 250px;
    padding: 20px;
  }

  .testimonial-card.centered {
    transform: scale(1.05);
  }

  .testimonial-image {
    width: 70px;
    height: 70px;
  }

  .testimonial-name {
    font-size: 1.1rem;
  }

  .testimonial-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .testimonials-scroller-section {
    padding: 40px 0;
  }

  .testimonials-scroller-wrapper {
    padding: 0 40px;
  }

  .scroll-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .testimonial-card {
    flex: 0 0 220px;
    padding: 15px;
  }

  .testimonial-card.centered {
    transform: scale(1.03);
  }

  .testimonial-image {
    width: 60px;
    height: 60px;
  }

  .testimonial-name {
    font-size: 1rem;
  }

  .testimonial-description {
    font-size: 0.85rem;
  }
}

/* ====================
   MAP SECTION - Full Width Background with Top-Right Overlay
   ==================== */

.map-section {
  padding: 0;
  background: transparent;
  position: relative;
  height: 600px;
  overflow: hidden;
  margin-bottom: 80px;
}

.map-background {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.map-placeholder {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.map-content {
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
}

.map-content i {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.map-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.map-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.load-map-btn {
  background: white;
  color: #667eea;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.load-map-btn:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.load-map-btn i {
  font-size: 1.1rem;
}

.map-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Quick Contact Overlay - Top Right Corner */
.quick-contact-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 400px;
  max-height: 90vh;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 10;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.map-contact-header {
  text-align: center;
  margin-bottom: 25px;
}

.map-contact-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
}

.map-contact-header p {
  color: #7f8c8d;
  font-size: 0.9rem;
  line-height: 1.5;
}

.map-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.map-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.map-contact-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-3px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.2);
}

.map-contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-contact-icon i {
  color: white;
  font-size: 1rem;
}

.map-contact-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.map-contact-text p {
  color: #7f8c8d;
  line-height: 1.5;
  margin: 0;
  font-size: 0.85rem;
}

.map-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-contact-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.map-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.map-contact-btn.secondary {
  background: transparent;
  border: 2px solid #667eea;
  color: #667eea;
}

.map-contact-btn.secondary:hover {
  background: #667eea;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .map-section {
    height: auto;
    min-height: 500px;
  }

  .map-background {
    min-height: 500px;
  }

  .map-wrapper {
    position: relative;
    height: 400px;
  }

  .quick-contact-overlay {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0;
    margin-top: 20px;
  }

  .map-content i {
    font-size: 3rem;
  }

  .map-content h3 {
    font-size: 1.5rem;
  }

  .map-content p {
    font-size: 1rem;
  }

  .load-map-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .map-wrapper {
    height: 300px;
  }

  .quick-contact-overlay {
    padding: 20px 15px;
  }

  .map-contact-header h3 {
    font-size: 1.3rem;
  }

  .map-contact-item {
    padding: 12px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .map-contact-icon {
    width: 35px;
    height: 35px;
  }

  .map-contact-icon i {
    font-size: 0.9rem;
  }

  .map-contact-text h4 {
    font-size: 0.9rem;
  }

  .map-contact-text p {
    font-size: 0.8rem;
  }

  .map-contact-btn {
    padding: 10px 15px;
    font-size: 0.85rem;
  }
}

.portfolio-section {
  padding: 80px 5vw;
  background: #f8f9fa;
  margin: 40px 0;
}

.portfolio-section .section-title {
  color: #333;
  text-align: center;
  margin-bottom: 15px;
  font-size: 2.5rem;
  font-weight: 700;
}

.portfolio-section .section-subtitle {
  color: #666;
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

/* Portfolio Filters */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-item {
  padding: 10px 25px;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #666;
}

.filter-item:hover {
  border-color: #667eea;
  color: #667eea;
  transform: translateY(-2px);
}

.filter-item.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: #667eea;
}

/* Portfolio Grid - Responsive Layout */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  animation: fadeInUp 0.6s ease-out;
}

.portfolio-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  min-height: 300px;
}

/* Enlarged state on click */
.portfolio-item.enlarged {
  transform: scale(1.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  z-index: 100;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  width: 400px;
  height: 400px;
  max-width: 90vw;
  max-height: 90vh;
}

.portfolio-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.9) 0%,
    rgba(118, 75, 162, 0.9) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Portfolio overlay - hidden by default, show on hover */
.portfolio-item .portfolio-overlay {
  display: flex;
  opacity: 0;
  pointer-events: none;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Show overlay only for specific cases if needed */
.portfolio-item.show-overlay .portfolio-overlay {
  display: flex;
  opacity: 1;
}

/* Disable hover effects for popup functionality */
.portfolio-item {
  transform: none !important;
  transition: none !important;
}

.portfolio-item:hover {
  transform: none !important;
  box-shadow: none !important;
}

.portfolio-item:hover .portfolio-image img {
  transform: none !important;
  filter: none !important;
}

/* Website portfolio - screenshot scroll effect on hover (top to bottom) */
.portfolio-item.website .portfolio-image {
  overflow: hidden;
}

.portfolio-item.website .portfolio-image img {
  width: 100%;
  height: 200%;
  min-height: 200%;
  object-fit: cover;
  object-position: top center;
  transition: transform 5s ease-in-out;
}

.portfolio-item.website:hover .portfolio-image img {
  transform: translateY(-50%) !important;
}

/* Delay overlay on website items so scroll effect is visible first */
.portfolio-item.website .portfolio-overlay {
  transition: opacity 0.3s ease 3s;
}

.portfolio-item.website:hover .portfolio-overlay {
  transition: opacity 0.3s ease 2.5s;
}

/* Always show overlay when enlarged */
.portfolio-item.enlarged .portfolio-overlay {
  opacity: 1;
}

.portfolio-info {
  text-align: center;
  color: white;
  padding: 20px;
}

.portfolio-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.portfolio-info p {
  font-size: 0.9rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.view-btn {
  background: white;
  color: #667eea;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background: #f8f9fa;
  transform: scale(1.05);
}

/* Close button for enlarged state */
.portfolio-item.enlarged::after {
  content: "×";
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  z-index: 101;
  transition: all 0.3s ease;
}

.portfolio-item.enlarged::after:hover {
  background: white;
  transform: scale(1.1);
}

/* Responsive adjustments for 2x2 grid */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-item.enlarged {
    width: 300px;
    height: 300px;
  }
}

/* Portfolio More Button */
.portfolio-more {
  text-align: center;
}

.portfolio-more .view-more-btn {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-more .view-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Responsive Portfolio Section */
@media (max-width: 768px) {
  .portfolio-section {
    padding: 60px 5vw;
    margin: 30px 0;
  }

  .portfolio-section .section-title {
    font-size: 2rem;
  }

  .portfolio-filters {
    gap: 10px;
  }

  .filter-item {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-image {
    height: 200px;
  }

  .portfolio-info h3 {
    font-size: 1.1rem;
  }

  .portfolio-info p {
    font-size: 0.85rem;
  }
}

/* ====================
   TESTIMONIAL SECTION
   ==================== */

.testimonial-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.testimonial-section .section-subtitle {
  color: #667eea;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-align: center;
}

.testimonial-section .section-title {
  color: #333;
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.2rem;
  line-height: 1.3;
}

.testimonial-grid {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.testimonial-grid-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  overflow: hidden;
}

.testimonial-item {
  flex: 0 0 33.333%;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.testimonial-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-item:hover .testimonial-content::before {
  opacity: 1;
}

.testimonial-item:hover .testimonial-content {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
  border-color: rgba(102, 126, 234, 0.2);
}

.client-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #667eea 0%, #764ba2 100%) border-box;
  margin-bottom: 15px;
  position: relative;
  transition: all 0.3s ease;
}

.client-avatar::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-item:hover .client-avatar::after {
  opacity: 1;
}

.testimonial-item:hover .client-avatar {
  transform: scale(1.1);
  border-color: transparent;
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.testimonial-item:hover .client-avatar img {
  transform: scale(1.05);
}

.client-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.client-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.testimonial-item:hover .client-info h4 {
  color: #667eea;
}

.client-title {
  font-size: 0.9rem;
  color: #7f8c8d;
  margin-bottom: 12px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.testimonial-item:hover .client-title {
  color: #5a6c7d;
}

.rating {
  margin-bottom: 15px;
  display: flex;
  gap: 3px;
}

.rating i {
  color: #ffd700;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.testimonial-item:hover .rating i {
  transform: scale(1.1);
  text-shadow: 0 3px 8px rgba(255, 215, 0, 0.5);
}

.testimonial-text {
  font-size: 0.95rem;
  color: #34495e;
  line-height: 1.6;
  font-style: italic;
  position: relative;
  padding: 0 10px;
  transition: all 0.3s ease;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: -5px;
  font-size: 2rem;
  color: #667eea;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-text::after {
  content: '"';
  position: absolute;
  bottom: -20px;
  right: -5px;
  font-size: 2rem;
  color: #667eea;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-item:hover .testimonial-text {
  color: #2c3e50;
  transform: scale(1.02);
}

/* Industry badge */
.client-info::before {
  content: attr(data-industry);
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10;
}

.testimonial-item:hover .client-info::before {
  opacity: 1;
  transform: translateY(0);
}

/* Testimonial Carousel Navigation */
.testimonial-grid .carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  backdrop-filter: blur(10px);
}

.testimonial-grid .carousel-nav:hover {
  background: linear-gradient(135deg, #764ba2 0%, #f093fb 100%);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 12px 35px rgba(118, 75, 162, 0.5);
}

.testimonial-grid .carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.testimonial-grid .carousel-nav.prev {
  left: 25px;
}

.testimonial-grid .carousel-nav.next {
  right: 25px;
}

/* Progress Indicator */
.testimonial-progress {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.progress-dot.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.progress-dot:hover {
  background: rgba(102, 126, 234, 0.6);
  transform: scale(1.2);
}

.progress-dot.active:hover {
  transform: scale(1.1);
}

/* Floating animation for testimonial items */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.testimonial-item:nth-child(odd) {
  animation: float 6s ease-in-out infinite;
}

.testimonial-item:nth-child(even) {
  animation: float 6s ease-in-out infinite 3s;
}

/* Enhanced enlarged state */
.testimonial-item.enlarged .testimonial-content {
  padding: 50px;
  box-shadow: 0 30px 80px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  border: 3px solid transparent;
  background-clip: padding-box;
}

.testimonial-item.enlarged .testimonial-content::before {
  opacity: 1;
  height: 6px;
}

.testimonial-item.enlarged .client-avatar {
  width: 100px;
  height: 100px;
  border-width: 5px;
  margin-bottom: 20px;
}

.testimonial-item.enlarged .client-info h4 {
  font-size: 1.6rem;
  color: #667eea;
}

.testimonial-item.enlarged .client-title {
  font-size: 1.2rem;
  color: #5a6c7d;
}

.testimonial-item.enlarged .rating i {
  font-size: 1.3rem;
  text-shadow: 0 4px 12px rgba(255, 215, 0, 0.6);
}

.testimonial-item.enlarged .testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #2c3e50;
}

/* Testimonial Item Enlarged State */
.testimonial-item.enlarged {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  z-index: 1000;
  width: 600px;
  max-width: 90vw;
  padding: 0;
}

.testimonial-item.enlarged .testimonial-content {
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  background: white;
  border-radius: 20px;
  transform: scale(1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-item.enlarged .client-avatar {
  width: 80px;
  height: 80px;
  border: 4px solid #667eea;
  margin-bottom: 15px;
}

.testimonial-item.enlarged .client-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-item.enlarged .client-info h4 {
  font-size: 1.4rem;
}

.testimonial-item.enlarged .client-title {
  font-size: 1.1rem;
}

.testimonial-item.enlarged .testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
}

.testimonial-item.enlarged .rating i {
  font-size: 1.1rem;
}

/* Fade out other testimonials when one is enlarged */
.testimonial-grid-wrapper.has-enlarged .testimonial-item:not(.enlarged) {
  opacity: 0.3;
  pointer-events: none;
  transform: scale(0.95);
}

/* Close button for enlarged testimonial */
.testimonial-item.enlarged::after {
  content: "×";
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-item.enlarged::after:hover {
  background: white;
  transform: scale(1.1);
}

/* Overlay background when testimonial is enlarged */
.testimonial-grid-wrapper.has-enlarged::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  pointer-events: none;
}

/* Responsive Testimonial Section */
@media (max-width: 1024px) {
  .testimonial-item {
    flex: 0 0 50%;
  }
}

@media (max-width: 768px) {
  .testimonial-item {
    flex: 0 0 100%;
  }

  .testimonial-section .section-title {
    font-size: 1.8rem;
  }

  .testimonial-content {
    flex-direction: column;
    text-align: center;
  }

  .client-avatar {
    margin: 0 auto 15px;
  }

  .testimonial-item.enlarged {
    width: 90vw;
    transform: translate(-50%, -50%) scale(1.3);
  }

  .testimonial-item.enlarged .testimonial-content {
    padding: 30px;
  }

  .testimonial-item.enlarged .client-avatar {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
  }

  .testimonial-item.enlarged .client-info h4 {
    font-size: 1.2rem;
  }

  .testimonial-item.enlarged .testimonial-text {
    font-size: 1rem;
  }
}

/* Original Testimonial Card Styles (for compatibility) */
.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card.featured {
  border: 2px solid #667eea;
  transform: scale(1.05);
}

.testimonial-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Responsive Testimonial Section */
@media (max-width: 768px) {
  .testimonial-section {
    padding: 60px 0;
  }

  .testimonial-section .section-title {
    font-size: 2rem;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 25px;
  }

  .testimonial-card.featured {
    transform: scale(1);
  }

  .testimonial-card.featured:hover {
    transform: scale(1) translateY(-5px);
  }

  .testimonial-header {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-avatar {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .testimonial-content p {
    font-size: 0.95rem;
  }
}

/* ====================
   FAQs SECTION
   ==================== */

.faqs-section {
  padding: 80px 0;
  background: #ffffff;
}

.faqs-section .section-title {
  color: #333;
  text-align: center;
  margin-bottom: 15px;
  font-size: 2.5rem;
  font-weight: 700;
}

.faqs-section .section-subtitle {
  color: #666;
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 60px;
}

.faqs-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: start;
}

.faq-item {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: none;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  flex: 1;
}

.faq-question i {
  color: #667eea;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  background: white;
  width: 100%;
  box-sizing: border-box;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 25px 20px 25px;
}

.faq-answer p {
  color: #555;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

/* Responsive FAQs Section */
@media (max-width: 768px) {
  .faqs-section {
    padding: 60px 0;
  }

  .faqs-section .section-title {
    font-size: 2rem;
  }

  .faqs-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .faq-question {
    padding: 15px 20px;
  }

  .faq-question h3 {
    font-size: 1.1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 15px 20px;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
}

/* ====================
   FOOTER
   ==================== */

footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #667eea, transparent);
  opacity: 0.3;
}

.footer-content {
  padding: 80px 0 40px;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-section h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 20px;
  position: relative;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 1px;
}

.footer-logo-img {
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
  display: block;
}

.footer-logo h3 {
  color: #b8c1ec;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.footer-social-links {
  display: flex;
  gap: 15px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8c1ec;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b8c1ec;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #667eea;
  transform: translateX(5px);
}

.footer-links a::before {
  content: "▸";
  margin-right: 8px;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.footer-links a:hover::before {
  transform: translateX(3px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-item i {
  color: #667eea;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item span {
  color: #b8c1ec;
  line-height: 1.5;
  font-size: 0.9rem;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #b8c1ec;
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  color: #b8c1ec;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #667eea;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social-links {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .contact-item {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 60px 0 30px;
  }

  .footer-section h3 {
    font-size: 1.5rem;
  }

  .footer-section h4 {
    font-size: 1.1rem;
  }

  .footer-social-link {
    width: 35px;
    height: 35px;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
}

/* MEGA MENU PROMO SECTION */
.mega-menu-promo {
  flex: 1;
  min-width: 250px;
  padding: 0 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mega-menu-promo h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.download-btn {
  background: white;
  color: #667eea;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.promo-stats {
  font-size: 0.85rem;
  opacity: 0.9;
  margin: 0;
  font-weight: 500;
}

/* CHAT WIDGET */
.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.chat-bubble {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.chat-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.chat-bubble i {
  color: white;
  font-size: 1.5rem;
}

.chat-popup {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chat-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.chat-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-body {
  padding: 20px;
}

.chat-body p {
  margin: 0 0 15px 0;
  color: #333;
  font-size: 0.9rem;
}

.chat-input {
  display: flex;
  gap: 8px;
}

.chat-input input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
}

.send-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 10px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.send-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.chat-widget.active .chat-popup {
  display: flex;
}

/* RESPONSIVE LOGO */
@media (min-width: 1200px) {
  .logo {
    margin-left: 105px;
  }

  nav a {
    padding: 12px 22px;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 35px;
    max-width: 140px;
  }

  .mega-menu {
    width: 90vw;
    flex-direction: column;
  }

  .mega-menu-column {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .mega-menu-column:last-child {
    border-bottom: none;
  }

  .mega-menu-promo {
    min-width: auto;
  }

  .chat-popup {
    width: 280px;
    right: -10px;
  }

  .services-bar {
    margin: 20px 15px;
    padding: 15px 20px;
    gap: 10px;
  }

  .service-item {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
}

/* ====================
   PORTFOLIO DASHBOARD STYLES
   ==================== */

.portfolio-dashboard {
  padding: 40px 0 60px;
  background: linear-gradient(180deg, #f8f9fa 0%, #eef1f5 100%);
  min-height: calc(100vh - 180px);
}

.dashboard-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}

.dashboard-sidebar {
  background: white;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 100px;
  min-height: fit-content;
  border: 1px solid rgba(102, 126, 234, 0.08);
}

.dashboard-sidebar h3 {
  color: #2c3e50;
  font-size: 1.15rem;
  margin-bottom: 20px;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 2px solid #e9ecef;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  background: #f8f9fa;
  color: #495057;
  font-size: 0.95rem;
}

.sidebar-item:hover {
  background: rgba(102, 126, 234, 0.12);
  color: #667eea;
  transform: translateX(4px);
}

.sidebar-item.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.35);
}

.sidebar-item i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.sidebar-item span {
  font-weight: 500;
}

.dashboard-content {
  background: white;
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: visible;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.dashboard-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px 16px 0 0;
}

.content-header {
  margin-bottom: 32px;
  text-align: center;
  position: relative;
}

.content-header::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

/* Dashboard grid wrapper - contains logo grid + portfolio item grids */
.dashboard-grid-wrapper {
  width: 100%;
  min-height: 300px;
}

/* Portfolio items grid (website, seo, branding, marketing) - index-style grid */
.portfolio-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
}

/* Portfolio Layout - Sidebar on Left, Content on Right */
.portfolio-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.portfolio-sidebar {
  flex: 0 0 260px;
  background: #ffffff;
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 100px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.sidebar-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  padding: 24px 24px 16px 24px;
  text-align: left;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.portfolio-sidebar .portfolio-filters {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.portfolio-sidebar .filter-item {
  padding: 14px 24px;
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 400;
  text-align: left;
  color: #666666;
  font-size: 0.95rem;
  letter-spacing: 0.1px;
  position: relative;
  border-bottom: 1px solid #f8f8f8;
}

.portfolio-sidebar .filter-item:last-child {
  border-bottom: none;
}

.portfolio-sidebar .filter-item:hover {
  color: #1a1a1a;
  border-left-color: #e0e0e0;
  background: #fafafa;
}

.portfolio-sidebar .filter-item.active {
  color: #1a1a1a;
  border-left-color: #1a1a1a;
  background: #fafafa;
  font-weight: 500;
}

.portfolio-content {
  flex: 1;
  min-width: 0;
}

/* Add subtle icons to filter items */
.portfolio-sidebar .filter-item[data-filter="logo"]::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%23999"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 21a4 4 0 01-4-4V5a2 2 0 012-2h4a2 2 0 012 2v12a4 4 0 01-4 4zm0 0h12a2 2 0 002-2v-4a2 2 0 00-2-2h-2.343M11 7.343l1.657-1.657a2 2 0 012.828 0l2.829 2.829a2 2 0 010 2.828l-8.486 8.485M7 17h.01"/></svg>')
    no-repeat center;
  background-size: 16px 16px;
  opacity: 0.4;
}

.portfolio-sidebar .filter-item[data-filter="website"]::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%23999"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9"/></svg>')
    no-repeat center;
  background-size: 16px 16px;
  opacity: 0.4;
}

.portfolio-sidebar .filter-item[data-filter="seo"]::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%23999"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z"/></svg>')
    no-repeat center;
  background-size: 16px 16px;
  opacity: 0.4;
}

.portfolio-sidebar .filter-item[data-filter="branding"]::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%23999"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 7h.01M7 3h5c.512 0 1.024.195 1.414.586l7 7a2 2 0 010 2.828l-7 7a2 2 0 01-2.828 0l-7-7A1.994 1.994 0 013 12V7a4 4 0 014-4z"/></svg>')
    no-repeat center;
  background-size: 16px 16px;
  opacity: 0.4;
}

.portfolio-sidebar .filter-item[data-filter="banner"]::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%23999"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 16l4.586-4.586a2 2 0 012.828 0L16 16m-2-2l1.586-1.586a2 2 0 012.828 0L20 14m-6-6h.01M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z"/></svg>')
    no-repeat center;
  background-size: 16px 16px;
  opacity: 0.4;
}

.portfolio-sidebar .filter-item[data-filter="social-media-post"]::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%23999"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 18h.01M8 21h8a2 2 0 002-2V5a2 2 0 00-2-2H8a2 2 0 00-2 2v14a2 2 0 002 2z"/></svg>')
    no-repeat center;
  background-size: 16px 16px;
  opacity: 0.4;
}

.portfolio-sidebar .filter-item.active::after {
  opacity: 0.8;
}

/* Responsive Sidebar */
@media (max-width: 992px) {
  .portfolio-layout {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 992px) {
  .portfolio-hero {
    padding: 120px 0 80px;
  }

  .portfolio-hero h1 {
    font-size: 2.8rem;
  }

  .portfolio-layout {
    flex-direction: column;
  }

  .portfolio-sidebar {
    flex: none;
    position: static;
    order: 1; /* Sidebar at top for mobile */
    margin-bottom: 20px;
  }

  .portfolio-content {
    order: 2;
  }

  .portfolio-sidebar .portfolio-filters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 10px 0;
  }


  .portfolio-sidebar .filter-item {
    flex: 0 0 auto;
    min-width: auto;
    text-align: center;
    padding: 8px 5px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
    font-size: 0.8rem;
    white-space: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    line-height: 1.2;
  }

  .portfolio-sidebar .filter-item.active {
    background: #f4f4ff !important;
    color: #764ba2 !important;
    border: 2px solid #764ba2 !important;
    font-weight: 700 !important;
  }


  .portfolio-sidebar .filter-item::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .portfolio-hero h1 {
    font-size: 2.5rem;
  }

  .portfolio-sidebar {
    padding: 0;
  }

  .sidebar-title {
    font-size: 1rem;
    padding: 10px 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .portfolio-hero {
    padding: 100px 0 60px;
  }

  .portfolio-hero h1 {
    font-size: 2rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Logo grid inside dashboard - full width, 5x5 like index */
.portfolio-dashboard .logo-grid-container {
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 10px;
  width: 100%;
  margin: 0;
}

.portfolio-dashboard .logo-grid-container.active {
  display: grid;
}

.content-header h2 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-header p {
  color: #6c757d;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.portfolio-grid-container {
  position: relative;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.portfolio-dashboard .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}

.portfolio-dashboard .portfolio-item {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.06),
    0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  border: 1px solid #eee;
  width: 100%;
  box-sizing: border-box;
}

.portfolio-dashboard .portfolio-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.portfolio-dashboard .portfolio-item:hover::before {
  transform: scaleX(1);
}

.portfolio-dashboard .portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 28px rgba(102, 126, 234, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.08);
}

.portfolio-dashboard .portfolio-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f1f3f5;
  width: 100%;
}

.portfolio-dashboard .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-dashboard .portfolio-item:hover .portfolio-image img {
  transform: scale(1.04);
}

/* Website scroll effect on portfolio dashboard too */
.portfolio-dashboard .portfolio-item.website .portfolio-image img {
  height: 200%;
  min-height: 200%;
  object-fit: cover;
  object-position: top center;
  transition: transform 5s ease-in-out;
}

.portfolio-dashboard .portfolio-item.website:hover .portfolio-image img {
  transform: translateY(-50%) !important;
}

.portfolio-dashboard .portfolio-info {
  padding: 20px;
  background: white;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.portfolio-dashboard .portfolio-info h3 {
  color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.portfolio-dashboard .portfolio-item:hover .portfolio-info h3 {
  color: #667eea;
}

.portfolio-dashboard .portfolio-info p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Logo Grid for Dashboard - Consistent with other grids */
.portfolio-dashboard #logo-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 24px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.portfolio-dashboard #logo-grid .portfolio-item {
  display: flex !important;
  flex-direction: column !important;
  min-height: auto !important;
  box-sizing: border-box !important;
}

.portfolio-dashboard #logo-grid .portfolio-image {
  height: 200px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background: #f1f3f5 !important;
  overflow: hidden !important;
}

.portfolio-dashboard #logo-grid .portfolio-image img {
  max-width: 85% !important;
  max-height: 85% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

.portfolio-dashboard #logo-grid .portfolio-info {
  padding: 20px !important;
  text-align: center !important;
  flex: 1 !important;
}

.portfolio-dashboard #logo-grid .portfolio-info h3 {
  font-size: 1.15rem !important;
  margin-bottom: 8px !important;
}

.portfolio-dashboard #logo-grid .portfolio-info p {
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger animation for portfolio items */
.portfolio-item:nth-child(1) {
  animation-delay: 0.1s;
}
.portfolio-item:nth-child(2) {
  animation-delay: 0.2s;
}
.portfolio-item:nth-child(3) {
  animation-delay: 0.3s;
}
.portfolio-item:nth-child(4) {
  animation-delay: 0.4s;
}
.portfolio-item:nth-child(5) {
  animation-delay: 0.5s;
}
.portfolio-item:nth-child(6) {
  animation-delay: 0.6s;
}

/* ====================
   PORTFOLIO POPUP MODAL - Cross Browser Compatible
   ==================== */

.portfolio-popup {
  display: none;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 99999 !important;
  animation: fadeIn 0.3s ease;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  /* Browser compatibility fixes */
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  /* Ensure full viewport coverage in all browsers */
  overflow: hidden !important;
  background: transparent !important;
}

.portfolio-popup.active {
  display: block !important;
  /* Force visibility in all browsers */
  visibility: visible !important;
  opacity: 1 !important;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  /* Fallback for browsers that don't support backdrop-filter */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  /* Ensure coverage in all browsers */
  min-width: 100%;
  min-height: 100%;
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Cross-browser centering */
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 20px;
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  overflow: auto;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.4s ease;
  z-index: 100000;
  /* Browser compatibility */
  -webkit-box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  /* Ensure proper box sizing */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.popup-close:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

.popup-close i {
  color: #333;
  font-size: 18px;
}

.popup-image-container {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.popup-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f8f9fa;
}

.popup-info {
  padding: 30px;
  text-align: center;
}

.popup-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.popup-info p {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.6;
}

/* Popup Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .popup-content {
    max-width: 95%;
    max-height: 95%;
  }

  .popup-info {
    padding: 20px;
  }

  .popup-info h3 {
    font-size: 1.5rem;
  }

  .popup-info p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .popup-close {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
  }

  .popup-info {
    padding: 15px;
  }

  .popup-info h3 {
    font-size: 1.3rem;
  }
}

/* Responsive Dashboard */
@media (max-width: 1024px) {
  .dashboard-container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 20px;
  }

  .dashboard-sidebar {
    position: static;
    order: 2;
    padding: 20px;
  }

  .dashboard-content {
    order: 1;
    padding: 28px 24px;
  }

  .sidebar-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .sidebar-item {
    flex: 1 1 auto;
    min-width: 140px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .portfolio-dashboard {
    padding: 24px 0 40px;
  }

  .dashboard-container {
    padding: 0 16px;
  }

  .dashboard-content {
    padding: 24px 20px;
  }

  .content-header h2 {
    font-size: 1.75rem;
  }

  .content-header p {
    font-size: 0.95rem;
  }

  .portfolio-dashboard .logo-grid-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
  }

  .portfolio-items-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .dashboard-sidebar h3 {
    font-size: 1.05rem;
  }

  .sidebar-item {
    min-width: 100%;
    padding: 12px 16px;
  }

  .content-header h2 {
    font-size: 1.5rem;
  }

  .portfolio-dashboard .logo-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 6px;
  }

  .portfolio-dashboard .logo-block {
    height: 180px;
  }
}

/* ====================
   MODERN PORTFOLIO DASHBOARD STYLES
   ==================== */

.portfolio-main {
  margin-top: 180px;
}

.portfolio-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.portfolio-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.portfolio-hero p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.portfolio-filters-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 30px;
  border: 2px solid #667eea;
  background: white;
  color: #667eea;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.portfolio-grid-section {
  padding: 80px 0;
}

.portfolio-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.portfolio-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .card-image img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .card-overlay {
  opacity: 1;
}

.view-project-btn {
  padding: 12px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-project-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.card-content {
  padding: 30px;
}

.card-content h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.card-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  padding: 6px 15px;
  background: #f0f2ff;
  color: #667eea;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.portfolio-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.1rem;
  background: white;
  color: #667eea;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .portfolio-main {
    margin-top: 150px;
  }

  .portfolio-hero {
    padding: 60px 0;
  }

  .portfolio-hero h1 {
    font-size: 2.5rem;
  }

  .portfolio-hero p {
    font-size: 1.1rem;
  }

  .filter-tabs {
    gap: 15px;
  }

  .filter-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .portfolio-grid-modern {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .card-image {
    height: 220px;
  }

  .card-content {
    padding: 25px;
  }

  .card-content h3 {
    font-size: 1.3rem;
  }

  .portfolio-cta {
    padding: 60px 0;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}

/* ====================
   STICKY HEADER FOR DASHBOARD
   ==================== */

.site-header.sticky-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
}

.site-header.sticky-header .header-top {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.site-header.sticky-header .main-navigation {
  background: rgba(255, 255, 255, 0.98) !important;
}

/* Ensure navigation text is visible */
.site-header.sticky-header .nav-link {
  color: #333 !important;
}

.site-header.sticky-header .nav-link:hover {
  color: #667eea !important;
}

.site-header.sticky-header .dropdown-toggle {
  color: #333 !important;
}

.site-header.sticky-header .dropdown-toggle:hover {
  color: #667eea !important;
}

.site-header.sticky-header .mega-menu-link {
  color: #333 !important;
}

.site-header.sticky-header .mega-menu-link:hover {
  color: #667eea !important;
}

/* Ensure dashboard content has proper margin when header is sticky */
.portfolio-dashboard {
  margin-top: 0 !important;
}

/* Override any conflicting styles */
.portfolio-dashboard .site-header {
  position: fixed !important;
  top: 0 !important;
  z-index: 1000 !important;
}

/* ====================
   CUSTOM 5x5 LOGO GRID WITH 10px PADDING
   ==================== */

.logo-grid-container {
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  grid-column: 1 / -1;
}

/* Show logo grid only when logo category is active */
.logo-grid-container.active {
  display: grid;
}

/* Portfolio page - full width section */
.portfolio-page-section {
  padding: 60px 5vw 80px;
  min-height: 60vh;
}

.portfolio-page-section .portfolio-more {
  margin-top: 50px;
  text-align: center;
  padding: 20px 0;
}

/* Enlarged logo block effect */
.logo-block.enlarged {
  grid-column: span 2;
  grid-row: span 2;
  z-index: 10;
  width: 600px;
  height: 600px;
  transform: scale(1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.logo-block.enlarged .logo-img {
  transform: scale(1);
  width: 100%;
  height: 100%;
  max-width: 580px;
  max-height: 580px;
}

.logo-block {
  padding: 10px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
}

.logo-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.logo-block:hover .logo-img {
  transform: scale(1.05);
}

/* Responsive Custom Grid */
@media (max-width: 1200px) {
  .logo-grid-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .logo-grid-container {
    grid-template-columns: repeat(3, 1fr);
    padding: 8px;
    gap: 8px;
  }

  .logo-block {
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .logo-grid-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 5px;
    gap: 5px;
  }

  .logo-block {
    padding: 5px;
  }
}

.logo-item {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo-image-container {
  height: 85%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.logo-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-name {
  height: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-name h3 {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover and Click Effects */
.logo-item:hover .logo-name {
  opacity: 0;
  transform: translateY(-100%);
  height: 0;
  padding: 0;
}

.logo-item:hover .logo-image-container {
  height: 100%;
}

.logo-item:hover .logo-image {
  transform: scale(1.1);
}

/* Click to Enlarge Effect */
.logo-item.enlarged {
  grid-column: span 2;
  grid-row: span 2;
  z-index: 10;
}

.logo-item.enlarged .logo-name {
  opacity: 0;
  transform: translateY(-100%);
  height: 0;
  padding: 0;
}

.logo-item.enlarged .logo-image-container {
  height: 100%;
}

.logo-item.enlarged .logo-image {
  transform: scale(1.3);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-item.enlarged {
    grid-column: span 1;
    grid-row: span 1;
  }

  .logo-item.enlarged .logo-image {
    transform: scale(1.2);
  }

  .logo-name h3 {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-name h3 {
    font-size: 0.7rem;
  }
}

/* ====================
   REQUEST A QUOTE SECTION - HORIZONTAL FORM
   ==================== */

.request-quote-section {
  padding: 40px 0;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.quote-content {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.quote-text {
  text-align: center;
  margin-bottom: 30px;
}

.quote-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.2;
}

.quote-subtitle {
  font-size: 1.2rem;
  color: #667eea;
  margin-bottom: 15px;
  font-weight: 600;
}

.quote-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

.quote-form {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid #e9ecef;
}

.quote-form-inner {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 150px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: #495057;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  padding: 10px 14px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

.form-textarea {
  resize: none;
  height: 36px;
  min-height: 36px;
  max-height: 36px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 10px 14px;
  box-sizing: border-box;
  line-height: 1.2;
}

.form-textarea.expanded {
  height: 150px;
  min-height: 150px;
  max-height: 150px;
  overflow-y: auto;
  cursor: text;
}

.quote-submit-btn {
  background: #667eea;
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  width: 100%;
  max-width: 300px;
  margin: 20px auto 0;
}

.quote-submit-btn:hover {
  background: #5a6fd8;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(102, 126, 234, 0.25);
}

.quote-submit-btn i {
  transition: transform 0.3s ease;
}

.quote-submit-btn:hover i {
  transform: translateX(2px);
}

/* Responsive Horizontal Form */
@media (max-width: 768px) {
  .request-quote-section {
    padding: 30px 0;
  }

  .quote-form-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .form-group {
    min-width: auto;
  }

  .quote-submit-btn {
    width: 100%;
    justify-content: center;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .quote-title {
    font-size: 1.8rem;
  }

  .quote-form {
    padding: 20px;
  }

  .quote-form-inner {
    gap: 12px;
  }
}

/* ====================
   INDUSTRIES WE SERVE SECTION - 4x3 Grid of Industry Sectors
   ==================== */

.industries-section {
  padding: 80px 0;
  background: #ffffff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  max-height: 220px;
  display: flex;
  flex-direction: column;
}

.industry-card:hover {
  border-color: #667eea;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
  transform: translateY(-5px);
}

.industry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.industry-logo {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-logo {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.industry-name h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-name h3 {
  color: #667eea;
}

.industry-description {
  flex: 1;
  display: flex;
  align-items: flex-end;
}

.industry-description p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-description p {
  color: #555;
}

/* Responsive adjustments for industries grid */
@media (max-width: 1200px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .industry-card {
    padding: 20px;
    min-height: 180px;
    max-height: 200px;
  }

  .industry-logo {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .industry-name h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .industries-section {
    padding: 60px 0;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }

  .industry-card {
    padding: 18px;
    min-height: 170px;
    max-height: 190px;
  }

  .industry-logo {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .industry-name h3 {
    font-size: 1.1rem;
  }

  .industry-description p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .industries-section {
    padding: 40px 0;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .industry-card {
    padding: 15px;
    min-height: 160px;
    max-height: 180px;
  }

  .industry-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
  }

  .industry-logo {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .industry-name h3 {
    font-size: 1rem;
  }

  .industry-description p {
    font-size: 0.85rem;
  }
}

/* ====================
   TRUSTED & CERTIFIED PARTNERS SECTION - Grid of Partner Logos
   ==================== */

.trusted-partners-section {
  padding: 80px 0;
  background: #ffffff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.partner-item {
  background: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-item:hover {
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
  transform: translateY(-5px);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.partner-logo img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  opacity: 1;
}

.partner-item:hover .partner-logo img {
  transform: scale(1.05);
}

/* Responsive adjustments for partners grid */
@media (max-width: 1200px) {
  .partners-grid {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
    gap: 30px;
    margin: 30px auto 0;
  }

  .partner-item {
    padding: 25px;
    min-height: 130px;
  }

  .partner-logo img {
    max-height: 70px;
  }
}

@media (max-width: 768px) {
  .trusted-partners-section {
    padding: 60px 0;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
    margin: 25px auto 0;
  }

  .partner-item {
    padding: 20px;
    min-height: 120px;
  }

  .partner-logo img {
    max-height: 60px;
  }
}

@media (max-width: 480px) {
  .trusted-partners-section {
    padding: 40px 0;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    margin: 20px auto 0;
  }

  .partner-item {
    padding: 15px;
    min-height: 100px;
  }

  .partner-logo img {
    max-height: 50px;
  }
}

/* ====================
   CLIENT LOGOS SECTION - 7x4 Grid of Client Logos (Full Width)
   ==================== */

.client-logos-section {
  padding: 60px 0 40px;
  background: #ffffff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.client-logos-section .section-header {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 20px;
}

.client-logos-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  width: 100%;
  padding: 0 80px;
  margin: 0;
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  background: #fff;
  border: 1px solid #eef0f3;
  width: 100%;
  height: 100px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.client-logo-item:hover {
  background: #f8f9ff;
  border-color: #667eea;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.12);
  transform: scale(1.02);
  z-index: 1;
}

.client-logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
  display: block;
}

.client-logo-item:hover img {
  filter: grayscale(0%);
}

/* Responsive adjustments for client logos grid */
@media (max-width: 1024px) {
  .client-logos-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .client-logo-item {
    height: 90px;
  }
}

@media (max-width: 768px) {
  .client-logos-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .client-logo-item {
    height: 80px;
  }

  .client-logos-section {
    padding: 40px 0 20px;
  }
}

@media (max-width: 480px) {
  .client-logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .client-logo-item {
    height: 70px;
  }

  .client-logos-section {
    padding: 30px 0 15px;
  }
}

/* ====================
   SERVICE PAGE STYLES
   ==================== */

.service-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.service-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.service-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-hero p {
  font-size: 1.3rem;
  margin-bottom: 0;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-details {
  padding: 80px 0;
  background: #fff;
}

.service-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.service-main h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  position: relative;
}

.service-main p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.service-features {
  margin-bottom: 50px;
}

.service-features h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 25px;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.feature-icon {
  font-size: 2.5rem;
  color: #667eea;
  margin-bottom: 15px;
  display: block;
}

.feature-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

.technologies {
  margin-bottom: 50px;
}

.technologies h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 25px;
  position: relative;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
}

.tech-item {
  text-align: center;
  padding: 20px 15px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tech-item i {
  font-size: 2rem;
  color: #667eea;
  margin-bottom: 10px;
  display: block;
}

.tech-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.sidebar-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 20px;
  position: relative;
}

.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.why-item i {
  color: #667eea;
  font-size: 1rem;
  min-width: 20px;
}

.related-services {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.related-services a {
  color: #666;
  text-decoration: none;
  font-size: 1rem;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.related-services a:hover {
  color: #667eea;
  background-color: #f8f9fa;
  border-left-color: #667eea;
  transform: translateX(5px);
}

.portfolio-section {
  padding: 80px 0;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  justify-items: center;
}

.portfolio-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.9) 0%,
    rgba(118, 75, 162, 0.9) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-content {
  text-align: center;
  color: white;
  padding: 20px;
}

.portfolio-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.portfolio-content p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.portfolio-cta {
  text-align: center;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-section {
  padding: 80px 0;
  background: #f8f9fa;
}

/* .faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
} */

.faq-column {
  max-width: 90%;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.faq-question i {
  color: #667eea;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px;
}

.faq-answer p {
  padding-top: 20px;
  line-height: 1.6;
  color: #666;
}

.faq-form {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-form h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 15px;
}

.faq-form p {
  color: #666;
  margin-bottom: 20px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #b8c1ec;
}

.contact-item i {
  color: #667eea;
  font-size: 1.1rem;
  margin-right: 8px;
}

/* ====================
   RESPONSIVE DESIGN
   ==================== */

@media (max-width: 992px) {
  .service-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-hero h1 {
    font-size: 2.5rem;
  }

  .service-main h2 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ====================
   MOBILE RESPONSIVE - Hamburger Menu & Navigation
   ==================== */

/* Hamburger Button - Hidden on desktop */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
  position: relative;
}

.hamburger-icon {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #fff;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.hamburger-icon::before {
  top: -8px;
}

.hamburger-icon::after {
  top: 8px;
}

/* Hamburger X animation when open */
.mobile-menu-toggle.active .hamburger-icon {
  background-color: transparent;
}

.mobile-menu-toggle.active .hamburger-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ===== MOBILE BREAKPOINT ===== */
@media (max-width: 768px) {

  /* Show hamburger button */
  .mobile-menu-toggle {
    display: block;
  }

  /* Header top bar - compact */
  .header-top {
    display: none;
  }

  /* Navigation bar */
  .main-navigation {
    padding: 0;
    width: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-container {
    padding: 8px 15px;
    justify-content: space-between;
  }

  /* Logo - remove large margin */
  .brand-logo {
    margin-left: 0;
  }

  .logo-image {
    height: 35px;
    max-width: 140px;
  }

  .logo-link {
    padding: 6px 10px;
  }

  /* Primary nav - mobile slide-in menu */
  .primary-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #2c3e50 0%, #1a252f 100%);
    flex-direction: column;
    gap: 0;
    padding: 70px 0 30px 0;
    margin-right: 0;
    z-index: 1050;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  }

  .primary-nav.active {
    right: 0;
  }

  /* Nav links in mobile */
  .primary-nav .nav-link {
    color: #ecf0f1;
    padding: 14px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
    width: 100%;
    display: block;
  }

  .primary-nav .nav-link:hover {
    background: rgba(102, 126, 234, 0.2);
    color: #ffd700;
  }

  .primary-nav .nav-link::after {
    display: none;
  }

  /* Dropdown in mobile */
  .nav-dropdown {
    display: block;
    width: 100%;
  }

  .nav-dropdown .dropdown-toggle {
    display: block;
    width: 100%;
    padding: 14px 25px;
    color: #ecf0f1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
  }

  .nav-dropdown .dropdown-toggle::after {
    display: none;
  }

  /* Mega menu in mobile - collapse style */
  .mega-menu {
    position: static;
    width: 100%;
    max-width: 100%;
    transform: none;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, visibility 0.3s ease;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.15);
    flex-direction: column;
    border-radius: 0;
    display: flex;
  }

  .nav-dropdown:hover .mega-menu {
    transform: none;
  }

  .nav-dropdown.open .mega-menu {
    visibility: visible;
    max-height: 500px;
    padding: 10px 0;
  }

  .mega-menu-column {
    padding: 5px 25px;
    border-right: none;
    border-bottom: none;
    min-width: auto;
  }

  .mega-menu-title {
    color: #ffd700;
    font-size: 0.75rem;
    margin-bottom: 8px;
  }

  .mega-menu-link {
    color: #bdc3c7;
    padding: 6px 0;
    font-size: 0.85rem;
  }

  .mega-menu-link:hover {
    color: #fff;
    padding-left: 5px;
  }

  .mega-menu-promo {
    display: none;
  }

  /* Dropdown menu (non-mega) */
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    margin-top: 0;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.15);
  }

  /* Call button in mobile nav */
  .btn-call-nav {
    margin: 15px 25px;
    justify-content: center;
    width: calc(100% - 50px);
    padding: 12px;
    border-radius: 8px;
    font-size: 0.95rem;
  }

  /* Hero section - responsive */
  .hero-section {
    margin-top: 0;
  }

  .slider {
    height: auto;
  }

  .slide img {
    height: 250px;
    object-fit: cover;
  }

  .slide-text {
    font-size: 1.2rem;
    bottom: 15px;
  }

  .prev, .next {
    padding: 10px;
    font-size: 14px;
  }

  .dots-container {
    padding: 10px;
  }

  .dot {
    height: 8px;
    width: 8px;
    margin: 0 5px;
  }

  /* Services bar - vertical stack on mobile */
  .services-bar {
    flex-direction: column;
    gap: 0;
    padding: 15px;
    border-radius: 15px;
    margin: 15px 10px;
  }

  .services-bar .service-item {
    font-size: 0.9rem;
    padding: 12px 15px;
    border-right: none;
    border-bottom: 1px solid rgba(33, 150, 243, 0.2);
    width: 100%;
    text-align: center;
  }

  .services-bar .service-item:last-child {
    border-bottom: none;
  }

  /* Quote form - vertical stack & centered on mobile */
  .request-quote-section {
    padding: 25px 0;
  }

  .quote-title {
    font-size: 1.6rem;
    text-align: center;
  }

  .quote-subtitle {
    text-align: center;
    font-size: 1rem;
  }

  .quote-description {
    text-align: center;
    font-size: 0.9rem;
  }

  .quote-form {
    padding: 20px 15px;
    margin: 0 10px;
  }

  .quote-form-inner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .form-group {
    width: 100%;
    min-width: auto;
    text-align: center;
  }

  .form-group label {
    text-align: left;
    display: block;
  }

  .form-input,
  .form-select,
  .form-textarea {
    width: 100%;
  }

  .quote-submit-btn {
    width: 100%;
    max-width: 100%;
    margin: 10px 0 0;
  }

  /* Why choose section responsive */
  .why-choose-section {
    width: 95vw;
    margin: 0 2.5vw;
    padding: 50px 0;
  }

  .why-choose-container {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 25px;
  }

  .why-choose-content {
    grid-template-columns: 1fr;
  }

  .why-choose-image-section {
    margin-left: 0;
    height: 250px;
  }

  .why-choose-description-section {
    padding: 10px;
    text-align: center;
  }

  .description-content {
    align-items: center;
  }

  .heading-item h3 {
    font-size: 1.8rem;
    text-align: center;
  }

  .heading-item h4 {
    font-size: 1.2rem;
    text-align: center;
  }

  .features-grid h3 {
    text-align: center;
    margin: 15px 0 10px;
  }

  .feature-list li {
    text-align: center;
    padding-left: 0;
  }

  .features-list li {
    text-align: left;
    display: inline-block;
    width: 100%;
  }

  .view-more-btn {
    align-self: center;
    margin: 30px auto 0;
    width: fit-content;
  }

  /* Contact info - stack vertically and center on mobile */
  .map-contact-item {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 20px 15px !important;
    gap: 15px !important;
  }

  .map-contact-icon {
    margin-bottom: 5px;
  }

  .map-contact-text h4 {
    margin-bottom: 8px;
  }
}

/* Tablet breakpoint */
@media (max-width: 1024px) and (min-width: 769px) {
  .brand-logo {
    margin-left: 20px;
  }

  .primary-nav {
    gap: 10px;
    margin-right: 10px;
  }

  .nav-link {
    padding: 12px 8px;
    font-size: 0.85rem;
  }

  .header-social-links {
    margin-left: 20px;
  }

  .mega-menu {
    width: 600px;
  }

  .slide img {
    height: 400px;
  }
}

/* ====================
   GLOBAL SERVICE PAGE RESPONSIVENESS
   ==================== */
@media (max-width: 768px) {
  .service-hero {
    padding: 80px 20px !important;
    text-align: center !important;
  }
  
  .service-hero h1 {
    font-size: 2.2rem !important;
  }

  .service-hero p {
    font-size: 1.1rem !important;
    margin: 0 auto !important;
  }

  .service-intro {
    padding: 50px 20px !important;
    text-align: center !important;
  }

  .service-intro h2 {
    font-size: 1.8rem !important;
  }

  .service-details {
    padding: 40px 20px !important;
  }

  .features-grid, .tech-grid, .portfolio-grid, .svc-projects-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .cta-section {
    padding: 60px 20px !important;
    text-align: center !important;
  }

  .cta-buttons {
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
  }

  .cta-buttons .btn, .cta-buttons a {
    width: 100% !important;
    max-width: 300px !important;
    display: inline-block !important;
  }

  /* Form centering on service pages */
  .faq-layout .contact-container, .faq-column .contact-container {
    padding: 30px 20px !important;
    text-align: center !important;
    margin: 20px 0 !important;
  }

  .faq-layout .contact-form, .contact-form {
    grid-template-columns: 1fr !important;
  }

  .faq-layout .form-group label, .form-group label {
    text-align: center !important;
  }

  .faq-layout .submit-btn, .submit-btn {
    width: 100% !important;
  }
  
  .service-content {
    grid-template-columns: 1fr !important;
  }
  
  .service-sidebar {
    padding-top: 30px !important;
  }
}

