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

:root {
  --primary-color: #0693e3;
  --accent-pink: #ff618e;
  --accent-yellow: #ffc938;
  --accent-green: #1ce0a6;
  --accent-purple: #d3a1f5;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --border-color: #e9ecef;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

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

/* Services Section */
.services {
  padding: 5rem 0;
  background: var(--white);
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

.service-card:nth-child(2) {
  border-top-color: var(--accent-pink);
}

.service-card:nth-child(3) {
  border-top-color: var(--accent-green);
}

.service-card:nth-child(4) {
  border-top-color: var(--accent-purple);
}

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

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card:nth-child(2) .service-icon {
  color: var(--accent-pink);
}

.service-card:nth-child(3) .service-icon {
  color: var(--accent-green);
}

.service-card:nth-child(4) .service-icon {
  color: var(--accent-purple);
}

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

.service-card ul {
  list-style: none;
}

.service-card li {
  padding: 0.5rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
}

/* SEO Section */
.seo-section {
  padding: 5rem 0;
  background: var(--light-gray);
}

.seo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.seo-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.seo-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.seo-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.seo-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.point-number {
  background: var(--primary-color);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.point-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.point-content p {
  color: var(--text-light);
}

.seo-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Social Media Section */
.social-media-section {
  padding: 5rem 0;
  background: var(--white);
}

.social-media-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.social-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

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

.social-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.social-card:nth-child(1) .social-icon {
  color: var(--accent-pink);
}

.social-card:nth-child(2) .social-icon {
  color: var(--accent-yellow);
}

.social-card:nth-child(3) .social-icon {
  color: var(--accent-green);
}

.social-card:nth-child(4) .social-icon {
  color: var(--accent-purple);
}

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

.social-card p {
  color: var(--text-light);
}

/* PPC Section */
.ppc-section {
  padding: 5rem 0;
  background: var(--light-gray);
}

.ppc-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ppc-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.ppc-process {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-color);
}

.process-step h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.process-step p {
  color: var(--text-light);
}

.ppc-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us */
.why-choose-us {
  padding: 5rem 0;
  background: var(--white);
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.unique-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.unique-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--light-gray);
  border-radius: 10px;
}

.benefit i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.benefit span {
  font-weight: 500;
  color: var(--text-dark);
}

.unique-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}



.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.contact-item i {
  font-size: 2rem;
  color: var(--accent-yellow);
}

.contact-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  margin: 0;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  padding: 0.25rem 0;
  color: #bdc3c7;
}

.footer-section p {
  color: #bdc3c7;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 1rem;
  text-align: center;
  color: #bdc3c7;
}

/* What We Do Page Styles */
.page-header {
  margin-top: 80px;
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.services-detailed {
  padding: 5rem 0;
  background: var(--light-gray);
}

.services-grid-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-detailed-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-detailed-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 2rem;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-content h3 i {
  color: var(--primary-color);
}

.service-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.cta-section {
  padding: 5rem 0;
  background: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.cta-section p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .seo-content,
  .ppc-content,
  .unique-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .services-grid-detailed {
    grid-template-columns: 1fr;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }



  .services h2,
  .social-media-section h2,
  .why-choose-us h2,
  .contact h2 {
    font-size: 2rem;
  }

}
/* Header Styles */
.header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.sticky {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-spacer {
  height: 120px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Enhanced logo styling */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo h2 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
  margin-left: 30px;
}

.nav-menu > li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
  background: rgba(6, 147, 227, 0.1);
}

/* Fixed dropdown menu styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 250px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 1rem 0;
  list-style: none;
  margin: 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  padding: 1rem 1.5rem;
  color: var(--text-dark);
  border-radius: 0;
  background: transparent;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  padding-left: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.dropdown-menu a:before {
  content: "→";
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

.dropdown-menu a:hover {
  background: rgba(6, 147, 227, 0.1);
  color: var(--primary-color);
  border-left-color: var(--primary-color);
  transform: translateX(5px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  /* Removed background to allow full-width slider images */
}

.slider-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slider {
  height: 100%;
}

.slide {
  display: none;
  height: 100%;
  position: relative;
  /* Updated slide structure for full-width background images */
}

.slide.active {
  display: block;
}

/* Added full-width background image styling */
.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-content {
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  /* Updated text colors for better contrast on images */
  color: white;
}

.slide-content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(6, 147, 227, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: #0578c7;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 147, 227, 0.4);
}

.cta-button.secondary {
  background: var(--accent-pink);
  box-shadow: 0 4px 15px rgba(255, 97, 142, 0.3);
}

.cta-button.secondary:hover {
  background: #e5567d;
  box-shadow: 0 6px 20px rgba(255, 97, 142, 0.4);
}

/* Removed slide-image styles as we're using background images now */

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  transform: translateY(-50%);
  z-index: 10;
}

.slider-nav button {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  color: var(--primary-color);
  font-size: 1.4rem;
}

.slider-nav button:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
}

.slider-dots {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Services Section */
.core-services {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--accent-pink),
    var(--accent-yellow),
    var(--accent-green)
  );
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Updated service cards to use individual colors for each box */
.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--primary-color);
}

/* Individual color styling for each service card */
.service-card:nth-child(1) {
  border-top-color: #ff618e;
}

.service-card:nth-child(1) .service-icon {
  background: linear-gradient(135deg, #ff618e, #e5507a);
}

.service-card:nth-child(2) {
  border-top-color: #ffc938;
}

.service-card:nth-child(2) .service-icon {
  background: linear-gradient(135deg, #ffc938, #e6b532);
}

.service-card:nth-child(3) {
  border-top-color: #1ce0a6;
}

.service-card:nth-child(3) .service-icon {
  background: linear-gradient(135deg, #1ce0a6, #19ca95);
}

.service-card:nth-child(4) {
  border-top-color: #d3a1f5;
}

.service-card:nth-child(4) .service-icon {
  background: linear-gradient(135deg, #d3a1f5, #c291e8);
}

.service-card::before {
  display: none;
}

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

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: var(--white);
}

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

.service-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

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


.service-list a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  border-left: 3px solid transparent;
  padding-left: 1rem;
}

.service-list a:hover {
  color: var(--primary-color);
  border-left-color: var(--primary-color);
  transform: translateX(5px);
}

/* SEO Section */
.seo-section {
  padding: 5rem 0;
  background: var(--white);
}

.seo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.seo-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-weight: 700;
}

.seo-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.seo-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.seo-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.point-number {
  background: var(--primary-color);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.point-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.point-content p {
  color: var(--text-light);
}

.seo-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Social Media Section */
.social-media-section {
  padding: 5rem 0;
  background: var(--white);
}

.social-media-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.social-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

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

.social-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.social-card:nth-child(1) .social-icon {
  color: var(--accent-pink);
}

.social-card:nth-child(2) .social-icon {
  color: var(--accent-yellow);
}

.social-card:nth-child(3) .social-icon {
  color: var(--accent-green);
}

.social-card:nth-child(4) .social-icon {
  color: var(--accent-purple);
}

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

.social-card p {
  color: var(--text-light);
}

/* PPC Section */
.ppc-section {
  padding: 5rem 0;
  background: var(--light-gray);
}

.ppc-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.ppc-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
  font-weight: 700;
}

.ppc-process {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-color);
}

.process-step h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.process-step p {
  color: var(--text-light);
}

.ppc-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us */
.why-choose-us {
  padding: 5rem 0;
  background: var(--white);
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.unique-section {
  background: linear-gradient(135deg, var(--primary-color), #0582c7);
  color: var(--white);
}

.unique-content h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--white);
}

.unique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.unique-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.unique-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.unique-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.unique-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.contact-cta {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.contact-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.cta-button.primary {
  background: var(--white);
  color: var(--primary-color);
}

.cta-button.secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cta-button.secondary:hover {
  background: var(--white);
  color: var(--primary-color);
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.contact-info {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.contact-item i {
  font-size: 2rem;
  color: var(--accent-yellow);
}

.contact-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  margin: 0;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  padding: 0.25rem 0;
  color: #bdc3c7;
}

.footer-section p {
  color: #bdc3c7;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 1rem;
  text-align: center;
  color: #bdc3c7;
}

/* What We Do Page Styles */
.page-header {
  margin-top: 80px;
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.services-detailed {
  padding: 5rem 0;
  background: var(--light-gray);
}

.services-grid-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-detailed-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-detailed-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 2rem;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-content h3 i {
  color: var(--primary-color);
}

.service-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.cta-section {
  padding: 5rem 0;
  background: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.cta-section p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Web Design Services Styles */
.web-design-services {
  padding: 5rem 0;
  background: var(--white);
}

.services-grid-web {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.web-service-card {
  background: linear-gradient(145deg, var(--white), #f8f9fa);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: center;
  border: 1px solid rgba(6, 147, 227, 0.1);
  position: relative;
  overflow: hidden;
}

.web-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-pink));
  border-radius: 20px 20px 0 0;
}

.web-service-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-yellow));
}

.web-service-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--accent-green), var(--accent-purple));
}

.web-service-card:nth-child(4)::before {
  background: linear-gradient(90deg, var(--accent-purple), var(--primary-color));
}

.web-service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.web-service-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

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

.web-service-card:nth-child(2) .web-service-icon {
  color: var(--accent-pink);
}

.web-service-card:nth-child(3) .web-service-icon {
  color: var(--accent-green);
}

.web-service-card:nth-child(4) .web-service-icon {
  color: var(--accent-purple);
}

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

.web-service-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Houston Design Section */
.houston-design-section {
  padding: 5rem 0;
  background: var(--light-gray);
}

.houston-design-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.houston-design-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-weight: 700;
}

.houston-design-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.houston-design-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* UX/UI Section */
.ux-ui-section {
  padding: 5rem 0;
  background: var(--white);
}

.ux-ui-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
  font-weight: 700;
}

.ux-ui-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ux-ui-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.ux-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.ux-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--light-gray);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.ux-feature:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ux-feature i {
  color: var(--primary-color);
  font-size: 1.3rem;
}

.ux-feature:hover i {
  color: var(--white);
}

.ux-feature span {
  font-weight: 500;
  color: var(--text-dark);
}

.ux-feature:hover span {
  color: var(--white);
}

.ux-ui-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design Section */
.responsive-design-section {
  padding: 5rem 0;
  background: var(--light-gray);
}

.responsive-design-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
  font-weight: 700;
}

.responsive-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.responsive-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.maintenance-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.maintenance-point {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.maintenance-point:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.maintenance-point i {
  color: var(--accent-green);
  font-size: 1.3rem;
}

.maintenance-point span {
  font-weight: 500;
  color: var(--text-dark);
}

.responsive-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mobile Friendly Section */
.mobile-friendly-section {
  padding: 5rem 0;
  background: var(--white);
}

.mobile-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.mobile-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-weight: 700;
}

.mobile-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.mobile-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.mobile-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 15px;
  transition: all 0.3s ease;
}

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

.mobile-benefit i {
  color: var(--primary-color);
  font-size: 2rem;
  margin-top: 0.2rem;
}

.mobile-benefit:hover i {
  color: var(--white);
}

.mobile-benefit h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.mobile-benefit:hover h4 {
  color: var(--white);
}

.mobile-benefit p {
  color: var(--text-light);
  margin: 0;
}

.mobile-benefit:hover p {
  color: var(--white);
}

.mobile-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design Company Page Styles */
.intro-section {
  padding: 5rem 0;
  background: var(--white);
}

.intro-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.intro-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.intro-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Why Responsive Section */
.why-responsive-section {
  padding: 5rem 0;
  background: var(--white);
}

.why-responsive-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.responsive-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: center;
  border: 1px solid rgba(6, 147, 227, 0.1);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.benefit-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

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

.benefit-card:nth-child(2) .benefit-icon {
  color: var(--accent-pink);
}

.benefit-card:nth-child(3) .benefit-icon {
  color: var(--accent-green);
}

.benefit-card:nth-child(4) .benefit-icon {
  color: var(--accent-purple);
}

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

.benefit-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Key Elements Section */
.key-elements-section {
  padding: 5rem 0;
  background: var(--white);
}

.key-elements-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.elements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.element-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: var(--light-gray);
  border-radius: 15px;
  transition: all 0.3s ease;
  text-align: center;
}

.element-item:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
}

.element-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.element-item:hover i {
  color: var(--white);
}

.element-item span {
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.element-item:hover span {
  color: var(--white);
}

/* Process Section */
.process-section {
  padding: 5rem 0;
  background: var(--light-gray);
}

.process-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.process-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.step-number {
  background: var(--primary-color);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
  font-weight: 600;
}

.step-content p {
  color: var(--text-light);
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: var(--white);
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.faq-item:hover {
  background: var(--white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Social Media Bar Styles */
.social-bar {
  background: linear-gradient(135deg, var(--primary-color), #0582c7);
  color: var(--white);
  padding: 0.75rem 0;
  font-size: 0.9rem;
}

.social-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.social-links a {
  color: var(--white);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .social-container {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-info {
    gap: 1rem;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 120px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: left;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    height: calc(100vh - 120px);
    overflow-y: auto;
    align-items: stretch;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .nav-menu a {
    padding: 1rem 2rem;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(6, 147, 227, 0.05);
    min-width: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-radius: 0;
    padding: 0;
  }

  .dropdown.active .dropdown-menu {
    max-height: 300px;
    padding: 0.5rem 0;
  }

  .dropdown-menu a {
    padding: 0.75rem 3rem;
    font-size: 0.9rem;
  }

  .dropdown-menu a:hover {
    transform: none;
    border-left: none;
    background: var(--primary-color);
    color: var(--white);
  }

  .nav-toggle {
    display: flex;
  }

  .header-spacer {
    height: 140px;
  }
}

@media (max-width: 768px) {
  .social-bar {
    padding: 0.75rem 0;
  }

  .contact-info span {
    font-size: 0.8rem;
  }

  .nav-logo h2 {
    font-size: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  

  .slider-container {
    height: 70vh;
  }

  .slide-content h1 {
    font-size: 2.5rem;
  }

  .slide-content p {
    font-size: 1.1rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .slider-nav button {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .slider-dots {
    bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .slide-content h1 {
    font-size: 1.8rem;
  }

  .services h2,
  .social-media-section h2,
  .why-choose-us h2,
  .contact h2 {
    font-size: 2rem;
  }

  .slider-nav {
    padding: 0 1rem;
  }

  .slider-nav button {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .services-grid-web,
  .responsive-benefits-grid {
    grid-template-columns: 1fr;
  }

  .elements-grid {
    grid-template-columns: 1fr;
  }

  .web-service-card,
  .benefit-card {
    padding: 2rem 1.5rem;
  }
}

  .card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .card {
    width: 250px;
    border: 1px solid #ddd;
    background: #fff;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  /* Header with triangle */
  .card-header {
    color: #fff;
    font-weight: bold;
    padding: 30px 10px;
    font-size: 20px;
    position: relative;
  }

  .card-header::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 20px 20px 0 20px;
    border-style: solid;
  }

  /* Make arrow same color as header */
  .yellow::after { border-color: #fbc02d transparent transparent transparent; }
  .blue::after   { border-color: #03a9f4 transparent transparent transparent; }
  .pink::after   { border-color: #e91e63 transparent transparent transparent; }
  .green::after  { border-color: #00c853 transparent transparent transparent; }
  .purple::after { border-color: #ba68c8 transparent transparent transparent; }

  /* Card body */
  .card-body {
    padding: 30px;
  }


  /* Button */
  .btn {
    display: inline-block;
    padding: 8px 12px;
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    margin-top: auto; /* sticks button at bottom */
    align-self: center ; /* align to right */
  }

  .btn span {
    font-size: 18px;
    font-weight: bold;
  }

  /* Header background colors */
  .yellow { background: #fbc02d; }
  .blue   { background: #03a9f4; }
  .pink   { background: #e91e63; }
  .green  { background: #00c853; }
  .purple { background: #ba68c8; }
  
  
  .file-list {
  padding: 0 20 0 20;
  margin: 0 0 20px 0; /* add spacing below list */
  text-align: left;   /* force left align */
}

.file-list li {
  margin: 6px 0;
}


.file-list a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  
}

.file-list a:hover {
  text-decoration: none;
}