.hero-section {
  position: relative;
  height: 80vh;
  width: 100%;
  background: #13171a;
  color: #98989a;
  padding: 40px;
  overflow: hidden;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 1;
}

.main-logo {
  position: absolute;
  left: 40px;
  top: 7%;
  transform: translateY(-50%);
  z-index: 2;
}

.main-logo img {
  max-width: 250px;
}

.logo {
  position: absolute;
  left: 30px;
  top: 14%;
  transform: translateY(-50%);
  z-index: 2;
}

.logo img {
  max-width: 250px;
}

.navigation {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.nav-icon {
  display: inline-block;
  margin: 0 20px;
  color: #fff;
  font-size: 30px;
  position: relative;
  padding-top: 5px;
  transition: color 0.3s;
}

.nav-icon:hover {
  color: #950707;
}

.nav-icon::before {
  content: attr(data-title);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s, color 0.3s, transform 0.3s;
  color: #950707;
  font-size: 18px;
  white-space: nowrap;
}

.nav-icon:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(10px);
}

.services-dropdown {
  position: absolute;
  top: 3%;
  right: 60px;
  z-index: 11;
}

.services-link {
  display: block;
  color: #fff;
  font-size: 30px;
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}

.services-link:hover {
  color: #950707;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: transparent;
  padding: 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 12;
}

.services-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.services-dropdown .dropdown-menu li {
  list-style-type: none;
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.dropdown-menu li a:hover {
  color: #950707;
}

.dropdown-menu li i {
  margin-right: 10px;
  font-size: 24px;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  animation: zoomIn 1s ease forwards;
  z-index: 2;
}

.tagline {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.description {
  font-size: 24px;
  margin-bottom: 40px;
  color: #fff;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  border: 2px solid #ae0202;
  transition: color 0.3s;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #dc4007;
  transition: left 0.3s;
  z-index: -1;
}

.cta-button:hover {
  color: #fff;
  font-size: 23px;
  border: 1px solid #fff;
}

.cta-button:hover::before {
  left: 0;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Why Choose Muttley Section */
section {
  background: #13171a;
  padding: 2rem;
}

h2 {
  color: #fff;
  text-align: center;
  font-size: 2.5rem;
  margin-top: 40px;
  margin-bottom: 10px;
}

section p {
  color: #950707;
  text-align: center;
  margin-bottom: 2rem;
}

.panel {
  background-color: #13171a;
  padding: 2rem;
  color: #7fffd4;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid transparent;
  border-color: rgb(87, 48, 48);
}

.panel:hover {
  border: 2px solid #f34401;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(127, 255, 212, 0.5);
}

.panel-icon {
  color: #950707;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.panel-content h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.panel-content p {
  color: #fff;
}

/* About section styles */
.about {
  background-color: #13171a;
  padding: 80px 0;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  font-size: 36px;
  margin-bottom: 40px;
  margin-top: 40px;
}

.about p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #d1d1d1;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background-image: #b83506;
  border-radius: 0.5rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 2rem;
}

/* Services Section */

.services {
  background-color: #13171a;
  padding: 4rem 2rem;
}

.services .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
}

.service-cards-centered {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  padding: 0 2rem;
}

.service-cards-centered .service-card {
  width: 33.33%;
}

.service-card {
  background-color: #13171a;
  border-radius: 0.5rem;
  padding: 2rem;
  color: #d1d1d1;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  border: 1px solid transparent;
  border-color: rgb(71, 28, 28);
}

.service-card:hover {
  border: 2px solid #7fffd4;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(127, 255, 212, 0.5);
}

.service-card .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #950707;
}

.service-card:hover .icon {
  text-shadow: 0 0 10px #7fffd4;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  color: #fff;
}

.service-card .icon-top {
  font-size: 1.2rem;
  position: absolute;
  top: -1rem;
  right: 0;
}

.service-card:hover .icon-top {
  color: #ff9900;
  text-shadow: 0 0 10px #ff9900;
}

.service-card p {
  font-size: 1rem;
  color: #d1d1d1;
}

@media screen and (max-width: 992px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-cards-centered .service-card {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .service-cards {
    grid-template-columns: 1fr;
  }

  .service-cards-centered .service-card {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .services {
    padding: 2rem 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}

/* Platinum Partners Section */
.platinum-partners {
  background-color: #13171a;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.platinum-partners h2 {
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.platinum-partners h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #7fffd4, transparent);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.partner-card {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.5s ease;
  text-decoration: none;
  cursor: pointer;
}

.partner-logo-wrapper {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-color: rgb(71, 28, 28);
  transition: all 0.5s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(127, 255, 212, 0);
  animation: pulse 3s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    border-color: rgba(127, 255, 212, 0);
  }
  50% {
    transform: scale(1.05);
    border-color: rgba(127, 255, 212, 0.3);
  }
  100% {
    transform: scale(0.95);
    border-color: rgba(127, 255, 212, 0);
  }
}

.inner-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 95%;
  border-radius: 50%;
  border: 1px solid rgba(127, 255, 212, 0.1);
  pointer-events: none;
}

.glow-effect {
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(
    circle at center,
    rgba(127, 255, 212, 0.15),
    transparent 60%
  );
  opacity: 0;
  transition: all 0.5s ease;
  pointer-events: none;
  transform: translate(-17%, -17%);
}

.partner-logo {
  width: 75%;
  height: 75%;
  object-fit: contain;
  transition: all 0.5s ease;
  filter: brightness(1) contrast(1.1);
  padding: 20px;
  z-index: 1;
}

.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  transition: all 0.5s ease;
  padding-bottom: 40px;
}

.partner-card:hover .partner-logo-wrapper {
  border: 2px solid #7fffd4;
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 0 30px rgba(127, 255, 212, 0.3),
    inset 0 0 20px rgba(127, 255, 212, 0.2);
}

.partner-card:hover .inner-circle {
  border-color: rgba(127, 255, 212, 0.3);
}

.partner-card:hover .glow-effect {
  opacity: 1;
  transform: translate(-17%, -17%) scale(1.1);
}

.partner-card:hover .partner-logo {
  filter: brightness(1.2) contrast(1.2);
  transform: scale(1.1);
}

.partner-card:hover .hover-overlay {
  opacity: 1;
}

.partner-card:hover .visit-text {
  transform: translateY(0);
  box-shadow: 0 0 15px rgba(127, 255, 212, 0.3);
}

.visit-text:hover {
  background: rgba(127, 255, 212, 0.2);
  box-shadow: 0 0 20px rgba(127, 255, 212, 0.4);
}

/* Hover State Enhancement */
.partner-card:after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  background: linear-gradient(45deg, #7fffd4, #13171a, #7fffd4);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.partner-card:hover:after {
  opacity: 0.3;
}

/* Responsive Design */
@media screen and (max-width: 1400px) {
  .partner-logo-wrapper {
    width: 280px;
    height: 280px;
  }
}

@media screen and (max-width: 1200px) {
  .partner-logo-wrapper {
    width: 260px;
    height: 260px;
  }

  .partner-grid {
    gap: 3rem;
  }
}

@media screen and (max-width: 992px) {
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }

  .partner-logo-wrapper {
    width: 280px;
    height: 280px;
  }
}

@media screen and (max-width: 768px) {
  .platinum-partners h2 {
    font-size: 2rem;
    margin-bottom: 3.5rem;
  }

  .partner-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .partner-logo-wrapper {
    width: 300px;
    height: 300px;
  }

  .hover-overlay {
    padding-bottom: 35px;
  }
}

@media screen and (max-width: 480px) {
  .platinum-partners {
    padding: 4rem 0;
  }

  .platinum-partners h2 {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }

  .partner-logo-wrapper {
    width: 260px;
    height: 260px;
  }

  .partner-logo {
    width: 70%;
    height: 70%;
  }

  .hover-overlay {
    padding-bottom: 30px;
  }
}

/* Testimonials section styles */

.testimonials {
  background-color: #13171a;
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  color: #fff;
  font-size: 36px;
}

.section-title p {
  color: #d1d1d1;
  font-size: 18px;
}

.testimonial-wrapper {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease;
  padding: 0 0;
}

.testimonial-item {
  flex: 0 0 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  text-align: center;
  padding: 0 60px;
  box-sizing: border-box;
}

.testimonial-item.active {
  opacity: 1;
}

.testimonial-item p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
}

.testimonial-author h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 5px;
}

.testimonial-author p {
  font-size: 16px;
  color: #d1d1d1;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #950707;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 1;
}

.slider-arrow:hover {
  background-color: #fd4401;
}

.prev-arrow {
  left: 20px;
}

.next-arrow {
  right: 20px;
}
/* Case Study section styles */

.case-studies {
  background-color: #13171a;
  padding: 4rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: #fff;
  font-size: 2.5rem;
}

.section-title p {
  color: #fff;
  font-size: 1.2rem;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.case-study-item {
  background-color: #1c1f22;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  color: #fff;
  max-width: 400px;
  border: 1px solid transparent;
  border-color: rgb(87, 48, 48);
}

.case-study-item:hover {
  border: 2px solid #f34401;
  transform: translateY(-5px);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(127, 255, 212, 0.5);
}

.case-study-item img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.case-study-item h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.case-study-item p {
  color: #fff;
  font-size: 1rem;
}

/* Contact section styles */

.contact {
  background-color: #13171a;
  padding: 4rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: #fff;
  font-size: 2.5rem;
}

.section-title p {
  color: #fff;
  font-size: 1.2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  transition: all 0.3s ease;
}

.contact-info:hover {
  border: 2px solid #950707;
  transform: translateY(-5px);
  transform: scale(1.05);
  box-shadow: 0 0 5px rgba(127, 255, 212, 0.5);
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-item i {
  color: #7fffd4;
  font-size: 1.5rem;
  margin-right: 1rem;
}

.contact-item p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-item a {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
}

.contact-form {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  transition: all 0.3s ease;
}

.contact-form:hover {
  border: 2px solid #f34401;
  transform: translateY(-5px);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(127, 255, 212, 0.5);
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  font-size: 1rem;
  border: none;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(127, 255, 212, 0.5);
}

.form-group i {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  color: #7fffd4;
  font-size: 1.2rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #950707;
  color: #fff;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #ff5722;
}

/* Footer Section */
footer {
  position: relative;
  background: #13171a;
  padding: 4rem 0;
  color: #fff;
  overflow: hidden;
}

#particles-js-footer {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-logo img {
  width: 300px;
  height: auto;
  padding-top: 70px;
}

.footer-services h4,
.footer-social h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #fff;
}

.service-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-links a {
  display: block;
  padding: 0.5rem;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border: 2px solid transparent;
  border-color: #fff;
}

.service-links a:hover {
  border: 2px solid #950707;
  color: #950707;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-social h4 {
  padding-top: 80px;
}

.social-icons a {
  color: #ff9800;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #ffcc80;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  display: inline-block;
}

.footer-bottom a {
  color: #ff9800;
  text-decoration: none;
}

/* Responsive Styles */

@media screen and (max-width: 1200px) {
  .main-logo img {
    max-width: 200px;
  }

  .nav-icon {
    font-size: 24px;
    margin: 0 15px;
  }

  .services-link {
    font-size: 24px;
  }

  .tagline {
    font-size: 36px;
  }

  .description {
    font-size: 20px;
  }

  .cta-button {
    font-size: 16px;
    padding: 12px 24px;
  }
}

@media screen and (max-width: 992px) {
  .hero-section {
    height: 70vh;
  }

  .main-logo img {
    max-width: 180px;
  }

  .nav-icon {
    font-size: 20px;
    margin: 0 10px;
  }

  .services-link {
    font-size: 20px;
  }

  .tagline {
    font-size: 30px;
  }

  .description {
    font-size: 18px;
  }

  .cta-button {
    font-size: 14px;
    padding: 10px 20px;
  }

  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .hero-section {
    height: 60vh;
  }

  .main-logo img {
    max-width: 120px;
  }

  .main-logo {
    left: 10px;
  }

  .navigation {
    top: 6%;
  }

  .nav-icon {
    font-size: 18px;
    margin: 0 12px;
  }

  .services-dropdown {
    display: none;
  }

  .services-link {
    font-size: 18px;
  }

  .dropdown-menu li i {
    font-size: 10px;
  }

  .tagline {
    font-size: 24px;
  }

  .description {
    font-size: 16px;
  }

  .cta-button {
    font-size: 12px;
    padding: 8px 16px;
  }

  section {
    padding: 2rem;
  }

  section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  section p {
    margin-bottom: 1.5rem;
  }

  section > div {
    flex-direction: column;
    gap: 1rem;
  }

  .panel {
    padding: 1.5rem;
    margin-bottom: 1rem;
    flex-basis: 100%;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .case-study-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto;
  }

  .footer-social h4 {
    padding-top: 20px;
  }

  section {
    padding: 1rem;
  }

  .panel {
    padding: 1rem;
  }

  .panel-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .panel-content h3 {
    font-size: 1.2rem;
  }

  .panel-content p {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 576px) {
  .hero-section {
    height: 50vh;
  }

  .main-logo img {
    max-width: 120px;
  }

  .nav-icon {
    font-size: 16px;
    margin: 0 6px;
  }

  .services-link {
    font-size: 16px;
  }

  .tagline {
    font-size: 20px;
  }

  .description {
    font-size: 14px;
  }

  .cta-button {
    font-size: 10px;
    padding: 6px 12px;
  }

  section {
    padding: 1rem;
  }

  .panel {
    padding: 1rem;
  }

  .panel-icon {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }

  .panel-content h3 {
    font-size: 1rem;
  }

  .panel-content p {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 430px) {
  section {
    padding: 0.5rem;
  }

  .panel {
    padding: 0.8rem;
  }

  .panel-icon {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }

  .panel-content h3 {
    font-size: 0.9rem;
  }

  .panel-content p {
    font-size: 0.7rem;
  }
}

/* About Page Hero CSS */

.mini-hero-section {
  position: relative;
  height: 40vh;
  width: 200vh;
  background: #13171a;
  color: #98989a;
  overflow: hidden;
}

#particles-js-mini {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 1;
}

.mini-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  animation: zoomIn 1s ease forwards;
  z-index: 2;
}

.mini-tagline {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.mini-description {
  font-size: 18px;
  color: #fff;
}

.mini-navigation {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.mini-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.mini-nav-icon {
  display: inline-block;
  margin: 0 20px;
  color: #fff;
  font-size: 30px;
  position: relative;
  padding-top: 5px;
  transition: color 0.3s;
}

.mini-nav-icon:hover {
  color: #950707;
}

.mini-nav-icon::before {
  content: attr(data-title);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s, color 0.3s, transform 0.3s;
  color: #950707;
  font-size: 18px;
  white-space: nowrap;
}

.mini-nav-icon:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(10px);
}

.mini-services-dropdown {
  position: absolute;
  top: 5%;
  right: 140px;
  z-index: 11;
}

.mini-services-link {
  display: block;
  color: #fff;
  font-size: 30px;
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}

.mini-services-link:hover {
  color: #950707;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: transparent;
  padding: 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 12;
}

.mini-services-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mini-services-dropdown .dropdown-menu li {
  list-style-type: none;
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.dropdown-menu li a:hover {
  color: #950707;
}

.dropdown-menu li i {
  margin-right: 10px;
  font-size: 24px;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* About Page-* Mission, Vision, and Values */
.mission-vision-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.mvv-item {
  background-color: #13171a;
  padding: 30px;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid transparent;
  border-color: rgb(87, 48, 48);
}

.mvv-item:hover {
  border: 2px solid #f34401;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(127, 255, 212, 0.5);
}

.mvv-item:hover {
  transform: translateY(-5px);
}

.mvv-item i {
  color: #950707;
  font-size: 36px;
  margin-bottom: 20px;
}

.mvv-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.mvv-item p {
  color: #fff;
}

/*  About Page-Team Section */
.team-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin-top: 50px;
}

.team-member {
  flex: 0 0 300px;
  scroll-snap-align: center;
  margin: auto;
  background-color: #13171a;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid transparent;
  border-color: rgb(87, 48, 48);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.team-member:hover {
  border: 2px solid #f34401;
  box-shadow: 0 0 20px rgba(127, 255, 212, 0.5);
}
.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}
.team-member h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.team-member p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #ffffffb2;
}

/* FAQ */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #13171a;
  color: white;
}

.faq-section {
  flex: 1;
  margin-right: 20px;
}

.faq-container {
  background-color: #13171a;
  border: 1px solid #98989a;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
}

.faq-container p {
  color: #fff;
}

.faq-btn {
  background-color: #ff5722;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  text-align: center;
  outline: none;
  transition: background-color 0.3s ease;
}

.faq-btn:hover {
  background-color: #d94b1b;
}

.faq-content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #13171a;
}

/* About Page Responsive Styles */

@media screen and (max-width: 1200px) {
  .mini-hero-section {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .logo img {
    max-width: 150px;
  }

  .logo {
    top: 30px;
    left: 0;
  }

  .mini-navigation ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .mini-nav-icon {
    font-size: 20px;
    margin: 5px;
  }

  .mini-services-dropdown {
    right: 20px;
    top: 20px;
  }

  .mini-services-link {
    font-size: 20px;
    top: 20px;
  }

  .mini-tagline {
    font-size: 28px;
  }

  .mini-description {
    font-size: 16px;
  }

  .mission-vision-values {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .logo img {
    max-width: 120px;
  }

  .mini-nav-icon {
    font-size: 16px;
  }

  .mini-services-link {
    font-size: 16px;
  }

  .mini-tagline {
    font-size: 20px;
  }

  .mini-description {
    font-size: 14px;
  }
}

/* Web-Development Hero CSS */

.web-hero-section {
  position: relative;
  height: 40vh;
  width: 200vh;
  background: #13171a;
  color: #98989a;
  overflow: hidden;
}

#particles-js-web {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 1;
}

.web-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  animation: zoomIn 1s ease forwards;
  z-index: 2;
}

.web-tagline {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.web-description {
  font-size: 18px;
  color: #fff;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Web Development */

.web-dev-container {
  font-family: "Framer Sans", sans-serif;
  margin: 0;
  padding: 0;
}
.web-dev-section {
  background-color: #13171a;
  color: #d1d1d1;
  padding: 50px 0;
}
.web-dev-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.web-dev-content h1 {
  color: #fff;
  font-size: 40px;
  text-align: center;
  margin-bottom: 60px;
  margin-top: 40px;
}
.web-dev-content h2 {
  color: #a40000;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
.web-dev-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
}
.image-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.image-wrapper img {
  max-width: 400px;
  margin-right: 30px;
  border-radius: 25px;
}
.image-wrapper-right {
  flex-direction: row-reverse;
}
.image-wrapper-right img {
  margin-right: 0;
  margin-left: 30px;
}

/* Web Development Page Responsive Styles */

@media screen and (max-width: 1200px) {
  .web-hero-section {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .logo img {
    max-width: 150px;
  }

  .mini-navigation ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .mini-nav-icon {
    font-size: 20px;
    margin: 5px;
  }

  .mini-services-dropdown {
    right: 20px;
    top: 10px;
  }

  .mini-services-link {
    font-size: 20px;
  }

  .web-tagline {
    font-size: 24px;
  }

  .web-description {
    font-size: 16px;
  }

  .image-wrapper {
    flex-direction: column;
  }

  .image-wrapper img {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .image-wrapper-right img {
    margin-left: 0;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  .logo img {
    max-width: 120px;
  }

  .mini-nav-icon {
    font-size: 16px;
  }

  .mini-services-link {
    font-size: 16px;
  }

  .web-tagline {
    font-size: 20px;
  }

  .web-description {
    font-size: 14px;
  }
}

/* Networking Hero CSS */

.net-hero-section {
  position: relative;
  height: 40vh;
  width: 200vh;
  background: #13171a;
  color: #98989a;
  overflow: hidden;
}

#particles-js-net {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 1;
}

.net-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  animation: zoomIn 1s ease forwards;
  z-index: 2;
}

.net-tagline {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.net-description {
  font-size: 18px;
  color: #fff;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Networking Content */

.intro-image {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  max-width: 400px;
}
.consulting-section {
  background-color: #13171a;
  color: #292929;
  padding: 50px 0;
}
.consulting-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.consulting-content h1 {
  color: #950707;
  font-size: 40px;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
}
.consulting-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #b9b6b6;
}

/* Networking Page Responsive Styles */

@media screen and (max-width: 1200px) {
  .net-hero-section {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .logo img {
    max-width: 150px;
  }

  .mini-navigation ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .mini-nav-icon {
    font-size: 20px;
    margin: 5px;
  }

  .mini-services-dropdown {
    right: 20px;
    top: 10px;
  }

  .mini-services-link {
    font-size: 20px;
  }

  .net-tagline {
    font-size: 24px;
  }

  .net-description {
    font-size: 16px;
  }

  .intro-image {
    float: right;
    max-width: 45%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  .logo img {
    max-width: 120px;
  }

  .mini-nav-icon {
    font-size: 16px;
  }

  .mini-services-link {
    font-size: 16px;
  }

  .net-tagline {
    font-size: 20px;
  }

  .net-description {
    font-size: 14px;
  }
}

/* Out-Sourcing Hero CSS */

.src-hero-section {
  position: relative;
  height: 40vh;
  width: 200vh;
  background: #13171a;
  color: #98989a;
  overflow: hidden;
}

#particles-js-src {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 1;
}

.src-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  animation: zoomIn 1s ease forwards;
  z-index: 2;
}

.src-tagline {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.src-description {
  font-size: 18px;
  color: #fff;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* IT Outsourcing Page Specific Styles */
.outsourcing-section {
  background-color: #13171a;
  color: #292929;
  padding: 50px 0;
}
.outsourcing-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.outsourcing-content h1 {
  color: #fff;
  font-size: 48px;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
}
.outsourcing-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
  color: #b9b6b6;
}
.outsourcing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}
.outsourcing-item {
  background-color: #13171a;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  border: 1px solid transparent;
  border-color: rgb(71, 28, 28);
}
.outsourcing-item:hover {
  border: 2px solid #7fffd4;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(127, 255, 212, 0.5);
}
.outsourcing-item h2 {
  color: #dc4007;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.outsourcing-banner {
  background-color: #88351791;
  color: #fff;
  text-align: center;
  padding: 50px;
  border-radius: 5px;
  margin-top: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  border: 1px solid transparent;
  border-color: rgb(71, 28, 28);
}
.outsourcing-banner:hover {
  border: 2px solid #7fffd4;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(127, 255, 212, 0.5);
}
.outsourcing-banner h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}
.outsourcing-banner p {
  font-size: 24px;
  margin-bottom: 30px;
}
.outsourcing-item p {
  margin-bottom: 20px;
}
.cta-section {
  background-color: #13171a;
  color: #fff;
  padding: 2rem;
  overflow: hidden;
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.credits-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: rollUpCredits 22s linear infinite;
}

.credits-text {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  text-align: center;
  color: #ff5722;
}

.contact-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #ff6347;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 1rem;
}

@keyframes rollUpCredits {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}

/* Outsourcing Page Responsive Styles */

@media screen and (max-width: 1200px) {
  .src-hero-section {
    width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .outsourcing-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .logo img {
    max-width: 150px;
  }

  .mini-navigation ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .mini-nav-icon {
    font-size: 20px;
    margin: 5px;
  }

  .mini-services-dropdown {
    right: 20px;
    top: 10px;
  }

  .mini-services-link {
    font-size: 20px;
  }

  .src-tagline {
    font-size: 24px;
  }

  .src-description {
    font-size: 16px;
  }

  .outsourcing-content h1 {
    font-size: 36px;
  }

  .outsourcing-banner h2 {
    font-size: 28px;
  }

  .outsourcing-banner p {
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  .logo img {
    max-width: 120px;
  }

  .mini-nav-icon {
    font-size: 16px;
  }

  .mini-services-link {
    font-size: 16px;
  }

  .src-tagline {
    font-size: 20px;
  }

  .src-description {
    font-size: 14px;
  }

  .outsourcing-content h1 {
    font-size: 28px;
  }

  .outsourcing-banner h2 {
    font-size: 24px;
  }

  .outsourcing-banner p {
    font-size: 16px;
  }
}

/* Support Hero CSS */

.sprt-hero-section {
  position: relative;
  height: 40vh;
  width: 200vh;
  background: #13171a;
  color: #98989a;
  overflow: hidden;
}

#particles-js-sprt {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 1;
}

.sprt-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  animation: zoomIn 1s ease forwards;
  z-index: 2;
}

.sprt-tagline {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.sprt-description {
  font-size: 18px;
  color: #fff;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Support Page Content Styles */
.support-section {
  background-color: #13171a;
  color: #98989a;
  padding: 50px 0;
}

.support-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.support-content h1 {
  color: #fff;
  font-size: 48px;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
}

.support-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #b9b6b6;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.support-item {
  text-align: center;
}

.support-item i {
  color: #fff;
  font-size: 48px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.support-item:hover i {
  animation: shake 0.5s;
}

@keyframes shake {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-5px, 5px);
  }
  50% {
    transform: translate(5px, -5px);
  }
  75% {
    transform: translate(-5px, 5px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.support-item h3 {
  color: #b83506;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.support-item p {
  font-size: 16px;
  line-height: 1.6;
}

.tech-main {
  background-color: #13171a;
  color: #fff;
  padding: 50px;
  text-align: center;
  margin-top: 50px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  border: 1px solid transparent;
  border-color: rgb(71, 28, 28);
}

.tech-main:hover {
  border: 2px solid #7fffd4;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(127, 255, 212, 0.5);
}

.tech-main h2 {
  color: #b83506;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

/* Support Hero CSS */

.cstm-hero-section {
  position: relative;
  height: 40vh;
  width: 200vh;
  background: #13171a;
  color: #98989a;
  overflow: hidden;
}

#particles-js-cstm {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 1;
}

.cstm-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  animation: zoomIn 1s ease forwards;
  z-index: 2;
}

.cstm-tagline {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.cstm-description {
  font-size: 18px;
  color: #fff;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Support Page Responsive Styles */

@media screen and (max-width: 1200px) {
  .sprt-hero-section {
    width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .logo img {
    max-width: 150px;
  }

  .mini-navigation ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .mini-nav-icon {
    font-size: 20px;
    margin: 5px;
  }

  .mini-services-dropdown {
    right: 20px;
    top: 10px;
  }

  .mini-services-link {
    font-size: 20px;
  }

  .sprt-tagline {
    font-size: 24px;
  }

  .sprt-description {
    font-size: 16px;
  }

  .support-content h1 {
    font-size: 36px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .logo img {
    max-width: 120px;
  }

  .mini-nav-icon {
    font-size: 16px;
  }

  .mini-services-link {
    font-size: 16px;
  }

  .sprt-tagline {
    font-size: 20px;
  }

  .sprt-description {
    font-size: 14px;
  }

  .support-content h1 {
    font-size: 28px;
  }
}

/* Custom Builds Page Specific Styles */

.custom-builds-section {
  background-color: #13171a;
  color: #292929;
  padding: 50px 0;
}

.hero-section-2 {
  font-size: 28px;
}

.hero-section-2 p {
  color: #af0102;
}
.custom-builds-section h1 {
  color: #fff;
  font-size: 26px;
  text-align: center;
  margin-bottom: 50px;
  margin-top: 40px;
}

.custom-builds-section p {
  color: #fff;
}
.custom-builds-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.custom-builds-text {
  font-size: 24px;
  line-height: 1.6;
}
.custom-builds-image {
  display: inline-block;
  position: relative;
}

.custom-builds-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

@keyframes rgbBorder {
  0% {
    border: 2px solid #fff;
  }
  20% {
    border: 2px solid #af0102;
  }
  40% {
    border: 2px solid #ff9800;
  }
  60% {
    border: 2px solid #7fffd4;
  }
  80% {
    border: 2px solid #6eff24;
  }
  100% {
    border: 2px solid #fff;
  }
}

.custom-builds-image img {
  animation: rgbBorder 10s linear infinite;
}
.custom-builds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}
.custom-builds-item {
  background-color: #13171a;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}
.custom-builds-item:hover {
  transform: scale(1.05);
}
.custom-builds-item h3 {
  color: #af0102;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.custom-builds-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #eee;
}

/* Custom Builds Page Responsive Styles */

@media screen and (max-width: 1200px) {
  .cstm-hero-section {
    width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .custom-builds-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .logo img {
    max-width: 150px;
  }

  .mini-navigation ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .mini-nav-icon {
    font-size: 20px;
    margin: 5px;
  }

  .mini-services-dropdown {
    right: 20px;
    top: 10px;
  }

  .mini-services-link {
    font-size: 20px;
  }

  .cstm-tagline {
    font-size: 24px;
  }

  .cstm-description {
    font-size: 16px;
  }

  .custom-builds-section h1 {
    font-size: 30px;
  }

  .custom-builds-content {
    grid-template-columns: 1fr;
  }

  .custom-builds-image {
    margin-top: 30px;
  }

  .custom-builds-item h3 {
    text-align: center;
  }

  .custom-builds-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .logo img {
    max-width: 120px;
  }

  .mini-nav-icon {
    font-size: 16px;
  }

  .mini-services-link {
    font-size: 16px;
  }

  .cstm-tagline {
    font-size: 20px;
  }

  .cstm-description {
    font-size: 14px;
  }

  .custom-builds-section h1 {
    font-size: 28px;
  }
}

/* Case Studies Hero CSS */

.studies-hero-section {
  position: relative;
  height: 40vh;
  width: 200vh;
  background: #13171a;
  color: #98989a;
  overflow: hidden;
}

#particles-js-studies {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 1;
}

.studies-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  animation: zoomIn 1s ease forwards;
  z-index: 2;
}

.studies-tagline {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.studies-description {
  font-size: 18px;
  color: #fff;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Success Stories Content Styles */

.success-stories {
  padding: 80px 0;
  background-color: #13171a;
}

.success-stories h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.story-card {
  background-color: transparent;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  border-radius: 20px;
}

.story-card:hover {
  transform: translateY(-5px);
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
}

.story-content {
  padding: 30px;
}

.story-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.story-content p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #fff;
}

.story-author {
  display: flex;
  align-items: center;
}

.story-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

.story-author h4 {
  font-size: 18px;
  margin: 0;
}

/* Universal media query for screens larger than 1200px */
@media screen and (min-width: 1201px) {
  .mini-services-dropdown {
    top: 2%;
    right: 180px;
    font-size: 14px;
  }
}
