/* Everything Easy - IT Solutions Company Styles */

:root {
  --primary-color: #0066cc;
  --secondary-color: #ffc107;
  --dark-color: #212529;
  --light-color: #f8f9fa;
  --gradient-primary: linear-gradient(135deg, #0066cc 0%, #004499 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;

}

/* Custom Bootstrap Classes */
.bg-gradient-primary {
  background: var(--gradient-primary);
}

.text-primary {
  color: var(--primary-color) !important;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0052a3;
  border-color: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.btn-warning {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #000;
  font-weight: 600;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.btn-warning:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* Navbar Styles */
.navbar {
  background-color: #ffffff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color) !important;
  display: flex;
  align-items: center;
  gap: 3px;
  transition: all 0.3s ease;

}


.navbar-brand:hover {
  color: #0052a3 !important;
  transform: translateY(-2px);
}

.navbar-brand .navbar-logo {
  height: 40px !important; 
  width: auto !important;
  max-width: none !important;
  display: inline-block !important;
  vertical-align: middle !important;
  transition: transform 0.3s ease;
  margin-right: -10x;
}

.navbar-brand:hover .navbar-logo {
  transform: scale(1.05);
}

.navbar-nav {
  align-items: center;
}

.navbar-nav .nav-item {
  margin: 0 2px;
}

.navbar-nav .nav-link {
  color: #333 !important;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link.active {
  color: #000 !important;
  font-weight: 600;
}

.navbar-nav .btn-primary {
  margin-left: 10px;
  padding: 10px 24px !important;
  border-radius: 8px;
  font-size: 15px;
}

.navbar-toggler {
  border: none;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
  outline: none;
}

.navbar-toggler-icon {
  width: 24px;
  height: 24px;
}

/* Mobile Navbar */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav .nav-item {
    margin: 5px 0;
  }

  .navbar-nav .nav-link {
    padding: 12px 16px !important;
  }

  .navbar-nav .btn-primary {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }

  .navbar-brand {
    font-size: 20px;
    gap: 5px;
  }

  .navbar-brand .navbar-logo {
    height: 35px !important;
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 10px 0;
  }

  .navbar-brand {
    font-size: 18px;
    gap: 3px;
  }

  .navbar-brand .navbar-logo {
    height: 25px !important;
  }

  .navbar-nav .nav-link {
    font-size: 15px;
    padding: 10px 14px !important;
  }
}

@media (max-width: 375px) {
  .navbar-brand {
    font-size: 16px;
    gap: 2px;
  }

  .navbar-brand .navbar-logo {
    height: 28px !important;
  }

  .navbar-toggler {
    padding: 6px;
  }

  .navbar-toggler-icon {
    width: 20px;
    height: 20px;
  }
}


/* Hero Section */
.hero-section {
  background: var(--gradient-primary);
  color: white;
  padding-top: 120px !important;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  padding: 20px 0;
}

.hero-left {
  flex: 1;
  min-width: 0;
}

.hero-right {
  flex: 0 0 450px;
  max-width: 450px;
}

.hero-subtitle {
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-highlight {
  color: var(--secondary-color);
}

.hero-text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

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

.hero-btn-primary {
  background-color: var(--secondary-color);
  color: #212529;
}

.hero-btn-primary:hover {
  background-color: #ffb300;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.hero-btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.hero-btn-secondary:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.hero-form-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-form-wrapper {
  padding: 30px;
}

.hero-form-title {
  color: #1e3c72;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

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

.hero-input,
.hero-select,
.hero-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s ease;
}

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

.hero-textarea {
  resize: vertical;
  min-height: 60px;
}

.hero-submit-btn {
  width: 100%;
  padding: 12px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-submit-btn:hover {
  background-color: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.hero-form-result {
  margin-top: 15px;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  display: none;
}

.hero-form-result.show {
  display: block;
}

.hero-form-result.success {
  background-color: #d4edda;
  color: #155724;
}

.hero-form-result.error {
  background-color: #f8d7da;
  color: #721c24;
}

/* Stats Section */
.stats-section {
  background: white;
  padding: 40px 0;
  width: 100%;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.counter {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 10px 0;
}

.stat-label {
  color: #6c757d;
  font-size: 16px;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .hero-right {
    flex: 0 0 100%;
    max-width: 500px;
  }

  .hero-title {
    font-size: 40px;
  }

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

@media (max-width: 768px) {
  .hero-section {
    padding-top: 100px;
    height: auto;
    min-height: 100vh;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }

  .counter {
    font-size: 40px;
  }

  .stat-label {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 12px;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-form-wrapper {
    padding: 20px;
  }

  .hero-form-title {
    font-size: 20px;
  }

  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .counter {
    font-size: 32px;
  }

  .stat-item {
    padding: 15px 10px;
  }
}


.stat-item {
  padding: 2rem 1rem;
}

.counter {
  font-size: 3rem;
  line-height: 1;
}

/* Service Cards */
.service-card {
  transition: all 0.3s ease;
  border: none;
}

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

.service-icon i {
  transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
  transform: scale(1.1);
  color: var(--secondary-color) !important;
}

/* Background Gradients */
.bg-gradient-light {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

/* Pricing Section Enhanced */
.pricing-toggle-wrapper {
  border: 2px solid #e9ecef;
}

.pricing-toggle-wrapper .btn-check:checked + .btn {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.pricing-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  overflow: hidden;
}

.pricing-hover:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
}

.popular-plan {
  transform: scale(1.05);
  border: 3px solid #ffc107;
}

.popular-plan:hover {
  transform: scale(1.08) translateY(-10px);
}

.enterprise-plan:hover {
  box-shadow: 0 30px 60px rgba(0, 102, 204, 0.2) !important;
}

.popular-badge {
  z-index: 10;
  
}

.popular-badge .badge {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Pricing Icons */
.pricing-icon .icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.pricing-card:hover .icon-circle {
  transform: scale(1.1);
}

/* Price Display */
.price-section {
  position: relative;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  margin-right: 5px;
}

.price-amount {
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  margin-left: 5px;
}

.savings-badge {
  margin-top: 8px;
}

.price-yearly {
  animation: fadeIn 0.3s ease;
}

/* Feature List Enhancements */
.feature-check {
  width: 20px;
  text-align: center;
}

.feature-check i {
  font-size: 1.1rem;
}

/* Features Banner */
.features-banner {
  border: 1px solid #e9ecef;
}

.features-banner .feature-item {
  padding: 1rem;
}

.features-banner .feature-item i {
  margin-bottom: 0.5rem;
}

/* Guarantee Badge */
.guarantee-badge {
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

/* Pricing Button Enhancements */
.pricing-card .btn {
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.pricing-card:hover .btn::before {
  left: 100%;
}

/* New Pricing Section Styles */
.pricing-card-new {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  overflow: hidden;
  max-width: 320px;
  margin: 0 auto;
}

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

.pricing-popular {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0052a3 100%);
  transform: scale(1.02);
  border-color: var(--secondary-color);
}

.pricing-popular:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 102, 204, 0.25);
}

.popular-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.popular-badge .badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 15px;
  padding: 6px 12px;
}

/* Pricing Header */
.pricing-header {
  border-bottom: 1px solid #f1f3f4;
  padding: 1.5rem 1rem 1rem;
}

.pricing-popular .pricing-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background: rgba(0, 102, 204, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pricing-icon i {
  font-size: 1.3rem;
}

.pricing-popular .pricing-icon {
  background: rgba(255, 255, 255, 0.2);
}

.pricing-card-new:hover .pricing-icon {
  transform: scale(1.1);
}

.plan-name {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.plan-description {
  font-size: 0.85rem;
  color: #6c757d;
}

.pricing-popular .plan-description {
  color: rgba(255, 255, 255, 0.8);
}

/* Pricing Price */
.pricing-price {
  background: #f8f9fa;
  border-bottom: 1px solid #f1f3f4;
  padding: 1.5rem 1rem;
}

.pricing-popular .pricing-price {
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-right: 3px;
}

.amount {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-color);
}

.period {
  font-size: 1rem;
  font-weight: 500;
  color: #6c757d;
  margin-left: 3px;
}

.billing-cycle {
  color: #6c757d;
  font-size: 0.8rem;
}

.pricing-popular .billing-cycle {
  color: rgba(255, 255, 255, 0.7);
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 1rem;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  padding: 4px 0;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.feature-list i {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 2px;
  font-size: 0.9rem;
  min-width: 14px;
}

.feature-list li div {
  flex: 1;
}

.feature-list strong {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.feature-list small {
  color: #6c757d;
  font-size: 0.75rem;
  line-height: 1.3;
}

/* Pricing Footer */
.pricing-footer {
  background: #f8f9fa;
  border-top: 1px solid #f1f3f4;
  padding: 1.5rem 1rem;
}

.pricing-popular .pricing-footer {
  background: rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-footer .btn {
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

.pricing-footer .btn:hover {
  transform: scale(1.02);
}

.pricing-footer p {
  font-size: 0.75rem;
  margin-top: 0.75rem;
}

/* Trust Indicators */
.trust-indicators {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.trust-item {
  padding: 1rem;
  transition: all 0.3s ease;
}

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

.trust-item h6 {
  color: #2c3e50;
  margin-bottom: 5px;
}

.trust-item small {
  color: #6c757d;
}

/* Responsive Pricing Enhanced */
@media (max-width: 1199px) {
  .pricing-popular {
    transform: none;
    margin-top: 2rem;
  }

  .pricing-popular:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 991px) {
  .amount {
    font-size: 3rem;
  }

  .pricing-card-new {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .pricing-popular {
    margin-top: 1rem;
  }

  .amount {
    font-size: 2.5rem;
  }

  .currency {
    font-size: 1.2rem;
  }

  .period {
    font-size: 1rem;
  }

  .plan-name {
    font-size: 1.3rem;
  }

  .trust-indicators {
    margin-top: 2rem;
    padding: 1.5rem;
  }

  .trust-item {
    margin-bottom: 1rem;
  }
}

@media (max-width: 575px) {
  .pricing-card-new {
    margin: 0 1rem 2rem;
  }

  .amount {
    font-size: 2.2rem;
  }

  .pricing-icon {
    width: 60px;
    height: 60px;
  }

  .feature-list li {
    margin-bottom: 0.75rem;
  }
}

/* Process Section */
.process-number {
  width: 60px;
  height: 60px;
  font-size: 1.2rem;
}

.process-item {
  position: relative;
}

.process-item::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), transparent);
  z-index: -1;
}

.process-item:last-child::after {
  display: none;
}

/* Team Cards */
.team-card {
  transition: all 0.3s ease;
  border: none;
}

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

.team-img img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.social-links a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

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

/* Testimonial Cards */
.testimonial-card {
  transition: all 0.3s ease;
  border: none;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card p {
  flex-grow: 1;
}

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

.stars i {
  font-size: 0.9rem;
}

/* Contact Section */
.contact-info {
  padding: 2rem 1rem;
}

.contact-icon i {
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #212529 0%, #343a40 100%);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,200 1000,1000 0,800"/></svg>');
  background-size: cover;
}

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

.footer-about h5 {
  color: #fff;
  font-size: 1.5rem;
}

.footer-about p {
  color: #adb5bd;
  line-height: 1.6;
}

.footer-links h6 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
}

.footer-links h6::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
}

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

.footer-links ul li {
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.footer-links ul li a {
  color: #adb5bd;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links ul li a::before {
  content: "▶";
  position: absolute;
  left: -15px;
  color: var(--primary-color);
  font-size: 0.7rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary-color) !important;
  padding-left: 20px;
}

.footer-links ul li a:hover::before {
  opacity: 1;
  left: 0;
}

/* Footer Contact */
.footer-contact h6 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
}

.footer-contact h6::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
}

/* Footer Links - Mobile Center Alignment */
@media (max-width: 991px) {
  .footer-about,
  .footer-links,
  .footer-contact {
    text-align: center;
  }
  
  .footer-about h5,
  .footer-links h6,
  .footer-contact h6 {
    text-align: center;
  }
  
  .footer-links h6::after,
  .footer-contact h6::after {
    left: 50% !important;
    transform: translateX(-50%);
  }
  
  .footer-links ul li a::before {
    display: none;
  }
  
  .footer-links ul li a:hover {
    padding-left: 0;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .contact-item {
    justify-content: center;
    text-align: center;
    display: inline-flex !important;
  }
  
  .contact-item:hover {
    transform: none;
  }
}
}

.contact-item {
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-item i {
  color: var(--primary-color);
  width: 20px;
  text-align: center;
  margin-top: 3px;
}

.contact-item span {
  color: #adb5bd;
  transition: color 0.3s ease;
}

.contact-item:hover span {
  color: #fff;
}

/* Newsletter */
.newsletter h6 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.newsletter .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter .form-control {
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50px 0 0 50px;
  padding: 12px 20px;
}

.newsletter .form-control::placeholder {
  color: #adb5bd;
}

.newsletter .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  box-shadow: none;
  border-color: var(--primary-color);
}

.newsletter .btn {
  border-radius: 0 50px 50px 0;
  border: none;
  padding: 12px 20px;
  font-weight: 600;
}

.newsletter .btn:hover {
  background-color: #0052a3;
  transform: scale(1.05);
}

/* Social Links */
.social-links {
  margin-top: 1.5rem;
}

.social-links a {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #adb5bd;
  text-decoration: none;
  margin-right: 10px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-links a:hover {
  background: var(--primary-color);
  color: #fff !important;
  border-color: var(--primary-color);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.social-links a.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.social-links a.twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
  box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
}

.social-links a.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
  box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
}

.social-links a.instagram:hover {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  border-color: #f58529;
  box-shadow: 0 8px 25px rgba(245, 133, 41, 0.4);
}

/* Footer Bottom */
footer hr {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0 1.5rem;
}

footer .text-muted {
  color: #adb5bd !important;
}

footer .text-danger {
  color: #ff6b6b !important;
  animation: heartbeat 1.5s ease-in-out infinite;
}

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

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-links ul li a:hover {
    padding-left: 0;
  }

  .footer-links ul li a::before {
    display: none;
  }

  .social-links {
    text-align: center;
    margin-top: 1rem;
  }

  .newsletter {
    margin-top: 1.5rem;
  }
}

/* Accordion Styles */
.accordion-button {
  font-weight: 600;
  background-color: var(--light-color);
  border: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: white;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.25);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Responsive Design */

/* Extra Large Devices */
@media (max-width: 1399px) {
  .container {
    max-width: 1200px;
  }
}

/* Large Devices (Tablets) */
@media (max-width: 991px) {
  .display-4 {
    font-size: 2.8rem;
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-item {
    margin: 0.5rem 0;
  }
}

/* Medium Devices (Tablets) */
@media (max-width: 768px) {
  /* Navigation */
  .navbar {
    padding: 0.5rem 0;
  }

  .navbar-brand {
    font-size: 1.3rem;
  }

  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 0;
    font-size: 1.1rem;
  }

  .display-4 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .lead {
    font-size: 1.1rem;
  }

  /* About Section */
  .about-content,
  .choose-content {
    margin-bottom: 2rem;
    text-align: center;
  }

  .feature-item {
    justify-content: center;
    text-align: center;
    margin-bottom: 1.5rem;
  }

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

  .cta-box .d-flex {
    flex-direction: column;
    gap: 1rem;
  }

  /* Services Section */
  .service-card {
    margin-bottom: 2rem;
  }

  /* Process Section */
  .process-item::after {
    display: none;
  }

  .process-number {
    margin-bottom: 1rem;
  }

  /* Team Section */
  .team-card {
    margin-bottom: 2rem;
  }

  /* Testimonials */
  .testimonial-card {
    margin-bottom: 2rem;
  }

  /* Contact */
  .contact-info {
    text-align: center;
    margin-bottom: 2rem;
  }

  /* Quote Section */
  .quote-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .quote-form {
    margin-top: 2rem;
  }
}

/* Small Devices (Mobile) */
@media (max-width: 576px) {
  /* Typography */
  .display-4 {
    font-size: 2rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 1.8rem;
  }

  h5 {
    font-size: 1.1rem;
  }

  .lead {
    font-size: 1rem;
  }

  /* Buttons */
  .btn-lg {
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 600;
  }

  .btn {
    font-size: 1rem;
    min-height: 48px;
    border-radius: 8px;
  }
  
  /* Navigation */
  .navbar-brand {
    font-size: 1.2rem;
  }

  /* Cards */
  .service-card,
  .team-card,
  .testimonial-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  /* About Section */
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .feature-icon {
    margin-right: 0 !important;
    margin-bottom: 0.5rem;
  }

  /* Process */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  /* Contact Info */
  .contact-item {
    justify-content: center;
    text-align: center;
  }

  .contact-icon {
    margin-bottom: 0.5rem;
  }

  /* Forms */
  .quote-form .row .col-md-6 {
    margin-bottom: 1rem;
  }

  /* Spacing */
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .mb-5 {
    margin-bottom: 2rem !important;
  }

  .mt-5 {
    margin-top: 2rem !important;
  }
}

/* Extra Small Devices */
@media (max-width: 375px) {
  .container {
    padding: 0 1rem;
  }

  .display-4 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .btn-lg {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .service-card,
  .team-card,
  .testimonial-card {
    padding: 1rem;
  }

  .py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .display-4 {
    font-size: 2rem;
  }

  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}

/* Touch Device Optimizations */
@media (pointer: coarse) {
  .btn {
    min-height: 44px;
    min-width: 44px;
  }

  .nav-link {
    min-height: 44px;
  }

  .social-links a {
    width: 44px;
    height: 44px;
    line-height: 44px;
  }

  .navbar-toggler {
    min-height: 44px;
    min-width: 44px;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0052a3;
}

/* Additional Mobile Optimizations */
@media (max-width: 768px) {
  .py-5 {
    padding: 2.5rem 0 !important;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  h1,
  .display-4 {
    font-size: 2rem !important;
    line-height: 1.3;
  }

  h2 {
    font-size: 1.4rem !important;
    line-height: 1.4;
  }

  h3 {
    font-size: 1.2rem !important;
  }

  .lead {
    font-size: 1rem !important;
  }

  /* Service Cards */
  .service-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem !important;
  }

  .service-icon i {
    font-size: 2rem !important;
  }

  /* Process Items */
  .process-number {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.1rem !important;
  }

  /* Team Cards */
  .team-card img {
    width: 100px;
    height: 100px;
  }

  /* Contact Info */
  .contact-info {
    margin-bottom: 2rem;
    text-align: center;
  }

  .contact-icon i {
    font-size: 1.5rem !important;
  }

  /* Feature Items */
  .feature-item,
  .choose-item {
    margin-bottom: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .feature-icon,
  .choose-icon {
    margin-bottom: 0.5rem;
    margin-right: 0 !important;
  }

  /* About Features */
  .row.mb-4 .col-sm-6 {
    margin-bottom: 1rem;
  }

  /* Pricing Cards Mobile */
  .pricing-card-new {
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .trust-indicators .col-6 {
    margin-bottom: 1rem;
  }

  /* FAQ */
  .accordion-button {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }

  /* About Page Mobile Optimizations */
  .timeline-year {
    width: 50px !important;
    height: 50px !important;
    font-size: 0.85rem !important;
    margin-bottom: 1rem;
  }

  .timeline-item {
    margin-bottom: 2rem !important;
  }

  .timeline-content {
    padding-left: 0;
    margin-top: 1rem;
  }

  .timeline-content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .team-image {
    margin-bottom: 1.5rem;
  }

  .team-image img {
    width: 100px !important;
    height: 100px !important;
  }

  .value-card {
    margin-bottom: 2rem;
    padding: 1.5rem;
    text-align: center;
  }

  .value-icon {
    margin-bottom: 1rem;
  }

  .social-links {
    margin-top: 1rem;
  }

  .social-links a {
    margin: 0 0.5rem;
    font-size: 1.2rem;
  }

  /* Services Page Enhanced Mobile */
  .service-overview .col-md-6 {
    margin-bottom: 1.5rem;
  }

  .benefit-item {
    margin-bottom: 2rem;
    text-align: center;
  }

  .benefit-icon {
    margin-bottom: 1rem;
  }

  .icon-circle {
    padding: 0.75rem !important;
    margin: 0 auto 1rem;
  }

  .icon-circle i {
    font-size: 1.5rem !important;
  }

  .process-step {
    margin-bottom: 2rem;
    padding: 1rem;
  }

  .specialized-service {
    margin-bottom: 1.5rem;
  }

  .technology-item {
    margin-bottom: 1rem;
    text-align: center;
  }

  .technology-icon {
    margin-bottom: 0.75rem;
  }

  /* Enhanced Services Page Mobile */
  .service-detail-card {
    margin-bottom: 1.5rem;
  }

  .service-icon-large {
    margin-bottom: 1rem;
    text-align: center;
  }

  .tech-category {
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    background: #f8f9fa;
  }

  .tech-category h6 {
    color: #0066cc !important;
    margin-bottom: 1rem;
  }

  .tech-category ul li {
    padding: 0.25rem 0;
  }

  /* Service Benefits Mobile Enhancement */
  .benefit-item h6 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .benefit-item small {
    line-height: 1.4;
  }

  /* Process Steps Enhanced */
  .process-step {
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }

  .process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }
}

/* Modern Portfolio Page Styles */
.hero-portfolio {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 5rem 0 3rem;
  position: relative;
}

.hero-portfolio::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23000" fill-opacity="0.02"><circle cx="30" cy="30" r="1"/></g></svg>');
}

.min-vh-50 {
  min-height: 50vh;
}

.stats-row {
  border-left: 4px solid #0066cc;
  padding-left: 2rem;
  margin-left: 1rem;
}

.stat-item h3 {
  font-size: 2.5rem;
  line-height: 1;
}

.image-stack {
  position: relative;
  display: inline-block;
}

.portfolio-img-1 {
  position: relative;
  z-index: 2;
  border-radius: 20px !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.portfolio-img-2 {
  position: absolute;
  top: 50px;
  right: -50px;
  z-index: 1;
  width: 200px !important;
  height: auto !important;
  border-radius: 15px !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Filter Tabs */
.filter-tabs {
  background: white;
  border-radius: 50px;
  padding: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  display: inline-block;
  margin: 0 auto;
}

.filter-tab {
  border: none !important;
  border-radius: 30px !important;
  padding: 12px 24px !important;
  margin: 0 4px !important;
  background: transparent !important;
  color: #6c757d !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
}

.filter-tab:hover,
.filter-tab.active {
  background: linear-gradient(135deg, #0066cc, #004499) !important;
  color: white !important;
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3) !important;
  transform: translateY(-2px) !important;
}

/* Portfolio Masonry Grid */
.portfolio-masonry {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}

.project-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: fit-content;
  position: relative;
}

.project-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.featured-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.featured-card .project-overlay {
  background: rgba(0, 0, 0, 0.3) !important;
}

.project-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  background: #f8f9fa;
}

.featured-card .project-image {
  height: auto;
}

.project-image img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s ease;
  display: block;
}

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

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.9), rgba(255, 193, 7, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: all 0.4s ease;
  overflow: hidden;
}

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

.project-info {
  text-align: center;
  color: white;
  transform: translateY(30px);
  transition: transform 0.4s ease;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.project-card:hover .project-info {
  transform: translateY(0);
}

.project-category {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.project-title {
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.featured-card .project-title {
  font-size: 2rem;
}

.project-desc {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}

.project-tech {
  margin-bottom: 1.5rem;
}

.tech-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 500;
  margin: 0 4px 4px 0;
  backdrop-filter: blur(10px);
}

.project-links .btn {
  border-radius: 25px;
  padding: 8px 20px;
  font-weight: 500;
  text-decoration: none;
}

/* Load More Button */
#loadMore {
  border-radius: 30px;
  padding: 15px 40px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

#loadMore:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

/* Portfolio Item Animation */
.portfolio-item {
  opacity: 1;
  transform: scale(1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item.hide {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .project-card:hover {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  }
  
  .project-card:hover .project-image img {
    transform: none !important;
  }
  
  .project-overlay {
    opacity: 0.95 !important;
  }
  
  .project-info {
    transform: translateY(0) !important;
  }
  
  /* Add subtle tap feedback */
  .project-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
}

/* Touch device optimizations - Allow hover but optimize it */
@media (hover: none) and (pointer: coarse) {
  .project-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
  }
  
  .project-card:hover .project-image img {
    transform: scale(1.03) !important;
  }
  
  .project-overlay {
    opacity: 0 !important;
  }
  
  .project-card:hover .project-overlay {
    opacity: 1 !important;
  }
  
  .project-info {
    transform: translateY(20px) !important;
  }
  
  .project-card:hover .project-info {
    transform: translateY(0) !important;
  }
  
  /* Add tap feedback for better mobile interaction */
  .project-card:active {
    transform: scale(0.98) !important;
    transition: transform 0.1s ease !important;
  }
}

/* Touch device optimizations */\n@media (hover: none) and (pointer: coarse) {\n  .project-card:hover {\n    transform: none !important;\n  }\n  \n  .project-card:hover .project-image img {\n    transform: none !important;\n  }\n  \n  .project-overlay {\n    opacity: 0.95 !important;\n  }\n  \n  .project-info {\n    transform: translateY(0) !important;\n  }\n  \n  /* Add subtle tap feedback */\n  .project-card:active {\n    transform: scale(0.98);\n    transition: transform 0.1s ease;\n  }\n}\n\n/* Mobile Optimizations */
@media (max-width: 768px) {
  .hero-portfolio {
    padding: 3rem 0 2rem;
    text-align: center;
  }
  
  .image-stack {
    margin-top: 2rem;
  }
  
  .portfolio-img-2 {
    top: 30px;
    right: -30px;
    width: 150px !important;
  }
  
  .stats-row {
    justify-content: center;
    border-left: none;
    border-top: 4px solid #0066cc;
    padding-left: 0;
    padding-top: 1rem;
    margin-left: 0;
    margin-top: 2rem;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-item h3 {
    font-size: 2rem;
  }
  
  .filter-tabs {
    padding: 8px;
    border-radius: 25px;
  }
  
  .filter-tab {
    padding: 8px 16px !important;
    font-size: 0.9rem !important;
    margin: 2px !important;
  }
  
  /* Make images cover full card on mobile */
  .project-card {
    position: relative;
    min-height: 350px !important;
    overflow: hidden;
  }
  
  .featured-card {
    min-height: 400px !important;
  }
  
  .project-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 100% !important;
    width: 100% !important;
    min-height: auto !important;
    z-index: 1;
  }
  
  .project-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  
  .project-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 2 !important;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.85), rgba(0, 0, 0, 0.4)) !important;
  }

  .featured-card .project-image {
    height: 100% !important;
    min-height: auto !important;
  }

  .project-overlay {
    padding: 2rem !important;
    opacity: 0 !important;
  }
  
  /* Re-enable hover effects on mobile for better UX */
  .project-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
  }
  
  .project-card:hover .project-image img {
    transform: scale(1.05) !important;
  }
  
  .project-card:hover .project-overlay {
    opacity: 1 !important;
  }
  
  .project-info {
    transform: translateY(20px) !important;
  }
  
  .project-card:hover .project-info {
    transform: translateY(0) !important;
  }
  
  .project-title {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
    -webkit-line-clamp: 3 !important;
    line-height: 1.4 !important;
  }
  
  .featured-card .project-title {
    font-size: 1.8rem !important;
  }
  
  .project-desc {
    font-size: 1rem !important;
    -webkit-line-clamp: 4 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.6 !important;
  }
  
  .featured-card .project-title {
    font-size: 1.5rem;
  }
  
  .project-desc {
    font-size: 0.9rem;
  }
  
  .portfolio-masonry {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-portfolio {
    padding: 2rem 0;
  }
  
  .portfolio-img-2 {
    display: none;
  }
  
  .stats-row {
    flex-direction: column;
    gap: 1rem !important;
    text-align: center;
  }
  
  .filter-tabs {
    width: 100%;
    overflow-x: auto;
    padding: 5px;
  }
  
  .nav-pills {
    flex-wrap: nowrap;
    justify-content: flex-start !important;
  }
  
  .filter-tab {
    white-space: nowrap;
    padding: 6px 12px !important;
    font-size: 0.8rem !important;
  }
  
  /* Enhanced mobile background coverage */
  .project-card {
    position: relative;
    min-height: 220px !important;
    overflow: hidden;
  }
  
  .featured-card {
    min-height: 360px !important;
  }
  
  .project-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 100% !important;
    width: 100% !important;
    min-height: auto !important;
    z-index: 1;
  }
  
  .project-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  
  .project-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 2 !important;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.9), rgba(0, 0, 0, 0.5)) !important;
  }

  .featured-card .project-image {
    height: 100% !important;
    min-height: auto !important;
  }
  
  .project-overlay {
    padding: 1rem !important;
  }
  
  /* Enable hover effects on small screens */
  .project-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
  }
  
  .project-card:hover .project-overlay {
    opacity: 1 !important;
  }
  
  .project-info {
    transform: translateY(15px) !important;
  }
  
  .project-card:hover .project-info {
    transform: translateY(0) !important;
  }
  
  .project-title {
    font-size: 1rem !important;
    margin-bottom: 0.5rem !important;
    -webkit-line-clamp: 2 !important;
    line-height: 1.3 !important;
  }
  
  .featured-card .project-title {
    font-size: 1.2rem !important;
  }
  
  .project-desc {
    font-size: 0.8rem !important;
    -webkit-line-clamp: 3 !important;
    margin-bottom: 0.8rem !important;
    line-height: 1.4 !important;
  }
  
  .tech-tag {
    font-size: 0.65rem !important;
    padding: 4px 8px !important;
    margin: 0 3px 4px 0 !important;
  }
  
  .project-category {
    font-size: 0.7rem !important;
    margin-bottom: 0.4rem !important;
  }
  
  .project-links .btn {
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
    margin: 0 4px !important;
  }  .project-overlay {
    padding: 1rem;
  }
  
  .project-links .btn {
    padding: 6px 16px;
    font-size: 0.8rem;
  }
  
  #loadMore {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}
}

/* Extra Small Mobile Screens */
@media (max-width: 576px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .py-5 {
    padding: 2rem 0 !important;
  }

  .mb-5 {
    margin-bottom: 2rem !important;
  }

  .mb-4 {
    margin-bottom: 1.5rem !important;
  }

  h1, .display-4 {
    font-size: 1.75rem !important;
  }

  h2 {
    font-size: 1.3rem !important;
  }

  h5 {
    font-size: 1rem !important;
  }

  .navbar-brand {
    font-size: 1rem;
  }

  .card-body {
    padding: 1rem !important;
  }
  
  /* Portfolio mobile optimizations */
  .project-card {
    min-height: 200px !important;
  }
  
  .project-overlay {
    padding: 0.8rem !important;
  }
  
  .project-title {
    font-size: 0.9rem !important;
    margin-bottom: 0.4rem !important;
    -webkit-line-clamp: 2 !important;
  }
  
  .project-desc {
    font-size: 0.75rem !important;
    -webkit-line-clamp: 2 !important;
    margin-bottom: 0.6rem !important;
    line-height: 1.3 !important;
  }
  
  .tech-tag {
    font-size: 0.6rem !important;
    padding: 3px 6px !important;
    margin: 0 2px 3px 0 !important;
  }
  
  .project-category {
    font-size: 0.65rem !important;
    margin-bottom: 0.3rem !important;
  }

  /* About Page Small Mobile */
  .timeline-year {
    width: 40px !important;
    height: 40px !important;
    font-size: 0.75rem !important;
  }

  .timeline-content {
    margin-top: 0.5rem;
  }

  .team-image img {
    width: 80px !important;
    height: 80px !important;
  }

  .value-card {
    padding: 1rem;
  }

  /* Services Page Small Mobile */
  .process-number {
    width: 35px !important;
    height: 35px !important;
    font-size: 0.9rem !important;
  }

  .icon-circle {
    padding: 0.5rem !important;
    width: 50px;
    height: 50px;
  }

  .icon-circle i {
    font-size: 1.2rem !important;
  }

  .benefit-item h6 {
    font-size: 0.95rem;
  }

  .process-step h6 {
    font-size: 0.95rem;
  }

  .service-card h5 {
    font-size: 1rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  /* Footer */
  .footer-about,
  .footer-links,
  .footer-contact {
    margin-bottom: 2rem;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
  .hero-section .display-4 {
    font-size: 1.8rem !important;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    margin: 0 !important;
  }

  .stats-section .col-6 {
    margin-bottom: 1rem;
  }

  .stats-section h2 {
    font-size: 1.8rem !important;
  }

  .quote-form {
    margin-top: 2rem;
  }

  .pricing-card-new {
    max-width: 100%;
  }

  .feature-item {
    text-align: left;
    flex-direction: row;
  }

  .feature-icon {
    margin-right: 1rem !important;
    margin-bottom: 0;
  }
}

/* Navigation Mobile */
@media (max-width: 991px) {
  .navbar-brand {
    font-size: 1.2rem;
  }

  .navbar-nav {
    text-align: center;
    padding-top: 1rem;
  }

  .navbar-nav .nav-item {
    margin: 0.3rem 0;
  }

  .navbar-nav .btn {
    margin-top: 0.5rem;
    width: auto;
    display: inline-block;
  }
}

/* About Page Specific Styles */
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}

.timeline {
  position: relative;
}

.timeline-year {
  width: 60px;
  height: 60px;
  font-size: 0.9rem;
  font-weight: 600;
}

.timeline-content {
  padding-left: 1rem;
}

.award-icon {
  transition: transform 0.3s ease;
}

.award-icon:hover {
  transform: scale(1.1);
}

/* About Page Timeline Mobile */
@media (max-width: 768px) {
  .timeline-year {
    width: 50px;
    height: 50px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .timeline-content {
    padding-left: 0;
    text-align: center;
  }

  .timeline-item {
    text-align: center;
  }
}

/* Services Page Specific Styles */
.service-detail-card {
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
  border-color: var(--primary-color);
}

.service-icon-large {
  min-width: 80px;
}

.icon-circle {
  width: 60px;
  height: 60px;
  transition: all 0.3s ease;
}

.service-detail-card:hover .icon-circle {
  transform: scale(1.1);
}

.stat-card {
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 102, 204, 0.1);
}

.tech-category h6 {
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

.tech-category ul li {
  transition: color 0.3s ease;
}

.tech-category ul li:hover {
  color: var(--primary-color) !important;
}

.benefit-item {
  transition: transform 0.3s ease;
}

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

.process-step {
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-10px);
}

.process-number {
  width: 60px;
  height: 60px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.process-step:hover .process-number {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

/* Enhanced Service Cards */
.service-card {
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 102, 204, 0.15);
  border-color: var(--primary-color);
}

/* Services Page Mobile Optimizations */
@media (max-width: 768px) {
  .service-detail-card .d-flex {
    flex-direction: column;
    text-align: center;
  }
  
  .service-icon-large {
    margin-bottom: 1rem;
    margin-right: 0 !important;
  }
  
  .icon-circle {
    margin: 0 auto;
  }
  
  .tech-category {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-buttons .btn {
    width: 100%;
    margin: 0 !important;
  }
  
  .stat-card {
    margin-bottom: 1rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
}

/* ===========================
   CONTACT PAGE STYLES
   =========================== */

/* Contact Info Cards */
.contact-info-card {
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15) !important;
  border-color: var(--primary-color);
}

.contact-icon {
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon i {
  transform: scale(1.1);
  color: var(--primary-color);
}

/* Contact Form Styles */
.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.1);
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Hero Stats */
.hero-stats .stat-item {
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-stats .stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

/* Business Hours */
.hours-list .border-bottom {
  border-color: #dee2e6 !important;
}

/* Social Links Large */
.social-links-large .btn {
  border-radius: 25px;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.social-links-large .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 102, 204, 0.2);
}

/* Map Container */
.map-container {
  overflow: hidden;
  border: 3px solid #e9ecef;
  transition: all 0.3s ease;
}

.map-container:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

/* FAQ Accordion */
.accordion-item {
  border: 2px solid #e9ecef;
  border-radius: 10px !important;
  margin-bottom: 15px;
}

.accordion-button {
  font-weight: 600;
  border-radius: 10px !important;
  padding: 20px;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.25);
}

/* Quick Contact Section */
.quick-contact-section {
  background: var(--gradient-primary);
}

/* Form Validation Styles */
.was-validated .form-control:valid {
  border-color: #28a745;
}

.was-validated .form-control:invalid {
  border-color: #dc3545;
}

.was-validated .form-select:valid {
  border-color: #28a745;
}

.was-validated .form-select:invalid {
  border-color: #dc3545;
}

/* Contact Page Mobile Optimizations */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0 40px;
  }
  
  .hero-section .display-4 {
    font-size: 2.5rem;
  }
  
  .contact-info-card {
    margin-bottom: 20px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .contact-form .form-control,
  .contact-form .form-select {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 15px;
  }
  
  .hero-stats .row > div {
    margin-bottom: 15px;
  }
  
  .social-links-large .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .quick-contact-section .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .map-container {
    height: 300px !important;
  }
  
  .accordion-button {
    padding: 15px;
    font-size: 0.9rem;
  }
  
  .contact-icon i {
    font-size: 2rem !important;
  }
}

/* Portfolio Filter Mobile & Desktop Optimization */
.filter-tabs .nav-link {
  padding: 10px 16px;
  margin: 0 5px 10px 5px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 0.95rem;
  white-space: nowrap;
}

.filter-tabs .nav-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}

.filter-tabs .nav-link.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.filter-tabs .nav-link i {
  font-size: 0.9rem;
}

/* Mobile Optimizations for Filter Tabs */
@media (max-width: 767.98px) {
  .filter-tabs .nav {
    justify-content: flex-start !important;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap !important;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
  }
  
  .filter-tabs .nav-link {
    flex-shrink: 0;
    padding: 12px 18px;
    margin: 0 8px 0 0;
    font-size: 0.9rem;
    min-width: fit-content;
  }
  
  .filter-tabs .nav-link:last-child {
    margin-right: 20px; /* Extra margin for better scrolling */
  }
  
  /* Hide scrollbar but keep functionality */
  .filter-tabs .nav::-webkit-scrollbar {
    display: none;
  }
  
  .filter-tabs .nav {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

@media (max-width: 575.98px) {
  .filter-tabs .nav-link {
    padding: 10px 14px;
    font-size: 0.85rem;
    margin: 0 6px 0 0;
  }
  
  .filter-tabs .nav-link i {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .hero-section .lead {
    font-size: 1rem;
  }
  
  .contact-form .row .col-md-6 {
    margin-bottom: 15px;
  }
  
  .hero-stats .stat-item {
    padding: 15px;
  }
  
  .contact-info-card {
    padding: 20px !important;
  }
}

/* Touch Device Optimizations for Contact */
@media (hover: none) and (pointer: coarse) {
  .contact-info-card:hover {
    transform: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
  }
  
  .contact-form .form-control,
  .contact-form .form-select {
    font-size: 16px; /* Prevents zoom on touch devices */
  }
  
  .social-links-large .btn:hover {
    transform: none;
  }
}

/* High DPI Display Optimization */
@media (-webkit-min-device-pixel-ratio: 2),
       (min-resolution: 192dpi) {
  .contact-icon i {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}



      .service-hero {
        background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
        padding: 150px 0 60px;
        position: relative;
        overflow: hidden;
        height: 107.5vh;
        display: flex;
        align-items: center;
      }

      .service-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(
            circle at 20% 50%,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 80% 80%,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%
          );
        opacity: 0.5;
      }

      .service-hero::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 60px;
        background: white;
        /* clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%); */
      }

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

      .service-hero h5 {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #ffc107;
        margin-bottom: 15px;
      }

      .service-hero h1 {
        font-size: 36px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 20px;
        color: white;
      }

      .service-hero .lead {
        font-size: 15px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 20px;
      }

      .cta-buttons {
        margin-top: 25px;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
      }

      .cta-buttons .btn {
        padding: 12px 28px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
        border: 2px solid transparent;
      }

      .cta-buttons .btn-warning {
        background: #ffc107;
        color: #000;
        box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
      }

      .cta-buttons .btn-warning:hover {
        background: #ffcd39;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
      }

      .cta-buttons .btn-outline-light {
        border-color: white;
        color: white;
      }

      .cta-buttons .btn-outline-light:hover {
        background: white;
        color: #1e3c72;
        transform: translateY(-3px);
      }

      .case-study-section {
        background: #f8f9fa;
        padding: 100px 0;
      }

      .case-study-section h2 {
        font-size: 38px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #212529;
      }

      .case-study-section .lead {
        font-size: 18px;
        color: #6c757d;
        max-width: 900px;
        margin: 0 auto 60px;
      }

      .case-study-card {
        background: white;
        border-radius: 20px;
        padding: 40px;
        margin-bottom: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
      }

      .case-study-card:hover {
        transform: translateY(-10px);
      }

      .case-study-card .client-logo {
        width: 150px;
        height: 80px;
        object-fit: contain;
        margin-bottom: 20px;
      }

      .results-table {
        width: 100%;
        margin-top: 20px;
      }

      .results-table th,
      .results-table td {
        padding: 12px;
        text-align: left;
        border-bottom: 1px solid #e0e0e0;
      }

      .results-table th {
        background: #0066cc;
        color: white;
        font-weight: 600;
      }

      .badge-success {
        background: #28a745;
        color: white;
        padding: 4px 10px;
        border-radius: 12px;
        font-size: 12px;
      }

      .how-we-help {
        padding: 80px 0;
        background: white;
      }

      .help-card {
        text-align: center;
        padding: 40px 30px;
        border-radius: 15px;
        background: white;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        margin-bottom: 30px;
        transition: all 0.3s ease;
      }

      .help-card:hover {
        box-shadow: 0 10px 40px rgba(0, 102, 204, 0.2);
        transform: translateY(-8px);
        background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
      }

      .help-card i {
        font-size: 65px;
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 25px;
        display: inline-block;
      }

      .help-card h6 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 18px;
        color: #212529;
      }

      .help-card p {
        font-size: 15px;
        color: #6c757d;
        line-height: 1.9;
        margin: 0;
      }

      .why-choose {
        background: #f8f9fa;
        padding: 100px 0;
      }

      .why-choose h2 {
        font-size: 38px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #212529;
      }

      .why-choose .lead {
        font-size: 18px;
        color: #6c757d;
        max-width: 900px;
        margin: 0 auto 60px;
      }

      .choose-card {
        background: white;
        padding: 35px 30px;
        border-radius: 20px;
        margin-bottom: 25px;
        border-left: 5px solid #1e3c72;
        transition: all 0.4s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      }

      .choose-card:hover {
        box-shadow: 0 15px 40px rgba(30, 60, 114, 0.15);
        transform: translateX(12px);
        border-left-color: #ffc107;
      }

      .choose-card h5 {
        color: #1e3c72;
        font-weight: 700;
        margin-bottom: 18px;
        font-size: 20px;
      }

      .choose-card h5 i {
        margin-right: 12px;
        color: #ffc107;
      }

      .choose-card p {
        color: #6c757d;
        line-height: 1.8;
        margin: 0;
        font-size: 15px;
      }

      .boost-cta {
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        padding: 100px 0;
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .boost-cta::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(
            circle at 30% 50%,
            rgba(255, 193, 7, 0.1) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 70% 50%,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%
          );
      }

      .boost-cta .container {
        position: relative;
        z-index: 1;
      }

      .boost-cta h2 {
        font-size: 44px;
        font-weight: 800;
        margin-bottom: 25px;
        line-height: 1.3;
      }

      .boost-cta p {
        font-size: 19px;
        margin-bottom: 40px;
        max-width: 850px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.95);
      }

      .boost-cta .btn {
        padding: 16px 40px;
        font-size: 17px;
        font-weight: 600;
        border-radius: 50px;
        margin: 0 10px 15px;
      }

      .faq-section {
        padding: 100px 0;
        background: white;
      }

      .faq-section h2 {
        font-size: 38px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #212529;
      }

      .faq-section .lead {
        font-size: 18px;
        color: #6c757d;
        max-width: 900px;
        margin: 0 auto 60px;
      }

      .faq-item {
        background: #f8f9fa;
        border-radius: 15px;
        padding: 25px 30px;
        margin-bottom: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
      }

      .faq-item:hover {
        background: white;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        border-color: #e9ecef;
      }

      .faq-item.active {
        background: white;
        border-color: #1e3c72;
        box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
      }

      .faq-item h6 {
        font-weight: 700;
        color: #212529;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 17px;
      }

      .faq-item.active h6 {
        color: #1e3c72;
      }

      .faq-item h6 i {
        font-size: 16px;
        transition: transform 0.3s ease;
        color: #1e3c72;
        flex-shrink: 0;
        margin-left: 15px;
      }

      .faq-item.active h6 i {
        transform: rotate(180deg);
      }

      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        padding-top: 0;
      }

      .faq-item.active .faq-answer {
        max-height: 600px;
        padding-top: 20px;
      }

      .faq-answer p {
        color: #6c757d;
        line-height: 1.9;
        margin: 0;
        font-size: 15px;
      }

      .specialized-services {
        padding: 100px 0;
        background: #f8f9fa;
      }

      .specialized-services h2 {
        font-size: 38px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #212529;
      }

      .specialized-services .lead {
        font-size: 18px;
        color: #6c757d;
        margin-bottom: 50px;
      }

      .service-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 25px;
        margin-top: 50px;
      }

      .service-card-item {
        background: white;
        border-radius: 18px;
        padding: 35px 25px;
        text-align: center;
        transition: all 0.4s ease;
        text-decoration: none;
        color: inherit;
        display: block;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
        border: 2px solid transparent;
      }

      .service-card-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(30, 60, 114, 0.15);
        color: inherit;
        border-color: #1e3c72;
      }

      .service-card-item i {
        font-size: 55px;
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 20px;
        display: inline-block;
      }

      .service-card-item h6 {
        font-size: 17px;
        font-weight: 600;
        color: #212529;
        margin: 0;
        line-height: 1.4;
      }

      @media (max-width: 992px) {
        .service-hero {
          padding: 140px 0 80px;
          height: auto !important;
          min-height: auto !important;
          display: block !important;
        }

        .service-hero h1 {
          font-size: 38px;
        }

        .metric-box::after {
          display: none;
        }

        .help-card,
        .choose-card {
          margin-bottom: 20px;
        }

        .case-study-card {
          margin-bottom: 25px;
        }
      }

      @media (max-width: 768px) {
        .service-hero {
          padding: 160px 0 50px;
          min-height: auto !important;
          height: auto !important;
        }

        .service-hero h5 {
          font-size: 11px;
          letter-spacing: 1.5px;
          margin-bottom: 12px;
        }

        .service-hero h1 {
          font-size: 26px !important;
          line-height: 1.3;
          margin-bottom: 16px !important;
        }

        .service-hero .lead {
          font-size: 14px;
          line-height: 1.7;
          margin-bottom: 20px !important;
        }

        .service-hero .cta-buttons {
          flex-direction: column;
          gap: 12px;
          margin-top: 20px;
        }

        .service-hero .cta-buttons .btn {
          width: 100%;
          padding: 14px 24px;
          font-size: 15px;
        }

        .service-hero .card {
          margin-top: 35px;
          border-radius: 15px !important;
          max-width: 100%;
          width: 100%;
          margin-left: auto;
          margin-right: auto;
          overflow: hidden;
        }

        .service-hero .card-body {
          padding: 30px 20px !important;
          width: 100%;
          box-sizing: border-box;
        }

        .service-hero form {
          width: 100%;
        }

        .service-hero .form-control,
        .service-hero .form-select {
          width: 100% !important;
          box-sizing: border-box !important;
        }

        .service-hero .card h4 {
          font-size: 20px !important;
          margin-bottom: 25px !important;
        }

        .hero-features {
          padding: 25px 20px;
          margin-top: 40px;
        }

        .metrics-section {
          padding: 40px 0;
        }

        .metric-box {
          margin-bottom: 25px;
          padding: 25px 15px;
        }

        .metric-box h2 {
          font-size: 38px;
        }

        .metric-box p {
          font-size: 14px;
        }

        .case-study-section,
        .how-we-help,
        .why-choose,
        .faq-section,
        .specialized-services {
          padding: 50px 0;
        }

        .case-study-section h2,
        .how-we-help h2,
        .why-choose h2,
        .faq-section h2,
        .specialized-services h2 {
          font-size: 26px;
          margin-bottom: 30px;
        }

        .case-study-card {
          margin-bottom: 25px;
        }

        .case-study-card h4 {
          font-size: 18px;
        }

        .case-study-card .table {
          font-size: 13px;
        }

        .help-card,
        .choose-card {
          margin-bottom: 20px;
          padding: 25px;
        }

        .help-card i {
          font-size: 38px;
        }

        .help-card h4,
        .choose-card h4 {
          font-size: 18px;
          margin-top: 15px;
        }

        .help-card p,
        .choose-card p {
          font-size: 14px;
        }

        .boost-cta {
          padding: 50px 0;
        }

        .boost-cta h2 {
          font-size: 26px;
          margin-bottom: 15px;
        }

        .boost-cta p {
          font-size: 15px;
          margin-bottom: 25px;
        }

        .boost-cta .btn {
          padding: 12px 30px;
          font-size: 15px;
        }

        .faq-item {
          margin-bottom: 15px;
        }

        .faq-question {
          font-size: 15px;
          padding: 18px 45px 18px 20px;
        }

        .faq-answer {
          padding: 15px 20px;
          font-size: 14px;
        }

        .service-grid {
          grid-template-columns: 1fr;
          gap: 15px;
        }

        .service-card-item {
          padding: 20px;
        }

        .service-card-item i {
          font-size: 42px;
        }

        .service-card-item h6 {
          font-size: 15px;
        }

        .comprehensive-content {
          padding: 50px 0;
        }

        .comprehensive-content h2 {
          font-size: 26px;
        }

      @media (max-width: 576px) {
        .service-hero {
          padding: 150px 0 40px;
          height: auto !important;
        }

        .service-hero h5 {
          font-size: 10px;
          letter-spacing: 1px;
          margin-bottom: 10px;
        }

        .service-hero h1 {
          font-size: 22px !important;
          line-height: 1.4;
          margin-bottom: 14px !important;
        }

        .service-hero .lead {
          font-size: 13px;
          line-height: 1.6;
          margin-bottom: 18px !important;
        }

        .service-hero .cta-buttons {
          margin-top: 18px;
          gap: 10px;
        }

        .service-hero .cta-buttons .btn {
          padding: 12px 20px;
          font-size: 14px;
        }

        .service-hero .card {
          margin-top: 30px;
          border-radius: 12px !important;
          max-width: 100%;
          margin-left: auto;
          margin-right: auto;
        }

        .service-hero .card-body {
          padding: 20px 15px !important;
        }

        .service-hero .card h4 {
          font-size: 18px !important;
          margin-bottom: 20px !important;
        }

        .form-control-lg {
          font-size: 14px !important;
          padding: 11px 14px !important;
          border-radius: 8px !important;
        }

        .form-select-lg {
          font-size: 14px !important;
          padding: 11px 14px !important;
          border-radius: 8px !important;
        }

        .service-hero .card .btn-primary {
          padding: 12px 20px !important;
          font-size: 15px !important;
        }

        .service-hero .card h4 {
          font-size: 18px !important;
        }

        .form-control-lg {
          font-size: 14px !important;
          padding: 10px 15px !important;
        }

        .form-select-lg {
          font-size: 14px !important;
          padding: 10px 15px !important;
        }

        .metric-box {
          padding: 20px 15px;
        }

        .metric-box h2 {
          font-size: 32px;
        }

        .metric-box p {
          font-size: 13px;
        }

        .case-study-section h2,
        .how-we-help h2,
        .why-choose h2,
        .faq-section h2,
        .specialized-services h2 {
          font-size: 22px;
        }

        .help-card,
        .choose-card {
          padding: 20px;
        }

        .help-card i {
          font-size: 32px;
        }

        .help-card h4,
        .choose-card h4 {
          font-size: 16px;
        }

        .boost-cta h2 {
          font-size: 22px;
        }

        .faq-question {
          font-size: 14px;
          padding: 15px 40px 15px 15px;
        }

      @media (max-width: 400px) {
        .service-hero {
          padding: 140px 0 35px;
        }

        .service-hero h5 {
          font-size: 9px;
        }

        .service-hero h1 {
          font-size: 20px !important;
          line-height: 1.35;
          margin-bottom: 12px !important;
        }

        .service-hero .lead {
          font-size: 12px;
          line-height: 1.6;
          margin-bottom: 16px !important;
        }

        .service-hero .cta-buttons .btn {
          font-size: 13px;
          padding: 11px 18px;
        }

        .service-hero .card {
          margin-top: 25px;
          max-width: 100%;
          margin-left: auto;
          margin-right: auto;
        }

        .service-hero .card-body {
          padding: 18px 12px !important;
        }

        .service-hero .card h4 {
          font-size: 16px !important;
          margin-bottom: 18px !important;
        }

        .form-control-lg,
        .form-select-lg {
          font-size: 13px !important;
          padding: 10px 12px !important;
        }

        .service-hero .card .btn-primary {
          padding: 11px 18px !important;
          font-size: 14px !important;
        }
        .service-card-item i {
          font-size: 36px;
        }

        .comprehensive-content h2 {
          font-size: 22px;
        }

        .comprehensive-content h3 {
          font-size: 18px;
        }

        .comprehensive-content h4 {
          font-size: 16px;
        }
      }

      @media (max-width: 400px) {
        .service-hero h1 {
          font-size: 22px !important;
        }

        .service-hero .cta-buttons .btn {
          font-size: 14px;
          padding: 10px 16px;
        }

        .metric-box h2 {
          font-size: 28px;
        }

        .case-study-section h2,
        .how-we-help h2,
        .why-choose h2,
        .faq-section h2,
        .specialized-services h2,
        .boost-cta h2 {
          font-size: 20px;
        }

        .help-card h4,
        .choose-card h4 {
          font-size: 15px;
        }
      }

/* Page Header - Blog and other pages */
.page-header {
  padding-top: 150px !important;
}

@media (max-width: 768px) {
  .page-header {
    padding-top: 130px !important;
  }
}

/* Blog Styles */
.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.blog-card .blog-image {
  flex-shrink: 0;
}

.blog-card .blog-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-card .blog-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card .blog-content .blog-meta {
  flex-shrink: 0;
}

.blog-card .blog-content .blog-title {
  flex-shrink: 0;
}

.blog-card .blog-content > p {
  flex-grow: 1;
  margin-bottom: 0 !important;
}

.blog-card .blog-content .btn {
  margin-top: 1rem;
  align-self: flex-start;
}

.blog-card .blog-title a {
  text-decoration: none;
  color: #1e3c72;
  transition: color 0.3s ease;
}

.blog-card .blog-title a:hover {
  color: #0066cc;
}

.blog-meta span {
  font-size: 14px;
}

.blog-detail-header {
  margin-top: 100px;
}

.blog-featured-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

.blog-detail-content {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.blog-detail-content h3,
.blog-detail-content h4 {
  color: #1e3c72;
  margin-top: 30px;
}

.blog-detail-content p {
  margin-bottom: 20px;
}

.blog-share .share-buttons a {
  text-decoration: none;
}

.related-posts .blog-card img {
  height: 200px;
}

@media (max-width: 768px) {
  .blog-card .blog-image img {
    height: 200px;
  }

  .blog-detail-content {
    font-size: 16px;
  }
}
/* Navigation Styles */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.navbar-nav .nav-link {
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link.active {
  color: #000 !important;
  font-weight: 600;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
  background-size: cover;
}

/* Dynamic height for hero section */
.dynamic-height {
  min-height: calc(100vh - 70px); /* Standard navbar height */
  display: flex;
  align-items: center;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .hero-section {
    padding-top: 80px;
    text-align: center;
  }
  
  .dynamic-height {
    min-height: calc(100vh - 70px); /* Smaller navbar on mobile */
  }
}

@media (max-width: 576px) {
  .dynamic-height {
    min-height: calc(100vh - 65px); /* Extra small screens */
  }

  .hero-section .display-4 {
    font-size: 2rem !important;
    line-height: 1.3;
  }

  .hero-section .lead {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    margin: 0 !important;
  }

  .stats-section .row {
    text-align: center;
  }

  .stats-section .col-6 {
    margin-bottom: 1rem;
  }
}

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

.hero-image img {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}