/* =========================
RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}
.container h2 {
  font-size: 40px;
  margin-bottom: 20px;
  text-align: center;
}
/* =========================
NAVBAR
========================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  color: #000;
}

.nav-container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 180px;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  color: #000;
  font-size: 17px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #3376cd;
}

.contact-btn {
  background: #3376cd;
  color: #fff;
  padding: 12px 24px;
  font-weight: 600;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #444444;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 45px;
  left: 0;
  background: #fff;
  width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li {
  border-bottom: 1px solid #333;
}

.dropdown-menu a {
  display: block;
  padding: 14px 18px;
}

.dropdown-menu a:hover {
  background: #3376cd;
  color: white;
}

/* Mobile */

.hamburger {
  display: none;
  font-size: 25px;
  cursor: pointer;
}

.mobile-contact {
  display: none;
}

/* =========================
FOOTER
========================= */

.footer {
  background: #fff;
  padding: 80px 0;
  color: #000;
}

.footer-grid {
  display: grid;
  grid-template-columns:
    2fr
    1fr
    1fr
    1.5fr;
  gap: 50px;
}

.footer-logo img {
  width: 180px;
}

.footer-summary {
  color: #333;
  line-height: 1.7;
  margin-top: 18px;
  max-width: 420px;
}

.footer h3 {
  color: #3376cd;
  margin-bottom: 20px;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer ul li {
  font-weight: 500;
}

.footer ul li a {
  color: #000;
}

.footer ul li a:hover {
  color: #3376cd;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  border-radius: 50%;
  color: white;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #3376cd;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact div {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.footer-contact i {
  background: #3376cd;
  padding: 12px;
  border-radius: 50%;
}

/* =========================
MARQUEE
========================= */

.marquee {
  background: black;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  overflow: hidden;
  padding: 30px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee-track span {
  font-size: 50px;
  font-weight: 700;
  color: white;
  /* padding-right: 50px; */
  white-space: nowrap;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =========================
COPYRIGHT
========================= */

.copyright {
  background: #3376cd;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 15px;
}

/* =========================
DUMMY SECTION
========================= */

.dummy-section {
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
}

/* =========================
1440PX
========================= */

@media (max-width: 1440px) {
  .container {
    width: 95%;
  }
}

/* =========================
1024PX
========================= */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    gap: 25px;
  }
}

/* =========================
768PX
========================= */

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .contact-btn {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: -100%;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    transition: 0.4s;
  }

  .nav-links.active {
    left: 0;
  }

  .mobile-contact {
    display: block;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    display: none;
    margin-top: 10px;
    width: 100%;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .marquee-track span {
    font-size: 35px;
  }

  .feature-grid,
  .assistance-grid,
  .guarantee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
425PX
========================= */

@media (max-width: 425px) {
  .logo h2 {
    font-size: 24px;
  }

  .marquee-track span {
    font-size: 28px;
  }

  .copyright {
    font-size: 13px;
  }

  .feature-grid,
  .assistance-grid,
  .guarantee-grid {
    grid-template-columns: 1fr;
  }

  .assistance-card {
    flex-direction: column;
    text-align: center;
  }

  .assistance-card i {
    min-width: auto;
  }

  .guarantee-text {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .guarantee-card {
    padding: 25px;
  }

  .guarantee-card h3 {
    font-size: 18px;
  }

  .guarantee-card p {
    font-size: 14px;
  }
}

/* =========================
375PX
========================= */

@media (max-width: 375px) {
  .logo h2 {
    font-size: 22px;
  }

  .nav-container {
    height: 75px;
  }
}

/* =========================
320PX
========================= */

@media (max-width: 320px) {
  .logo h2 {
    font-size: 20px;
  }

  .logo span {
    font-size: 12px;
  }

  .marquee-track span {
    font-size: 22px;
  }
}
/* HERO */

.hero {
  height: 90vh;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: 1s;
}

.slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: start;
  color: white;
  width: 90%;
  z-index: 2;
}

.hero-content h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 25px;
}

.hero-btn {
  background: #3376cd;
  padding: 14px 28px;
  color: white;
  display: inline-block;
  transition: 0.3s;
}
.primary-btn {
  background: #444444;
  padding: 14px 28px;
  color: white;
  display: inline-block;
  transition: 0.3s;
  border: 1px solid #444444;
}
.primary-btn:hover {
  background: #3376cd;
  border: 1px solid #1d4d8c;
  padding: 14px 28px;
  color: white;
  display: inline-block;
  transition: 0.3s;
}
.hero-btn:hover {
  background: #444444;
  color: white;
}
/* COMMON */

.section-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
}

.about,
.features,
.services-home,
.faq,
.testimonials,
.blogs-home {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.about-content p {
  line-height: 1.8;
  margin-bottom: 20px;
}

/* .small-title {
  color: #3376cd;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
} */

.about-image img {
  border-radius: 15px;
  box-shadow:
    -15px 15px 0px #3376cd,
    0 10px 30px rgba(0, 0, 0, 0.15);
  /* border-left: 5px solid #00bcd4; */
}

/* LAPTOP SOLUTIONS SECTION */

.laptop-solutions {
  padding: 100px 0;
  background: #1a2332;
  color: #fff;
}

.laptop-solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.laptop-solutions-image img {
  border-radius: 15px;
  box-shadow:
    15px 15px 0px #3376cd,
    0 10px 30px rgba(0, 0, 0, 0.3);
  /* border-left: 5px solid #00bcd4; */
}

.laptop-solutions-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  text-align: left;
  color: #fff;
}

.laptop-solutions-content p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ddd;
  font-size: 16px;
}

.service-grid,
.blog-grid,
.testimonial-grid,
.assistance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  padding: 30px;
  text-align: left;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  background: #e5e7eb;
  transition: 0.3s;
  border-radius: 15px;
}

.feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-top: 60px solid transparent;
  border-bottom: 60px solid #3376cd;
  border-right: 60px solid #3376cd;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-card i {
  font-size: 40px;
  color: #3376cd;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.feature-card h3 {
  color: #000;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: #555;
  line-height: 1.6;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

/* QUICK ASSISTANCE SECTION */

.quick-assistance {
  padding: 80px 0;
  background: linear-gradient(135deg, #3a81de 0%, #3376cd 100%);
}

.assistance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.assistance-card {
  background: #1a2332;
  padding: 35px;
  border-radius: 8px;
  display: flex;
  gap: 25px;
  align-items: flex-start;
  transition: 0.3s;
}

.assistance-card:hover {
  background: #232f3e;
  transform: translateY(-5px);
}

.assistance-card i {
  font-size: 40px;
  color: #3376cd;
  min-width: 50px;
}

.assistance-content h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.assistance-content p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}

/* QUALITY GUARANTEE SECTION */

.quality-guarantee {
  padding: 70px 0;
  background: #1a2332;
}

.guarantee-text {
  color: #fff;
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.guarantee-card {
  border: 2px solid #3376cd;
  padding: 40px;
  border-radius: 12px;
  background: transparent;
  transition: 0.3s;
  text-align: center;
}

.guarantee-card:hover {
  background: rgba(51, 118, 205, 0.1);
  transform: translateY(-8px);
}

.guarantee-card h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.guarantee-card p {
  color: #ccc;
  font-size: 16px;
  line-height: 1.7;
}

.service-card {
  overflow: hidden;
  position: relative;
}

.service-card img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}

.service-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  color: white;
  text-align: center;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 30px;
}

.counter-section {
  background: #0b121b; /* Dark Navy background */
  color: white;
  padding: 100px 0;
}

.counter {
  font-size: 50px;
  color: #3376cd; /* Blue color */
  margin-bottom: 10px;
}

/* "+" sign add karne ke liye CSS trick */
.counter::after {
  content: "+";
}

.counter-grid div p {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.cta {
  padding: 80px 0;
  background: #3376cd;
  text-align: center;
  color: white;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-btn {
  width: 100%;
  padding: 20px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-content {
  display: none;
  padding: 20px;
  background: #444444;
  color: #fff;
}

.faq-content.active {
  display: block;
}

.testimonial-card {
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.blog-card h3 {
  padding: 20px 0;
}
/* PAGE HERO */

.page-hero {
  height: 50vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.page-hero-content h1 {
  font-size: 60px;
  margin-bottom: 10px;
}

/* ABOUT COMPANY */

.about-company {
  padding: 100px 0;
}

.about-company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-company-image img {
  width: 100%;
  border-radius: 20px;
}

.small-title {
  color: #3376cd;
  font-weight: 700;
  text-align: left;
}

.about-company-content h2 {
  font-size: 42px;
  margin: 15px 0;
}

.about-company-content p {
  line-height: 1.8;
  margin-bottom: 20px;
}

/* MISSION */

.mission-section {
  padding: 100px 0;
  background: #f7f7f7;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mission-card {
  padding: 40px;
  text-align: center;
  background: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.mission-card i {
  font-size: 50px;
  color: #3376cd;
  margin-bottom: 20px;
}

/* CHOOSE */

.choose-us {
  padding: 100px 0;
}

.choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.choose-grid h2 {
  font-size: 42px;
  margin-bottom: 20px;
  text-align: left;
}

.check-list {
  margin-top: 25px;
}

.check-list div {
  margin-bottom: 15px;
  font-weight: 600;
}

.check-list i {
  color: #3376cd;
  margin-right: 10px;
}

/* TEAM */

.team-section {
  padding: 100px 0;
  background: #f7f7f7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  text-align: center;
  background: white;
  padding-bottom: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.team-card img {
  height: 320px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 20px;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .about-company-grid,
  .choose-grid {
    grid-template-columns: 1fr;
  }

  .mission-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero-content h1 {
    font-size: 40px;
  }

  .mission-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .about-company-content h2,
  .choose-grid h2 {
    font-size: 32px;
    text-align: left;
  }
}

@media (max-width: 425px) {
  .page-hero {
    height: 40vh;
  }

  .page-hero-content h1 {
    font-size: 32px;
  }

  .about-company,
  .choose-us,
  .mission-section,
  .team-section {
    padding: 70px 0;
  }
  .about-grid {
    display: flex;
    flex-direction: column-reverse;
  }
}
/* SERVICES PAGE */

.service-intro {
  padding: 100px 0;
}

.service-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-image img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 8px 8px 0 #3376cd;
}

.service-content h2 {
  font-size: 42px;
  margin: 20px 0;
}

.service-content p {
  line-height: 1.8;
  margin-bottom: 20px;
}

/* CORE SERVICES */

.core-services {
  padding: 100px 0;
  background: #fff;
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.core-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.core-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.5s;
}

.core-card:hover img {
  transform: scale(1.1);
}

.core-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  padding: 15px;
  text-align: center;
  color: #fff;
  border-radius: 10px;
}

/* SERVICE DETAILS */

.service-detail {
  padding: 100px 0;
}

.dark {
  background: #000;
  color: #fff;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail-image img {
  width: 100%;
  border-radius: 20px;
}

.service-detail-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.service-detail-content h4 {
  color: #3376cd;
  margin-top: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.service-detail-content p {
  line-height: 1.8;
}

.service-detail-content ul {
  margin-top: 20px;
}

.service-detail-content li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.service-detail-content li::before {
  content: "✖";
  position: absolute;
  left: 0;
  color: #3376cd;
}

/* SOLUTIONS */

.service-solution {
  padding: 100px 0;
}

.solution-list {
  margin: 25px 0;
}

.solution-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.solution-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #3376cd;
  font-weight: bold;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .service-intro-grid,
  .service-detail-grid {
    grid-template-columns: 2fr;
  }

  .core-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .core-grid {
    grid-template-columns: 1fr;
  }

  .service-content h2,
  .service-detail-content h2 {
    font-size: 32px;
  }

  .service-intro,
  .core-services,
  .service-detail,
  .service-solution {
    padding: 70px 0;
  }
}

@media (max-width: 425px) {
  .service-content h2,
  .service-detail-content h2 {
    font-size: 28px;
  }

  .core-card img {
    height: 260px;
  }
}
/* =========================
CONTACT PAGE
========================= */

.contact-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  text-align: left;
  font-size: 42px;
  margin-bottom: 40px;
}

.info-box {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.info-box i {
  width: 60px;
  height: 60px;
  background: #32bef2;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 22px;
  flex-shrink: 0;
}

.info-box h4 {
  margin-bottom: 8px;
  font-size: 20px;
}

.info-box p {
  line-height: 1.7;
  color: #666;
}

/* FORM */

.contact-form-box {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 16px;
  border-radius: 5px;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #32bef2;
}

/* MAP */

.map-section iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 70px 0;
  }

  .contact-info h2 {
    font-size: 34px;
    text-align: center;
  }

  .contact-form-box {
    padding: 30px;
  }

  .map-section iframe {
    height: 350px;
  }
}

@media (max-width: 425px) {
  .contact-info h2 {
    font-size: 28px;
  }

  .info-box {
    flex-direction: column;
    gap: 10px;
  }

  .contact-form-box {
    padding: 20px;
  }

  .map-section iframe {
    height: 300px;
  }
}
/* =========================
BLOG PAGE
========================= */

.featured-blog {
  padding: 100px 0;
}

.featured-blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.featured-blog-image img {
  width: 100%;
  border-radius: 20px;
}

.blog-category {
  display: inline-block;
  background: #3376cd;
  color: white;
  padding: 8px 15px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.featured-blog-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  text-align: left;
}

.featured-blog-content p {
  line-height: 1.8;
  margin-bottom: 25px;
}

/* BLOG GRID */

.blog-page {
  padding: 100px 0;
  background: #f8f9fa;
}

.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.blog-item:hover {
  transform: translateY(-10px);
}

.blog-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-content span {
  display: inline-block;
  background: #3376cd;
  color: white;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 15px;
}

.blog-content h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.blog-content p {
  line-height: 1.7;
  margin-bottom: 20px;
  color: #666;
}

.blog-content a {
  color: #3376cd;
  font-weight: 600;
}

/* PAGINATION */

.pagination {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 60px;
}

.pagination a {
  width: 65px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  color: black;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.pagination a.active {
  background: #3376cd;
  color: white;
}
.pagination a:hover {
  background: #444444;
  color: white;
}
/* NEWSLETTER */

.newsletter {
  padding: 100px 0;
  background: black;
  color: white;
  text-align: center;
}

.newsletter h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.newsletter p {
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  max-width: 700px;
  margin: auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  outline: none;
  border-radius: 6px;
}

.newsletter-form button {
  background: #3376cd;
  color: white;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}
.newsletter-form button:hover {
  background: #444444;
  color: white;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  border-radius: 6px;
}
/* RESPONSIVE */

@media (max-width: 1024px) {
  .featured-blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-page-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .blog-page-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .featured-blog-content h2,
  .newsletter h2 {
    font-size: 32px;
    text-align: left;
  }

  .featured-blog,
  .blog-page,
  .newsletter {
    padding: 70px 0;
  }
}

@media (max-width: 425px) {
  .featured-blog-content h2,
  .newsletter h2 {
    font-size: 28px;
    text-align: left;
  }

  .blog-content h3 {
    font-size: 20px;
  }
  .pagination a {
    padding: 0px 35px;
  }
}
#brandMenu {
  display: none;
  padding-left: 20px;
}

#brandMenu.show {
  display: block;
}
@media (max-width: 769px) {
  .feature-grid,
  .service-grid,
  .testimonial-grid,
  .blog-grid,
  .assistance-grid,
  .guarantee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .assistance-card {
    flex-direction: row;
    text-align: center;
  }
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    display: flex;
    flex-direction: column-reverse;
  }
  .laptop-solutions-grid {
    display: flex;
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 48px;
  }
}
@media (max-width: 426px) {
  .hero-content h1 {
    font-size: 42px;
  }
  .counter-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .feature-grid,
  .about-grid,
  .service-grid,
  .testimonial-grid,
  .blog-grid,
  .laptop-solutions-grid,
  .assistance-grid,
  .guarantee-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .counter-grid div {
    /* margin-bottom: 30px; */
    margin-inline: 30px;
    background: #070d12;
    padding: 30px 0px;
    text-align: center;
    border-radius: 20px;
  }
}
.testimonials {
  padding: 100px 0;
  background: #071523;
  color: #fff;
}

.testimonial-slider {
  overflow: hidden;
  width: 100%;
  margin-top: 60px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.8s ease;
}

.testimonial-card {
  flex: 0 0 calc(25% - 20px);
  margin: 0 10px;
  background: #162535;
  padding: 35px 25px;
  text-align: center;
  border-radius: 10px;
}

.testimonial-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 20px;
}

.testimonial-card h4 {
  margin-bottom: 15px;
}

.stars {
  color: #3376cd;
  font-size: 24px;
  margin-bottom: 20px;
}

.testimonial-card p {
  line-height: 1.8;
  color: #d8d8d8;
}

/* 1024px */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(25% - 20px);
  }
}

/* Tablet */
@media (max-width: 769px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 20px);
  }
  .testimonial-slider {
    margin-top: 20px;
  }
  .padding-XY {
    padding: 0px 15px !important;
  }
  .newsletter p {
    text-align: left;
  }
}

/* Mobile */
@media (max-width: 426px) {
  .testimonial-card {
    flex: 0 0 calc(100% - 20px);
  }
  .padding-XY {
    padding: 0px 15px !important;
  }
  .newsletter p {
    text-align: left;
  }
}
