@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


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

:root {
  --primary-color: #ffcc00;
  --secondary-color: #ff3300;
  --primary-light: #ffe066;
  --secondary-light: #ff6644;
  --dark-color: #333333;
  --light-color: #ffffff;
  --gray-color: #f5f5f5;
  --text-color: #333333;
  --border-radius: 5px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
  overflow-x: hidden;
}

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

section {
  padding: 80px 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 15px;
  line-height: 1.2;
}

p {
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
  color: var(--dark-color);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: medium;
  outline: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  color: var(--light-color);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--light-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

header {
  background-color: var(--light-color);
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container img {
  height: auto;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  color: var(--dark-color);
  font-weight: 500;
  padding: 10px 0;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: medium;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--dark-color);
}

.marquee-container {
  background-color: var(--primary-color);
  padding: 15px 0px;
  overflow: hidden;
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  animation: 30s linear infinite marquee;
  width: max-content;
}

.marquee-content img {
  margin: 0px 10px;
}

@keyframes marquee {
  0%
}

.hero {
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.1), rgba(255, 51, 0, 0.1));
  padding: 100px 0px;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 1 1 0%;
  padding-right: 50px;
}

.hero-image {
  flex: 1 1 0%;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

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

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

.services {
  background-color: var(--light-color);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.data-recovery {
  background-color: var(--gray-color);
}

.recovery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.recovery-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.recovery-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.recovery-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.3rem;
}

.recovery-card p {
  padding: 0px 20px 20px;
  color: rgb(102, 102, 102);
}

.video-section {
  background-color: var(--light-color);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.video-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.3rem;
}

.video-card p {
  padding: 0 20px 20px;
  color: #666;
}

.gallery {
  background-color: var(--gray-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--light-color);
  font-weight: 500;
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
  background: rgba(255, 204, 0, 0.8);
  color: var(--dark-color);
}

.testimonials {
  background-color: var(--light-color);
}

.testimonial-carousel {
  max-width: 800px;
  margin: 0px auto;
  position: relative;
}

.testimonial-container {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.testimonial-slide {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.testimonial-content {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-rating {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 5px;
}

.author-info p {
  margin: 0px;
  font-size: 0.9rem;
  color: rgb(102, 102, 102);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.prev-btn,
.next-btn {
  background-color: var(--primary-color);
  color: var(--dark-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: medium;
  cursor: pointer;
  transition: var(--transition);
}

.prev-btn:hover,
.next-btn:hover {
  background-color: var(--secondary-color);
  color: var(--light-color);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin: 0px 20px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: rgb(204, 204, 204);
  border-radius: 50%;
  margin: 0px 5px;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-color);
}

.blog {
  background-color: var(--gray-color);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.blog-meta {
  color: rgb(102, 102, 102);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: 600;
  margin-top: 10px;
}

.read-more:hover {
  color: var(--primary-color);
}

.contact {
  background-color: var(--light-color);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.info-item h3 {
  margin-bottom: 5px;
}

.info-item a {
  color: var(--text-color);
}

.info-item a:hover {
  color: var(--secondary-color);
}

.contact-social h3 {
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--dark-color);
  border-radius: 50%;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--secondary-color);
  color: var(--light-color);
}

.contact-form {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgb(221, 221, 221);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
}

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

.map-container {
  margin-top: 50px;
}

.map-container h3 {
  margin-bottom: 20px;
  text-align: center;
}

.cta {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--light-color);
  text-align: center;
  padding: 60px 0;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--light-color);
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta .btn-primary {
  background-color: var(--light-color);
  color: var(--dark-color);
}

.cta .btn-primary:hover {
  background-color: var(--dark-color);
  color: var(--light-color);
}

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

.cta .btn-secondary:hover {
  background-color: var(--light-color);
  color: var(--secondary-color);
}

footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 80px 0 30px;
}

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

.footer-logo p {
  margin-top: 20px;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-links ul li,
.footer-services ul li,
.footer-contact ul li {
  margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
  color: var(--light-color);
  transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact ul li {
  display: flex;
  align-items: center;
}

.footer-contact ul li i {
  margin-right: 10px;
  color: var(--primary-color);
}

.footer-contact ul li a {
  color: var(--light-color);
}

.footer-contact ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--light-color);
  border-radius: 50%;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

.footer-policy {
  text-align: center;
}

.footer-policy ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-policy ul li a {
  color: #999;
  font-size: 0.9rem;
}

.footer-policy ul li a:hover {
  color: var(--primary-color);
}

.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 15px;
  transition: var(--transition);
}

.call-button {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

.call-button:hover {
  background-color: var(--dark-color);
  color: var(--primary-color);
  transform: scale(1.1);
}

.whatsapp-button {
  background-color: rgb(37, 211, 102);
  color: var(--light-color);
}

.whatsapp-button:hover {
  background-color: rgb(18, 140, 126);
  transform: scale(1.1);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--dark-color);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary-color);
  color: var(--light-color);
  transform: translateY(-5px);
}

-------------- .marquee-container {
  background-color: var(--primary-color);
  padding: 15px 0px;
  overflow: hidden;
}

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

<style>.map-container iframe {
  width: 100%;
  max-width: 100%;
  height: 350px;
}

@media screen and (max-width: 992px) {
  .hero .container {
    flex-direction: column;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

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

@media screen and (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    margin-top: 15px;
    display: none;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 10px 0;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

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

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .footer-policy ul {
    flex-direction: column;
    gap: 10px;
  }
}

@media screen and (max-width: 576px) {

  .service-grid,
  .recovery-grid,
  .video-grid,
  .gallery-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .testimonial-content {
    padding: 20px;
  }

  .floating-buttons {
    bottom: 20px;
    right: 20px;
  }

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

  .back-to-top {
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
  }
}