* {
  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: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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


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

/* SEO Section */
.seo-section {
  padding: 2rem 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: 20px 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: 2rem 0;
  background: var(--light-gray);
}
.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: 2rem 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: 20px 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: 100px;
  padding: 40px 10px;
  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: 20px 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: 10px 0;
  background: var(--white);
  text-align: center;
  border-top: 5px solid #007bff;
}

.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;
  }

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

  .page-header h1 {
    font-size: 2rem;
    padding-top: 110px !important;
  }

  .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: 5px 10px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.nav-logo img {
  height: 80px;
  width: auto;
}
nav-logo-footer img {
  height: 50px;
}

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

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

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

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 400;
  transition: all 0.3s ease;
  /* padding: 0.75rem 1rem; */
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  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;
}


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

.slider {
  height: 100%;
}

.slide {
  display: none;
  height: 100%;
  position: relative;
}

.slide.active {
  display: block;
}

.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;
  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);
}
.policy-section {
  padding-top: 20px;
}
.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);
  color: var(--white);
}

.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: 20px 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;
}

.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-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-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;
}

/* Social Media Section */
.social-media-section {
  padding: 20px 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-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 2rem;
}

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

.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);
}


.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-button.primary {
  background: var(--white);
  color: var(--primary-color);
}

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

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

/* Contact Section */
.contact {
  padding: 20px 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-info1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  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 a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section p a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}
.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;
}


/* Web Design Services Styles */
.web-design-services {
  padding: 20px 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: 1rem 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: 1rem 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: 20px 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: 20px 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: 20px 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: 20px 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: 20px 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);
}
.image-container img {
  width: 400px;
  height: 300px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.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);
}

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

/* FAQ Section */
.faq-section {
  padding: 20px 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);
  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 {
  
  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;
  }

  .contact-info {
    gap: 2px;
  }

  .nav-menu {
    position: fixed;
    left: calc(-100% - 100px);
    top: 160px;
    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: -30px;
  }

  .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;
  }
  .image-container img {
    width: 300px;
    height: 200px;
  }
}


@media (max-width: 768px) {
  .social-bar {
    padding: 0.75rem 0;
  }
  .page-hero {margin-top: 200px !important;}
  .partners {
  display: flex;
  gap: 2px;
  margin-top: 10px;
  /* flex-wrap: wrap; */
}
  .contact-info1 {
    grid-template-columns: 1fr;
  }
  .seo-content,
  .ppc-content,
  .unique-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    
  }
  
  .contact-info span {
    font-size: 12px;
  }

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

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

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

  .image-container img {
    width: 300px;
    height: 200px;
  }

  .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;
  }
  .houston-design-content,
  .ux-ui-content,
  .responsive-content,
  .mobile-content {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
  }
  .nav-logo img {
    height: auto;
    width: 250px;
}

 
}

@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;
  }
  .image-container img {
    width: 100%;
    height: auto;
  }

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

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

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

  .web-service-card,
  .benefit-card {
    padding: 2rem 1.5rem;
  }
}
.services-section {
      max-width: 1600px;
      margin: auto;
      text-align: center;
      padding: 40px 20px;
    }

    .services-section h2 {
      font-size: 22px;
      color: #373535;
      font-weight: 100;
      margin: 10px;
    }

    .services-section p {
      color: #6c757d;
      margin-bottom: 40px;
    }

    .services-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: flex-start;
    }

    .service-card {
      flex: 1 1 250px;
      background: #fff;
      border-radius: 6px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid;
    }
    .service-card span a{
      color: #ffffff;
      text-decoration: none;
    }

    .service-header {
      height: 120px; /* equal height for all headers */
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 10px;
      font-weight: bold;
      font-size: 16px;
      color: #fff; 
      position: relative;
      text-align: center;
    }
    .text-box {
      color: #fff;
      font-size: 20px;
    }

    .service-header::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 12px solid transparent;
      border-right: 12px solid transparent;
      border-top: 12px solid currentColor;
    }

    .service-content {
      padding: 20px;
      text-align: left;
      flex-grow: 1;
    }

    .service-content ul {
      list-style: none;
      padding: 0;
      margin: 0 0 20px;
    }

    .service-content ul li {
      margin: 10px 0;
      font-size: 15px;
      color: #333;
      display: flex;
      align-items: center;
    }

    .service-content ul li i {
      margin-right: 10px;
      color: #007bff;
      min-width: 16px;
    }

    .service-content ul li a {
      color: #333;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .service-content ul li a:hover {
      color: #007bff;
    }

    .service-footer {
      text-align: center;
      padding: 15px;
    }

    .service-footer a {
      display: inline-block;
      width: 35px;
      height: 35px;
      border-radius: 5px;
      text-align: center;
      line-height: 35px;
      color: #fff;
      font-size: 18px;
      text-decoration: none;
    }

    /* Equalized colors */
    .yellow { background: #ffc107; color: #ffc107; }
    .blue   { background: #0dcaf0; color: #0dcaf0; }
    .pink   { background: #e83e8c; color: #e83e8c; }
    .green  { background: #28a745; color: #28a745; }
    .purple { background: #6f42c1; color: #6f42c1; }

    .yellow-footer a { background: #ffc107; }
    .blue-footer a   { background: #0dcaf0; }
    .pink-footer a   { background: #e83e8c; }
    .green-footer a  { background: #28a745; }
    .purple-footer a { background: #6f42c1; }


section.page-hero {
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  margin-top: 100px;
}

section.page-hero img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

section.page-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6); /* dark overlay */
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  margin-top: 50px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.cta-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-form input[type="email"] {
  padding: 12px;
  border: none;
  border-radius: 6px;
  width: 250px;
  font-size: 1rem;
}

.cta-form button {
  padding: 12px 20px;
  border: none;
  background: #ff9800;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}

.cta-form button:hover {
  background: #e68900;
}

.call-btn {
  padding: 12px 20px;
  background: #28a745;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: 0.3s;
}

.call-btn:hover {
  background: #218838;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 50px 10px;
}

.hero-left {
  max-width: 50%;
}

.hero-left h1 {
  font-size: 24px;
  font-weight: bold;
  color: #0693e3; /* Primary */
}

.hero-left h2 {
  font-size: 50px;
  font-weight: bold;
  color: #0693e3; /* Primary */
  margin: 10px 0;
}

.hero-left h2 span {
  color: #ff618e; /* Pink */
}

/* Form Box */
.form-box {
  display: flex;
  margin: 20px 0;
}

.form-box input {
  padding: 15px;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.form-box button {
  padding: 15px 25px;
  background: #0693e3; /* Primary */
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
  font-weight: bold;
}

.form-box button:hover {
  background: #ff618e; /* Pink Hover */
}

/* Partners Logos */
.partners {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  /* flex-wrap: wrap; */
}

.partners img {
  height: 60px;
  object-fit: contain;
  
}
.partner {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.partner img {
  height: 30px;
  object-fit: contain;
  
}

/* Right Side */
.hero-right {
  text-align: center;
  position: relative;
}

.testimonial {
  position: absolute;
  top: 10%;
  left: -150px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-size: 14px;
  max-width: 200px;
  border-left: 5px solid #ffc938; /* Yellow Accent */
}

.testimonial span {
  font-weight: bold;
  color: #0693e3; /* Primary */
}

.hero-right img {
  max-width: 800px;
  border-radius: 10px;
}

/* Reviews Section */
.reviews {
  display: flex;
  justify-content: space-around;
  background: #0693e3; /* Primary */
  padding: 30px 0;
  color: #fff;
}

.reviews div {
  text-align: center;
}

.reviews h3 {
  margin: 0;
  font-size: 22px;
  color: #d3a1f5; /* Purple */
}

.reviews p {
  margin: 5px 0 0;
}

/* Locations Section */
.locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 30px;
  background: #f9f9f9;
}

.locations button {
  padding: 12px 20px;
  border: none;
  background: #0693e3; /* Primary */
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}
.locations button a {
  color: #fff;
  text-decoration: none;
}

.locations button:hover {
  background: #ff618e; /* Pink Hover */
}


.about-services {
      margin-top: 50px;
      padding: 40px;
      background: #f9f9f9;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .about-services h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 30px;
      color: var(--primary);
    }

    .about-service-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }

    .about-service-item {
      background: #fff;
      border-left: 6px solid var(--yellow);
      padding: 20px;
      border-radius: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .about-service-item:nth-child(1) { border-left-color: #0693e3; } /* Primary */
    .about-service-item:nth-child(2) { border-left-color: #ff618e; } /* Pink */
    .about-service-item:nth-child(3) { border-left-color: #ffc938; } /* Yellow */
    .about-service-item:nth-child(4) { border-left-color: #1ce0a6; } /* Green */
    .about-service-item:nth-child(5) { border-left-color: #d3a1f5; } /* Purple */
    .about-service-item:nth-child(6) { border-left-color: #ff618e; } /* Pink again */

    .about-service-item h3 {
      margin-top: 0;
      color: var(--primary);
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    .about-service-item p {
      font-size: 0.95rem;
      color: #444;
    }

    .about-service-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    }

    .about-closing {
      margin-top: 60px;
      text-align: center;
      font-size: 1.2rem;
      color: var(--primary);
      font-weight: bold;
    }

  
.dropdown:hover .mega-menu {display: block;}

    /* Mega Container */
.mega-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 0 40px;
}

/* Left Form */
.mega-form {
  flex: 1;
  max-width: 220px;
  text-align: center;
}
.mega-form img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}
.mega-form h4 {
  margin-bottom: 10px;
  color: #0693e3;
}
.mega-form input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 8px;
}
.mega-form button {
  width: 100%;
  padding: 8px;
  background: #0693e3;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.mega-form button:hover {
  background: #ff618e;
}

/* Columns */
.mega-columns {
  flex: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mega-column h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #0693e3;
}
.mega-column a {
  display: block;
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
  text-decoration: none;
  transition: 0.3s;
}
.mega-column a:hover {color: #ff618e;}
/* Mega Menu Fullscreen */
.mega-menu {
  position: fixed;         
  top: 110px;
  left: 0;
  right: 0;
  width: 100vw;            
  background: #fff;
  padding: 20px 0;
  display: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  /* overflow-x: hidden;      */
  z-index: 999;
  max-height: calc(100vh - 100px);
  overflow: scroll;

}

.dropdown:hover .mega-menu {
  display: block;
}

.mega-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  max-width: 1400px;       /* center content nicely */
  margin: auto;
  padding: 0 40px;
}
/* Responsive */
@media(max-width: 991px) {
  .mega-container {flex-direction: column;}
  .mega-columns {grid-template-columns: 1fr 1fr;}
}
@media(max-width: 600px) {
  .mega-columns {grid-template-columns: 1fr;}
  .hero-left, .hero-right {max-width: 100%;}
  .hero-left h2 {font-size: 26px;}
  .hero-left h1 {font-size: 20px; padding-top: 40px;}
  .hero-right img {width: 100%;}
  .testimonial {position: static; max-width: none; margin-bottom: 20px;}
  .hero {flex-direction: column; text-align: center; gap: 30px;}
  .form-box {flex-direction: column;}
  .mega-form {display: none;}
  .partners img {
  height: 40px;
  object-fit: contain;
  }
}
.sitemap {
  max-width: 1100px;
  margin: 40px auto;
  padding: 30px 40px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  color: #222;
  line-height: 1.6;
}

.sitemap h1 {
  text-align: center;
  font-size: 32px;
  color: #004aad;
  margin-bottom: 10px;
}

.sitemap p {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

.sitemap h2 {
  font-size: 20px;
  color: #004aad;
  margin-top: 30px;
  border-bottom: 2px solid #e6eefc;
  padding-bottom: 5px;
}

.sitemap ul {
  list-style: none;
  padding-left: 15px;
  margin-top: 10px;
  columns: 2;
}

.sitemap li {
  margin: 6px 0;
}

.sitemap a {
  color: #0078ff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sitemap a:hover {
  color: #004aad;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .sitemap { padding: 20px; }
  .sitemap ul { columns: 1; }
}

.testimonials {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 25px;
    }

    .testimonial-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      padding: 25px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 18px rgba(0,0,0,0.12);
    }

    .stars {
      color: #fbc02d;
      margin-bottom: 10px;
    }

    .testimonial-card p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #555;
      margin-bottom: 12px;
    }

    .client-name {
      font-weight: 600;
      color: #111;
      font-size: 1rem;
    }
    
/* UX/UI Design Section */
@media (max-width: 768px) {
  .testimonials {
    grid-template-columns: 1fr;
  }
}


/* Chat Widget Base */
#chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

/* Chat Icon */
#chat-toggle {
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  background-color: #0078ff;
}
#chat-toggle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Chat Box */
#chat-box {
  width: 320px;
  height: 420px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: absolute;
  bottom: 80px;
  right: 0;
}

/* Header */
#chat-header {
  background: #0078ff;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
#chat-header h4 {
  margin: 0;
}
#chat-header button {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  margin-left: 6px;
  cursor: pointer;
}

/* Messages */
#chat-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 14px;
  background: #f8f8f8;
}
.message {
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  max-width: 80%;
}
.user-message {
  background: #0078ff;
  color: #fff;
  align-self: flex-end;
}
.ai-message {
  background: #e4e4e4;
  color: #333;
  align-self: flex-start;
}

/* Input area */
#chat-input-area {
  display: flex;
  border-top: 1px solid #ddd;
}
#chat-input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}
#send-btn {
  background: #0078ff;
  color: white;
  border: none;
  padding: 0 16px;
  cursor: pointer;
}

/* Hidden State */
.hidden {
  display: none;
}

/* Minimized State */
.minimized {
  height: 60px !important;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 480px) {
  #chat-box {
    width: 90vw;
    height: 60vh;
    right: 5vw;
  }
  #chat-toggle {
    width: 50px;
    height: 50px;
  }
}
