/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  /* NAVBAR */
  .navbar {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    background: white;
  }
  
  .log img {
    width: 160px;
  }
  
  /* MENU */
  .menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-left: auto;
  }
  
  .menu a {
    text-decoration: none;
    color: #333;
    font-size: 17.5px;
    font-weight: 500;
    transition: 0.3s;
  }
  
  .menu a:hover {
    color: #ff5a14;
  }
  
  /* HERO */
  .hero {
    width: 100%;
    height: 600px;
    overflow: hidden;
  }
  
  .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* CARDS */
  .cards {
    display: flex;
    justify-content: center;
    gap: 25px;
  
    max-width: 1200px;
    margin: -28px auto 0;
  
    position: relative;
    z-index: 2;
  }
  
  /* CARD */
  .card {
    background: white;
    width: 260px;
    padding: 20px;
  
    border-radius: 10px;
    text-align: center;
  
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  /* ICON */
  .card i {
    font-size: 30px;
    color: #ff5a14;
    margin-bottom: 10px;
  }
  
  /* TEXT */
  .card h4 {
    margin: 10px 0;
    font-size: 18px;
  }
  
  .card p {
    font-size: 14px;
    color: #555;
  }
 /* WHY SECTION */
.Description {
    text-align: center;
    margin-top: 60px;
  }
  
  /* TITLE */
  .Description h1 {
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: bold;
  }
  
  /* ROW CONTAINER */
  .features {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap; /* keeps it responsive */
  }
  
  /* EACH ITEM */
  .fast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 230px;
    text-align: left;
  }
  
  /* ICON */
  .fast i {
    color: #ff5a14;
    font-size: 18px;
    margin-top: 4px;
  }
  
  /* TEXT WRAPPER */
  .text h5 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  
  .text p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
  }

  .about {
    position: relative;   /* 🔥 important */
    width: 100%;
    height: 300px;
    overflow: hidden;
  }
  /* image */
.about img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* text on image */
.about h5 {
  position: absolute;   /* 🔥 puts on image */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;                 /* Text color */
    font-weight: bold;            /* Bold text */
    background-color: #333;       /* Dark background */
    font-size: 29px;
    padding: 8px 12px;            /* Space inside */
    border-radius: 10px;          /* Rounded corners */
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5); /* Shadow for text */
}
/* ABOUT DESCRIPTION SECTION */
.aboutdescription {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 40px;
}
/* RIGHT CONTENT */
.des {
  max-width: 600px;
}
/* BUTTON */
.des button {
  background-color: #ff2b2b;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  cursor: pointer;
}
/* HEADING */
.des h2 {
  font-size: 52px;
  color: #ff5a14;
  margin-bottom: 25px;
}

/* PARAGRAPH */
.des p {
  font-size: 20px;
  line-height: 1.5;
  color: #333;
}
.aboutdescription img {
  width: 500px;
  height: 550px;
  object-fit: cover;
  border-radius: 25px;
  border: solid 4px orangered;
  transition: 0.4s ease;
}
  

.aboutdescription img:hover{
 
  transform: scale(1.03);

  box-shadow:
  0 0 10px orangered,
  0 0 20px orangered,
  0 0 40px orangered,
  0 0 80px rgba(255, 69, 0, 0.8);
}
.moto {
  text-align: center;
  margin-top: 80px;
}
.moto h2 {
  font-size: 45px;
  color: #0d2d62;
  font-weight: 700;
}
/* MAIN CONTAINER */
.visiondis {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-top: 70px;
  padding-bottom: 80px;
}
 /* SINGLE BOX */
.vision {
  width: 390px;
  background: #f8f8f8;
  border-radius: 8px;
  padding: 70px 35px 35px;
  text-align: center;
  position: relative;
}

/* ICON */
.vision i {
  width: 65px;
  height: 65px;
  background: #e1261c;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
}
.vision h3 {
  font-size: 20px;
  color: #0d2d62;
  margin-bottom: 20px;
}

/* PARAGRAPH */
.vision p {
  line-height: 1.8;
  color: #333;
  font-size: 17px;
}
/* FOOTER TOP */
.footdiscription {
  background: #071739;
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 70px 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* SINGLE COLUMN */
.footdis {
  width: 260px;
}

/* TITLES */
.footdis h3 {
  color: white;
  font-size: 24px;
  margin-bottom: 25px;
  position: relative;
}

/* SMALL ORANGE LINE */
.footdis h3::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #ff5a14;
  position: absolute;
  left: 0;
  bottom: -10px;
}

/* PARAGRAPH */
.footdis p {
  color: #c9d1e3;
  line-height: 1.8;
  font-size: 16px;
}

/* LIST */
.footdis ol {
  padding: 0;
}

.footdis li {
  list-style: none;
  margin-bottom: 12px;
}

/* LINKS */
.footdis a {
  text-decoration: none;
  color: #c9d1e3;
  transition: 0.3s;
}

.footdis a:hover {
  color: #ff5a14;
  padding-left: 5px;
}
/* BOTTOM FOOTER */
footer {
  background: #0d2d62;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  color: white;
  font-size: 15px;
  flex-wrap: wrap;
}

.footdis i{
  color:white;
  font-size: 24px;
  border: solid 1px white;
  padding: 12px;
  border-radius: 50%;
  margin-top: 5px;
}
/*laptop repaire page*/
.lapservice{
  position: relative;   /* 🔥 important */
  width: 100%;
  height: 300px;
  overflow: hidden;
}
/* image */
.lapservice img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.servicearea{
  display: flex;
  justify-content: center;
  align-items: center;   /* 🔥 vertical center */
  gap: 80px;
  padding: 70px 80px;
}
/* LEFT IMAGE */
.servicearea img{
  width: 420px;
  height: 420px;
  object-fit: cover;
  border: 2px solid red;
  border-radius: 50%;
  padding: 20px;
}
.servicearea img.ds{
  padding:0;
}
/* RIGHT CONTENT */
.servicedis{
  width: 600px;
}
/* BUTTON */
.servicedis button{
  background-color: #ff2b2b;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  cursor: pointer;
}
/* HEADING */
.servicedis h2{
  font-size: 60px;
  color: #ff5a14;
  margin-bottom: 25px;
}

/* PARAGRAPH */
.servicedis p{
  font-size: 22px;
  line-height: 1.8;
  color: #333;
}
.servicearea1{
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 90px;

  padding: 80px 120px;

  background: #E6E4E6;
}

/* LEFT TEXT */
.servicedis1{
  width: 650px;
}
/* LEFT TEXT */
.servicedis1{
  width: 650px;
}

/* BUTTON */
.servicedis1 button{
  background-color: #e53935;
  color: white;

  border: none;
  border-radius: 6px;

  padding: 10px 18px;

  font-size: 18px;
  font-weight: bold;

  margin-bottom: 20px;
}
/* HEADING */
.servicedis1 h2{
  font-size: 60px;
  color: #072b6b;

  margin-bottom: 25px;
}

/* PARAGRAPH */
.servicedis1 p{
  font-size: 22px;
  line-height: 1.8;

  color: #222;

  margin-bottom: 25px;
}

/* LIST */
.servicedis1 ul{
  list-style: none;
}

.servicedis1 li{
  margin-bottom: 18px;
  font-size: 22px;
}

/* ICON */
.servicedis1 li i{
  color: #e53935;
  margin-right: 12px;
}

/* RIGHT IMAGE */
.servicearea1 img{
  width: 420px;
  height: 420px;
  object-fit: cover;
  border: 2px solid #ff3b3b;
  border-radius: 50%;
  padding: 10px;
}

.servicedis li{
  margin-bottom: 18px;
  font-size: 22px;
  margin-top: 25px;
}
.servicedis li i{
  color: #e53935;
  margin-right: 12px;
}

.servicedis ul{
  list-style-type: none;
}


.contact{

 
    position: relative;   /* 🔥 important */
    width: 100%;
    height: 300px;
    overflow: hidden;
}
  /* image */
.contact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* text on image */
.contact h5 {
  position: absolute;   /* 🔥 puts on image */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;                 /* Text color */
    font-weight: bold;            /* Bold text */
    background-color: #333;       /* Dark background */
    font-size: 29px;
    padding: 8px 12px;            /* Space inside */
    border-radius: 10px;          /* Rounded corners */
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5); /* Shadow for text */
}
.condetails{
  display: flex;
  justify-content: center;
  gap: 35px;

  padding: 60px 20px;
}

/* SINGLE BOX */
.conbo{
  width: 380px;

  min-height: 300px;

  background: white;

  border: 2px solid #d62828;
  border-radius: 20px;

  text-align: center;

  padding: 0 20px 40px;

  box-shadow: 0 8px 20px rgba(0,0,0,0.08);

  transition: 0.3s;
}

.conbo:hover{
  transform: translateY(-8px);
}
/* ICON IMAGE */
.con-ima{
  width: 110px;
  height: 110px;

  object-fit: contain;

  margin-bottom: 20px;
}
/* HEADING */
.conbo h3{
  font-size: 38px;

  color: #0b2c6d;

  margin-bottom: 18px;
}

/* TEXT */
.conbo p{
  font-size: 24px;

  line-height: 1.7;

  color: #333;
}
.contact-section{
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  padding: 60px 20px;
}
.contact-box{
  background-color: #002060;
  padding: 50px;
  border-radius: 30px;
  width: 100%;
  max-width: 650px;
}

.help-tag{
  background-color: red;
  color: white;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 20px;
}

.contact-box h2{
  color: white;
  font-size: 50px;
  margin-bottom: 30px;
  font-weight: bold;
}

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

.contact-box .form-control{
  padding: 18px;
  border: none;
  border-radius: 0;
  font-size: 18px;
}

.submit-btn{
  background-color: red;
  color: white;
  padding: 15px 40px;
  border: none;
  width: fit-content;
  font-size: 18px;
  transition: 0.3s;
}

.submit-btn:hover{
  background-color: darkred;
}

.map{
  width: 100%;
  max-width: 650px;
}

.map-frame{
  width: 100%;
  height: 100%;
  min-height: 760px;
  border: 0;
  border-radius: 30px;
}
/* =========================================
   DESKTOP REPAIR PAGE
========================================= */

.desktop-repair-section {
  background-color: #ffffff;
  font-family: Arial, sans-serif;
}

.desktop-container {
  width: 85%;
  max-width: 1200px;
  margin: auto;
}

/* =========================================
 INTRODUCTION
========================================= */

.desktop-intro {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}

.intro-content {
  flex: 1;
}

.intro-content h2,
.why-text h2 {
  font-size: 38px;
  color: #172946;
  margin: 12px 0 20px;
}

.intro-content p,
.why-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

.section-tag {
  color: #f58220;
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 1.5px;
}

.intro-image {
  flex: 1;
}

.intro-image img,
.why-image img {
  width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

/* Button */

.desktop-btn,
.cta-btn {
  display: inline-block;
  background-color: #f58220;
  color: white;
  padding: 13px 28px;
  text-decoration: none;
  margin-top: 15px;
  border-radius: 4px;
  font-weight: bold;
  transition: 0.3s;
}

.desktop-btn:hover,
.cta-btn:hover {
  background-color: #172946;
}


/* =========================================
 SERVICES
========================================= */

.services-area {
  background-color: #f5f7fa;
  padding: 80px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  color: #172946;
  font-size: 36px;
  margin: 12px 0;
}

.section-heading p {
  color: #666;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background-color: white;
  padding: 30px;
  border-radius: 6px;
  transition: 0.3s;
  border-bottom: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-7px);
  border-bottom: 3px solid #f58220;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-icon {
  font-size: 35px;
  margin-bottom: 15px;
}

.service-card h3 {
  color: #172946;
  margin-bottom: 12px;
}

.service-card p {
  color: #666;
  line-height: 1.7;
  font-size: 15px;
}


/* =========================================
 WHY CHOOSE US
========================================= */

.why-choose-area {
  padding: 80px 0;
}

.why-choose-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.why-image,
.why-text {
  flex: 1;
}

.features-list {
  margin-top: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.feature-item span {
  background-color: #f58220;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.feature-item p {
  margin: 0;
}


/* =========================================
 REPAIR PROCESS
========================================= */

.repair-process {
  background-color: #172946;
  padding: 80px 0;
}

.light-heading h2 {
  color: white;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.process-card {
  color: white;
  padding: 25px;
  text-align: center;
}

.process-number {
  font-size: 42px;
  font-weight: bold;
  color: #f58220;
  margin-bottom: 15px;
}

.process-card h3 {
  margin-bottom: 12px;
}

.process-card p {
  color: #c8d0dc;
  line-height: 1.6;
  font-size: 15px;
}


/* =========================================
 CALL TO ACTION
========================================= */

.desktop-cta {
  text-align: center;
  padding: 70px 20px;
  background-color: #f5f7fa;
}

.desktop-cta h2 {
  font-size: 34px;
  color: #172946;
  margin-bottom: 15px;
}

.desktop-cta p {
  color: #666;
  max-width: 650px;
  margin: auto;
  line-height: 1.7;
}


/* =========================================
 RESPONSIVE DESIGN
========================================= */

@media (max-width: 992px) {

  .desktop-intro,
  .why-choose-content {
      flex-direction: column;
      gap: 40px;
  }

  .services-grid {
      grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
      grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 600px) {

  .desktop-container {
      width: 90%;
  }

  .desktop-intro {
      padding: 50px 0;
  }

  .intro-content h2,
  .why-text h2 {
      font-size: 28px;
  }

  .section-heading h2 {
      font-size: 28px;
  }

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

  .services-area,
  .why-choose-area,
  .repair-process {
      padding: 55px 0;
  }

  .desktop-cta h2 {
      font-size: 27px;
  }

}
.dsbt{
  background-color: #ff2b2b;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  cursor: pointer;
}
/* =========================================
   DATA RECOVERY PAGE
========================================= */

.data-recovery-page {
  font-family: Arial, sans-serif;
  background: #ffffff;
}


/* CONTAINER */

.recovery-container {
  width: 85%;
  max-width: 1200px;
  margin: auto;
}


/* =========================================
 INTRODUCTION
========================================= */

.recovery-intro {
  padding: 80px 0;
}

.recovery-intro-content {
  display: flex;
  align-items: center;
  gap: 70px;
}

.recovery-text,
.recovery-image {
  flex: 1;
}

.recovery-tag {
  color: #e6781b;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
}

.recovery-text h1 {
  color: #1b314f;
  font-size: 42px;
  margin: 12px 0 20px;
}

.recovery-text p {
  color: #5f6772;
  line-height: 1.8;
  margin-bottom: 15px;
}

.recovery-image img {
  width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}


/* BUTTON */

.recovery-btn,
.recovery-cta-btn {
  display: inline-block;
  background: #f58220;
  color: white;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 15px;
  transition: 0.3s;
}

.recovery-btn:hover,
.recovery-cta-btn:hover {
  background: #172946;
}


/* =========================================
 WHAT WE RECOVER
========================================= */

.recover-services {
  background: #f5f7fa;
  padding: 80px 0;
}

.recovery-heading {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}

.recovery-heading h2 {
  color: #1b314f;
  font-size: 36px;
  margin: 12px 0;
}

.recovery-heading p {
  color: #66707c;
  line-height: 1.7;
}

.recovery-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.recovery-card {
  background: white;
  padding: 30px 25px;
  border-radius: 8px;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: 0.3s;
}

.recovery-card:hover {
  transform: translateY(-7px);
  border-bottom-color: #f58220;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.recovery-icon {
  font-size: 38px;
  margin-bottom: 15px;
}

.recovery-card h3 {
  color: #1b314f;
  margin-bottom: 12px;
}

.recovery-card p {
  color: #66707c;
  font-size: 15px;
  line-height: 1.7;
}


/* =========================================
 SUPPORTED DEVICES
========================================= */

.supported-devices {
  padding: 90px 0;
}

.devices-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.devices-visual,
.devices-text {
  flex: 1;
}

.devices-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.device-box {
  background: #172946;
  color: white;
  padding: 35px 20px;
  border-radius: 8px;
  text-align: center;
  transition: 0.3s;
}

.device-box:hover {
  background: #f58220;
  transform: translateY(-5px);
}

.device-box span {
  display: block;
  font-size: 42px;
  margin-bottom: 12px;
}

.device-box p {
  margin: 0;
  font-weight: bold;
}

.devices-text h2 {
  color: #1b314f;
  font-size: 36px;
  margin: 12px 0 20px;
}

.devices-text p {
  color: #66707c;
  line-height: 1.8;
}

.devices-text ul {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.devices-text li {
  color: #55606d;
  margin-bottom: 13px;
}

.devices-text li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f58220;
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 13px;
}


/* =========================================
 RECOVERY PROCESS
========================================= */

.recovery-process {
  background: #172946;
  padding: 80px 0;
}

.light-heading h2 {
  color: white;
}

.recovery-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.recovery-step {
  text-align: center;
  padding: 25px 15px;
}

.step-number {
  color: #f58220;
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 15px;
}

.recovery-step h3 {
  color: white;
  margin-bottom: 12px;
}

.recovery-step p {
  color: #c5ced9;
  font-size: 15px;
  line-height: 1.7;
}


/* =========================================
 IMPORTANT NOTICE
========================================= */

.recovery-notice {
  padding: 60px 0;
  background: #fff7ee;
}

.notice-content {
  display: flex;
  align-items: center;
  gap: 25px;
  max-width: 900px;
  margin: auto;
}

.notice-icon {
  min-width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #f58220;
  color: white;
  font-size: 30px;
  font-weight: bold;

  display: flex;
  align-items: center;
  justify-content: center;
}

.notice-content h2 {
  color: #1b314f;
  margin-bottom: 10px;
}

.notice-content p {
  color: #5f6772;
  line-height: 1.7;
}


/* =========================================
 CALL TO ACTION
========================================= */

.recovery-cta {
  text-align: center;
  padding: 80px 20px;
  background: #f5f7fa;
}

.recovery-cta h2 {
  color: #1b314f;
  font-size: 36px;
  margin-bottom: 15px;
}

.recovery-cta p {
  color: #66707c;
  max-width: 650px;
  margin: auto;
  line-height: 1.7;
}
.device-box .thunder {
  color: orange;
}

.device-box:hover .thunder {
  color: white;
}
/* =========================================
 RESPONSIVE DESIGN
========================================= */

@media (max-width: 992px) {

  .recovery-intro-content,
  .devices-content {
      flex-direction: column;
      gap: 45px;
  }

  .recovery-services-grid {
      grid-template-columns: repeat(2, 1fr);
  }

  .recovery-process-grid {
      grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 600px) {

  .recovery-container {
      width: 90%;
  }

  .recovery-intro,
  .recover-services,
  .supported-devices,
  .recovery-process {
      padding: 55px 0;
  }

  .recovery-text h1 {
      font-size: 30px;
  }

  .recovery-heading h2,
  .devices-text h2,
  .recovery-cta h2 {
      font-size: 28px;
  }

  .recovery-services-grid,
  .recovery-process-grid {
      grid-template-columns: 1fr;
  }

  .notice-content {
      flex-direction: column;
      text-align: center;
  }

}

.dtbtn{
  background-color: #ff2b2b;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  cursor: pointer;
}

/* =========================================
   REFURBISHED LAPTOPS PAGE
========================================= */

.refurbished-page {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
}


/* =========================================
 CONTAINER
========================================= */

.refurbished-container {
  width: 85%;
  max-width: 1200px;
  margin: auto;
}


/* =========================================
 COMMON TAG
========================================= */

.refurbished-tag {
  display: inline-block;
  color: #e6781b;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
}


/* =========================================
 INTRODUCTION
========================================= */

.refurbished-intro {
  padding: 85px 0;
}

.refurbished-intro-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.refurbished-text,
.refurbished-visual {
  flex: 1;
}

.refurbished-text h1 {
  font-size: 42px;
  line-height: 1.2;
  color: #172946;
  margin: 15px 0 22px;
}

.refurbished-text p {
  color: #5f6772;
  line-height: 1.8;
  margin-bottom: 15px;
}


/* INTRO BUTTON */

.refurbished-btn {
  display: inline-block;
  background-color: #f58220;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 15px;
  transition: 0.3s;
}

.refurbished-btn:hover {
  background-color: #172946;
  transform: translateY(-2px);
}


/* =========================================
 LAPTOP VISUAL
========================================= */

.refurbished-visual {
  background: #172946;
  padding: 40px;
  border-radius: 10px;
  position: relative;
  box-sizing: border-box;
}

.laptop-showcase {
  text-align: center;
  color: white;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.showcase-icon {
  font-size: 75px;
  margin-bottom: 15px;
}

.laptop-showcase h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.laptop-showcase p {
  color: #c9d3df;
  margin: 0;
  line-height: 1.6;
}

.mini-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  margin-top: 18px;
}

.mini-feature span {
  width: 26px;
  height: 26px;
  background: #f58220;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
}

.mini-feature p {
  margin: 0;
  color: #e0e6ed;
}


/* =========================================
 WHY REFURBISHED
========================================= */

.why-refurbished {
  background: #f5f7fa;
  padding: 85px 0;
}

.refurbished-heading {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}

.refurbished-heading h2 {
  color: #172946;
  font-size: 36px;
  margin: 15px 0;
}

.refurbished-heading p {
  color: #66707c;
  line-height: 1.7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.benefit-card {
  background: white;
  padding: 35px 28px;
  text-align: center;
  border-radius: 8px;
  border-bottom: 3px solid transparent;
  transition: 0.3s;
}

.benefit-card:hover {
  transform: translateY(-7px);
  border-bottom-color: #f58220;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.benefit-icon {
  font-size: 42px;
  margin-bottom: 18px;
}

.benefit-card h3 {
  color: #172946;
  margin-bottom: 12px;
}

.benefit-card p {
  color: #66707c;
  font-size: 15px;
  line-height: 1.7;
}


/* =========================================
 LAPTOP USERS
========================================= */

.laptop-users {
  padding: 90px 0;
}

.users-content {
  display: flex;
  align-items: center;
  gap: 70px;
}

.users-text {
  flex: 1;
}

.users-text h2 {
  color: #172946;
  font-size: 36px;
  margin: 15px 0 20px;
}

.users-text p {
  color: #66707c;
  line-height: 1.8;
}

.users-grid {
  flex: 1.2;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.user-card {
  padding: 25px;
  background: #f5f7fa;
  border-radius: 8px;
  transition: 0.3s;
}

.user-card:hover {
  background: #172946;
  transform: translateY(-5px);
}

.user-card div {
  font-size: 35px;
  margin-bottom: 12px;
}

.user-card h3 {
  color: #172946;
  margin-bottom: 8px;
}

.user-card p {
  color: #66707c;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.user-card:hover h3 {
  color: white;
}

.user-card:hover p {
  color: #d4dce5;
}


/* =========================================
 QUALITY PROCESS
========================================= */

.laptop-quality-process {
  background: #172946;
  padding: 85px 0;
}

.light-heading h2 {
  color: white;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.quality-step {
  text-align: center;
  padding: 25px 15px;
}

.quality-number {
  color: #f58220;
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 15px;
}

.quality-step h3 {
  color: white;
  margin-bottom: 12px;
}

.quality-step p {
  color: #c8d2dd;
  font-size: 15px;
  line-height: 1.7;
}


/* =========================================
 TRUST SECTION
========================================= */

.refurbished-trust {
  padding: 90px 0;
}

.trust-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.trust-badge,
.trust-text {
  flex: 1;
}

.trust-badge {
  background: #f5f7fa;
  border-radius: 10px;
  padding: 50px 30px;
  text-align: center;
}

.trust-circle {
  width: 100px;
  height: 100px;
  background: #f58220;
  color: white;
  border-radius: 50%;
  margin: 0 auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 50px;
  font-weight: bold;
}

.trust-badge h3 {
  color: #172946;
  font-size: 24px;
  margin-bottom: 10px;
}

.trust-badge p {
  color: #66707c;
}

.trust-text h2 {
  color: #172946;
  font-size: 36px;
  margin: 15px 0 20px;
}

.trust-text > p {
  color: #66707c;
  line-height: 1.8;
}

.trust-list {
  margin-top: 25px;
}

.trust-item {
  color: #56616d;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item span {
  width: 24px;
  height: 24px;
  min-width: 24px;

  background: #f58220;
  color: white;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  font-weight: bold;
}


/* =========================================
 CALL TO ACTION
========================================= */

.refurbished-cta {
  background: #f5f7fa;
  text-align: center;
  padding: 85px 20px;
}

.refurbished-cta h2 {
  color: #172946;
  font-size: 36px;
  margin: 15px auto;
}

.refurbished-cta p {
  color: #66707c;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

.refurbished-cta-btn {
  display: inline-block;
  background: #f58220;
  color: white;
  padding: 15px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 25px;
  transition: 0.3s;
}

.refurbished-cta-btn:hover {
  background: #172946;
  transform: translateY(-2px);
}


/* =========================================
 RESPONSIVE DESIGN
========================================= */

@media (max-width: 992px) {

  .refurbished-intro-content,
  .users-content,
  .trust-content {
      flex-direction: column;
      gap: 45px;
  }

  .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
  }

  .quality-grid {
      grid-template-columns: repeat(2, 1fr);
  }

  .users-text,
  .users-grid,
  .trust-badge,
  .trust-text {
      width: 100%;
  }

}


@media (max-width: 600px) {

  .refurbished-container {
      width: 90%;
  }

  .refurbished-intro,
  .why-refurbished,
  .laptop-users,
  .laptop-quality-process,
  .refurbished-trust {
      padding: 55px 0;
  }

  .refurbished-text h1 {
      font-size: 30px;
  }

  .refurbished-heading h2,
  .users-text h2,
  .trust-text h2,
  .refurbished-cta h2 {
      font-size: 28px;
  }

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

  .refurbished-visual {
      padding: 30px 25px;
  }

}
/* =========================================
   FINAL NAVBAR - DROPDOWN & MOBILE MENU
========================================= */

/* Make sure the navbar stays above all content */
header {
  position: relative;
  z-index: 1000;
}

/* Logo link */
.log a {
  display: flex;
  align-items: center;
}

/* Mobile menu button - hidden on desktop */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #1d3557;
}

/* Dropdown parent */
.menu .dropdown {
  position: relative;
}

/* Services link */
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Dropdown box */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 0;

  min-width: 190px;
  padding: 10px 0;
  margin: 0;

  list-style: none;
  background: #ffffff;
  border-radius: 8px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: 0.3s ease;
}

/* Dropdown links */
.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 11px 20px;
  white-space: nowrap;
}

/* Hover effect */
.dropdown-menu li a:hover {
  background: #f5f5f5;
  color: #f58220;
}

/* Show dropdown on desktop hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Rotate arrow */
.dropdown:hover .fa-chevron-down {
  transform: rotate(180deg);
}

.fa-chevron-down {
  transition: 0.3s ease;
}


/* =========================================
   TABLET & MOBILE NAVIGATION
========================================= */

@media (max-width: 900px) {

  .navbar {
    position: relative;
  }

  /* Show hamburger */
  .menu-toggle {
    display: block;
  }

  /* Mobile menu */
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    display: none;
    flex-direction: column;
    align-items: flex-start;

    background: #ffffff;
    padding: 15px 0;

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  }

  /* Show menu when JavaScript adds active class */
  .menu.active {
    display: flex;
  }

  .menu > li {
    width: 100%;
  }

  .menu > li > a {
    display: block;
    padding: 13px 25px;
    width: 100%;
  }

  /* Dropdown becomes part of mobile menu */
  .menu .dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;

    width: 100%;
    min-width: auto;

    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;

    box-shadow: none;
    border-radius: 0;
    background: #f7f7f7;

    padding: 0;
  }

  /* Open dropdown on mobile */
  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu li a {
    padding: 12px 45px;
  }

  /* Prevent desktop hover behaviour from causing problems */
  .dropdown:hover .dropdown-menu {
    transform: none;
  }

  /* Arrow rotation when mobile dropdown opens */
  .dropdown.active .fa-chevron-down {
    transform: rotate(180deg);
  }
}


/* =========================================
   SMALL MOBILE NAVBAR
========================================= */

@media (max-width: 500px) {

  .navbar {
    padding-left: 20px;
    padding-right: 20px;
  }

  .log img {
    max-width: 115px;
    height: auto;
  }

  .menu-toggle {
    font-size: 24px;
  }
}
/* =========================================
   FINAL RESPONSIVE DESIGN
   FR COMPUTERS WEBSITE
========================================= */


/* =========================================
   TABLET RESPONSIVE
   601px - 900px
========================================= */

@media (max-width: 900px) {

  /* ---------- HOME PAGE ---------- */

  .hero img {
    width: 100%;
    height: auto;
    display: block;
  }

  .cards {
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 30px;
    gap: 25px;
  }

  .card {
    width: 280px;
  }

  .Description {
    padding: 60px 30px;
  }

  .features {
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }

  .fast {
    width: 40%;
  }


  /* ---------- ABOUT PAGE ---------- */

  .aboutdescription {
    flex-direction: column;
    padding: 60px 8%;
    gap: 45px;
  }

  .aboutdescription img {
    width: min(500px, 100%);
    height: auto;
    max-height: none;
  }

  .des {
    width: 100%;
  }

  .visiondis {
    flex-wrap: wrap;
    padding: 0 30px 70px;
  }

  .vision {
    width: min(390px, 100%);
  }


  /* ---------- LAPTOP REPAIR PAGE ---------- */

  .servicearea,
  .servicearea1 {
    flex-direction: column;
    padding: 60px 8%;
    gap: 40px;
  }

  .servicearea img,
  .servicearea1 img {
    width: min(500px, 100%);
    height: auto;
    max-height: 450px;
  }

  .servicedis,
  .servicedis1 {
    width: 100%;
  }

  /* Keep alternating sections visually correct */
  .servicearea1 img {
    order: 2;
  }

  .servicedis1 {
    order: 1;
  }


  /* ---------- CONTACT PAGE ---------- */

  .condetails {
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 30px;
    gap: 25px;
  }

  .conbo {
    width: min(320px, 100%);
  }

  .contact-section {
    flex-direction: column;
    padding: 60px 8%;
    gap: 40px;
  }

  .contact-box,
  .map {
    width: 100%;
  }

  .map-frame {
    width: 100%;
    min-height: 400px;
  }


  /* ---------- COMMON FOOTER ---------- */

  .footdiscription {
    gap: 40px;
    padding: 60px 30px;
  }

  footer {
    padding: 20px 40px;
  }

}


/* =========================================
   MOBILE RESPONSIVE
   UP TO 600px
========================================= */

@media (max-width: 600px) {

  /* ---------- GLOBAL SAFETY ---------- */

  html,
  body {
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
  }


  /* ---------- COMMON HERO / PAGE BANNERS ---------- */

  .lapservice {
    height: 200px;
  }

  .lapservice h5,
  .about h5,
  .contact h5 {
    font-size: 30px;
  }


  /* ---------- HOME PAGE ---------- */

  .cards {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .card {
    width: min(100%, 350px);
  }

  .Description {
    padding: 50px 20px;
  }

  .Description h1 {
    font-size: 28px;
    text-align: center;
  }

  .features {
    flex-direction: column;
    align-items: stretch;
  }

  .fast {
    width: 100%;
  }


  /* ---------- ABOUT PAGE ---------- */

  .about {
    height: 200px;
  }

  .aboutdescription {
    padding: 50px 20px;
    gap: 35px;
  }

  .aboutdescription img {
    width: 100%;
    height: auto;
    border-radius: 15px;
  }

  .des h2 {
    font-size: 36px;
  }

  .des p {
    font-size: 16px;
    line-height: 1.7;
  }

  .moto {
    margin-top: 50px;
    padding: 0 20px;
  }

  .moto h2 {
    font-size: 30px;
  }

  .visiondis {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
    padding: 0 20px 60px;
  }

  .vision {
    width: 100%;
    padding: 65px 25px 30px;
  }


  /* ---------- LAPTOP REPAIR PAGE ---------- */

  .servicearea,
  .servicearea1 {
    padding: 50px 20px;
    gap: 30px;
  }

  .servicearea img,
  .servicearea1 img {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .servicedis h2,
  .servicedis1 h2 {
    font-size: 30px;
  }

  .servicedis p,
  .servicedis1 p {
    font-size: 16px;
    line-height: 1.7;
  }

  .servicedis ul,
  .servicedis1 ul {
    padding-left: 0;
  }

  .servicedis li,
  .servicedis1 li {
    font-size: 15px;
  }


  /* ---------- DESKTOP REPAIR EXTRA MOBILE FIX ---------- */

  .desktop-container {
    width: 90%;
  }

  .intro-image img {
    width: 100%;
    height: auto;
  }


  /* ---------- DATA RECOVERY EXTRA MOBILE FIX ---------- */

  .recovery-image img {
    width: 100%;
    height: auto;
  }

  .devices-visual {
    width: 100%;
  }


  /* ---------- REFURBISHED LAPTOPS EXTRA MOBILE FIX ---------- */

  .refurbished-container {
    width: 90%;
  }

  .refurbished-visual {
    width: 100%;
  }


  /* ---------- CONTACT PAGE ---------- */

  .contact {
    height: 200px;
  }

  .condetails {
    padding: 40px 20px;
    flex-direction: column;
    align-items: center;
  }

  .conbo {
    width: 100%;
  }

  .contact-section {
    padding: 50px 20px;
  }

  .contact-box {
    padding: 30px 20px;
  }

  .contact-box h2 {
    font-size: 30px;
  }

  .map-frame {
    min-height: 320px;
  }


  /* ---------- FOOTER ---------- */

  .footdiscription {
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
    padding: 50px 25px;
  }

  .footdis {
    width: 100%;
  }

  .footdis h3 {
    font-size: 22px;
  }

  .footdis p {
    font-size: 15px;
  }

  .footdis i {
    font-size: 18px;
    padding: 10px;
  }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 20px;
  }

  footer p {
    margin: 0;
  }

}


/* =========================================
   VERY SMALL PHONES
   UP TO 380px
========================================= */

@media (max-width: 380px) {

  .lapservice,
  .about,
  .contact {
    height: 170px;
  }

  .Description h1 {
    font-size: 24px;
  }

  .des h2,
  .servicedis h2,
  .servicedis1 h2 {
    font-size: 27px;
  }

  .moto h2 {
    font-size: 27px;
  }

}
/* ==============================
   MOBILE NAVBAR ALIGNMENT
================================ */

@media (max-width: 768px) {

  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    width: 100%;
    box-sizing: border-box;
  }

  .log {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .log img {
    display: block;
    width: 100px;
    height: auto;
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    line-height: 1;
  }

  .hamburger i {
    font-size: 24px;
    line-height: 1;
  }
}

/* =========================================
   FINAL WEBSITE FIXES
   ADD THIS AT THE VERY END OF style.css
========================================= */

/* -----------------------------------------
   HOME HERO - FIX MOBILE EMPTY SPACE
----------------------------------------- */

@media (max-width: 900px) {

  .hero {
    height: auto;
    overflow: visible;
  }

  .hero img {
    width: 100%;
    height: auto;
    display: block;
  }

  .cards {
    margin: 0 auto;
  }
}


/* -----------------------------------------
   MOBILE NAVBAR - PERFECT ALIGNMENT
----------------------------------------- */

@media (max-width: 768px) {

  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
  }

  .log {
    display: flex;
    align-items: center;
  }

  .log img {
    width: 100px;
    height: auto;
    display: block;
  }

  /* Supports your menu-toggle button */
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 5px;
    line-height: 1;
  }

  .menu-toggle i {
    line-height: 1;
  }
}


/* -----------------------------------------
   HOME PAGE - MOBILE IMPROVEMENTS
----------------------------------------- */

@media (max-width: 600px) {

  .cards {
    padding: 35px 20px;
    gap: 22px;
  }

  .card {
    width: 100%;
    max-width: 350px;
  }

  .Description {
    margin-top: 20px;
    padding: 50px 25px;
  }

  .Description h1 {
    font-size: 25px;
    line-height: 1.25;
  }

  .features {
    gap: 24px;
  }

  .fast {
    max-width: 100%;
  }
}


/* -----------------------------------------
   FOOTER - CLEAN MOBILE SPACING
----------------------------------------- */

@media (max-width: 600px) {

  .footdiscription {
    margin-top: 0;
    padding: 45px 25px;
    gap: 32px;
  }

  .footdis h3 {
    margin-bottom: 22px;
  }

  footer {
    padding: 18px 20px;
    font-size: 13px;
  }
}
/* Responsive Layout for Tablets and Mobile Screens */
@media screen and (max-width: 768px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
  }

  /* Force Hamburger Button Visibility */
  .hamburger {
    display: block !important;
    font-size: 26px;
    color: #333;
    cursor: pointer;
    z-index: 1001;
  }

  /* Mobile Dropdown Styling */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
    padding: 20px 0;
    text-align: center;
    z-index: 1000;
  }

  .nav-links li {
    margin: 15px 0;
  }

  /* Active class appended via JavaScript */
  .nav-links.active {
    display: flex !important;
  }
}

/* Hide Hamburger on Laptop and Desktop Screens */
@media screen and (min-width: 769px) {
  .hamburger {
    display: none !important;
  }
}