:root {
  --primary-color: #3498db;
  --secondary-color: #8e44ad;
  --accent-color: #f1c40f;
  --background-color: #f8f9fa;
  --text-color: #333;
  --white: #ffffff;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
}

.navbar, .footer {
  background-color: #2c3e50;
  color: var(--white);
}

    .hero-section {
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      color: var(--white);
      padding: 100px 0;
    }

    .icon-headline {
      font-size: 70px;
      color: var(--accent-color);
    }

    .feature-icon {
      font-size: 40px;
      color: var(--primary-color);
    }

       .pricing-card {
            transition: all 0.3s;
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .premium-card {
            background: linear-gradient(135deg, #007bff, #00a8ff);
            color: white;
        }
        
        .recommended-badge {
            position: absolute;
            top: 15px;
            right: -30px;
            background: #28a745;
            color: white;
            padding: 5px 30px;
            transform: rotate(45deg);
            font-size: 12px;
        }
        
       	 .feature-icon-card {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
        } 

    .testimonial-slider {
      background-color: #ecf0f1;
      padding: 50px 0;
    }

    .footer {
      padding: 20px 0;
      position: relative;
    }

    .back-to-top {
      position: fixed;
      bottom: 80px;
      right: 20px;
      display: none;
      z-index: 1000;
    }

    .contact-form {
      background-color: var(--white);
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      margin: 20px auto;
      max-width: 600px;
    }

    .contact-form h2 {
      margin-bottom: 20px;
      text-align: center;
    }

    .portfolio-img {
      cursor: pointer;
      transition: transform 0.3s ease;
    }

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

    .accordion-button:focus {
      box-shadow: none;
    }

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

    .progress {
      height: 25px;
      border-radius: 12px;
      overflow: hidden;
    }

    .progress-bar {
      font-size: 14px;
      font-weight: bold;
    }

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

    .fa-star {
      color: #ffea03;
      font-size: 24px;
      transition: all 0.3s ease;
    }

    .fa-star:hover {
      transform: scale(1.2);
      text-shadow: 0 0 20px rgba(52, 152, 219, 1);
    }

    hr {
      border: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--primary-color), #fc0349);
      border-radius: 10px;
    }

    .info-box {
      background-color: var(--white);
      padding: 20px;
      border-radius: 10px;
      border: 2px solid var(--primary-color);
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      max-width: 600px;
      margin: 0 auto;
    }

    .info-box h3 {
      margin-bottom: 15px;
      color: var(--primary-color);
    }

    .info-box p {
      font-size: 16px;
      margin-bottom: 10px;
    }

    .small-text {
      font-size: 12px;
      color: #6c757d;
      margin-top: 10px;
      text-align: center;
    }

    .logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      padding: 20px;
      background-color: var(--background-color);
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 15px;
      background-color: var(--white);
      border-radius: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .logo-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

    .logo-item img {
      max-width: 100%;
      height: auto;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
    }

    .logo-item:hover img {
      filter: grayscale(0%);
    }
    
	.card-header {
	  overflow: hidden;
	}
	.privacy-policy {
		  background-color: #fff;
		  padding: 30px;
		  border-radius: 10px;
		  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
		  max-width: 800px;
		  margin: 50px auto;
		}
		.privacy-policy h1 {
		  text-align: center;
		  margin-bottom: 20px;
		  padding-bottom:10px;
		}
		.backto{
		  text-align: center;
		  margin-bottom: 20px;
		  font-size: 35px;
		  font-weight:bold;
		  padding-bottom: 20px;
		}
		.privacy-policy h2 {
		  margin-top: 30px;
		  margin-bottom: 15px;
		  color: #3498db;
		}
		.privacy-policy p {
		  font-size: 16px;
		  line-height: 1.6;
		}
		.privacy-policy a {
		  color: #3498db;
		  text-decoration: none;
		}
		.privacy-policy a:hover {
		  text-decoration: underline;
		 
		}
.seo-guide {
  max-width: 1200px;
  margin: 0 auto;
}

.seo-list {
  list-style: none;
  padding-left: 0;
}

.seo-list li {
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
  position: relative;
}

.seo-list li:before {
  content: "✓";
  color: #198754;
  position: absolute;
  left: 0;
  font-weight: 700;
}

.intro-card {
  border-left: 4px solid #198754;
}

.chapter h2 {
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #198754;
  display: inline-block;
}
#portfolio .btn {
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #fc0349);
    border: none;
}

#portfolio .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}