@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* NAV BAR */
.nav-bar {
  width: 100%;
  height: 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  background-color: rgba(18, 18, 18, 0.8);
  box-shadow: 0px 38px 78px -15px rgba(0, 0, 0, 0.49);
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav-bar .logo {
  margin-top: 5px;
  align-items: center;
}
.nav-bar-links ul {
  display: none;
}
.nav-icons i {
  font-size: 20px;
  margin-left: 15px;
  color: #dadada;
}

.nav-bar-links.show ul {
  display: block;
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  background-color: rgb(18, 18, 18);
  padding: 10px 0;
}

.nav-bar-links.show ul li {
  list-style: none;
  padding: 10px 40px;
}

.nav-bar-links.show ul li a {
  text-decoration: none;
  color: #dadada;
  font-size: 22px;
  font-weight: 600;
}

@media (width>=833px) {
  .nav-bar {
    justify-content: center;
  }
  .nav-bar-links ul {
    display: flex;
    margin-left: 1rem;
  }
  .nav-bar-links ul li {
    list-style: none;
    margin: 0 0.5rem;
  }
  .nav-bar-links ul li a {
    text-decoration: none;
    color: #dadada;
    font-size: 12px;
    font-weight: 400;
  }
  #menu-btn {
    display: none;
  }
}

/* HERO SECTION */

/* iPad  */
.ipad-container {
  width: 100%;
  height: 600px;
  background-image: url(Pictures/iPad.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ipad-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-position: center;
  padding-top: 50px;
  color: white;
}
.ipad-text button {
  padding: 10px 25px;
  margin-top: 20px;
  margin-left: 15px;
  font-size: 15px;
  font-weight: 400;
  border-radius: 30px;
}
.ipad-text #btn1 {
  background-color: #0071e3;
  color: white;
  border: none;
}
.ipad-text #btn2 {
  background-color: #000000;
  color: #0071e3;
  border: 1px solid #0071e3;
}
.ipad-text #btn2:hover {
  background-color: #0071e3;
  color: white;
}

/* iPhone */
.iphone-container {
  width: 100%;
  height: 600px;
  margin-top: 10px;
  background-image: url(Pictures/iPhone.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.iphone-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-position: center;
  padding-top: 50px;
  color: white;
}
.iphone-text h1 {
  font-size: 32px;
  line-height: 1.125;
  font-weight: 600;
  letter-spacing: 0.004em;
}
.iphone-text p {
  text-align: center;
  font-size: 19px;
  line-height: 1.21053;
  font-weight: 400;
  letter-spacing: 0.012em;
}
.iphone-btns button {
  padding: 10px 25px;
  margin-top: 20px;
  margin-left: 15px;
  font-size: 15px;
  font-weight: 400;
  border-radius: 30px;
}
.iphone-btns #btn1 {
  background-color: #0071e3;
  color: white;
  border: none;
}
.iphone-btns #btn2 {
  background-color: #000000;
  color: #0071e3;
  border: 1px solid #0071e3;
}
.iphone-btns #btn2:hover {
  background-color: #0071e3;
  color: white;
}

/* Grid */
.grid-container {
  padding: 10px 0;
  display: grid;
  grid-template-columns: 1fr; /* Single column by default */
  gap: 10px; /* Gap between grid items */
  background-color: rgb(255, 255, 255);
  border: none;
}
.grid-item {
  height: 500px;
  /* background-color: rgb(255, 255, 255); */
  padding: 20px;
  text-align: center;
  border: 1px solid #ccc;
}
.grid-container .one {
  background-image: url(Pictures/Mac.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.grid-container .two {
  background-image: url(Pictures/Vision\ Pro.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.grid-container .three {
  background-image: url(Pictures/AI.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.grid-container .four {
  background-image: url(Pictures/SuperHero.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.grid-container .five {
  background-image: url(Pictures/Card.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.grid-container .six {
  background-image: url(Pictures/TradeIn.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.grid-item-heading {
  font-size: 40px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.002em;
}
.grid-item-btn {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.17648;
  font-weight: 400;
  letter-spacing: -0.022em;
  border-style: none;
  margin-top: 20px;
  margin-left: 10px;
  padding: 7px 15px;
  border-radius: 2rem;
  background: #0071e3;
  color: #fff;
}
.grid-text-two {
  margin-top: 320px;
}
.grid-text-four {
  margin-top: 390px;
}
.grid-text-para {
  font-size: 19px;
  line-height: 1.19048;
  font-weight: 400;
  letter-spacing: 0.011em;
  color: #525252;
  margin-top: 10px;
}
.btn2 {
  border: 1px solid #0071e3;
  background-color: transparent;
  color: #0071e3;
}
#btn1 {
  border-color: white;
  color: black;
  border: none;
}
.grid-text-four .btn2 {
  border-color: transparent;
  color: white;
  border: 1px solid white;
}

/* Slider */
.swiper {
  width: 85%;
  height: 600px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background-color: #f5f5f7;
  margin-top: 30px;
}
.footer-details p {
  padding: 8px 10px;
  font-size: 12px;
  color: rgb(79, 79, 79);
  margin: 0 10px;
}
.dropdown-section {
  width: 100%;
  background-color: #f5f5f7;
}
.dropdown-header {
  font-size: 13px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  padding: 10px;
  cursor: pointer;
  margin: 0 10px;
  border-bottom: 1px solid black;
  background-color: #f5f5f7;
  color: rgb(54, 54, 54);
}
.arrow {
  transition: transform 0.3s ease;
}
.dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  list-style-type: none;
  padding: 0;
  margin: 0 30px;
}
.dropdown-content li {
  padding: 8px 10px;
  font-size: 12px;
  color: rgb(79, 79, 79);
}
.dropdown-section.open .arrow {
  transform: rotate(180deg);
}
.dropdown-section.open .dropdown-content {
  max-height: 500px; /* Adjust as needed */
}
.footer-expand {
  display: none;
}
.footer-text-div {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: first baseline;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  font-family: Arial, sans-serif;
  color: #1d1d1f;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.footer-column {
  flex: 1;
  margin-right: 20px;
}

.footer-column:last-child {
  margin-right: 0;
}

h3 {
  font-size: 12px;
  margin-bottom: 10px;
  margin-top: 20px;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

li {
  font-size: 11px;
  margin-bottom: 8px;
  color: #515154;
}

.footer-text-div-para > p {
  font-size: 14px;
  color: rgb(79, 79, 79);
  margin-left: 18px;
  margin-bottom: 10px;
}
.footer-text {
  font-size: 12px;
  color: rgb(79, 79, 79);
  margin: 20px 18px;
}
.footer-text span {
  color: rgb(85, 85, 255);
  text-decoration: underline;
}
.footer-text-div > p {
  font-size: 14px;
  color: rgb(64, 64, 64);
  margin: 20px 18px;
}

@media (width<733px) {
  .ipad-container {
    background-position: center;
  }
  .ipad-text h1 {
    font-size: 32px;
    line-height: 1.125;
    font-weight: 600;
    letter-spacing: 0.004em;
  }
  .ipad-container p {
    font-size: 19px;
    line-height: 1.21053;
    font-weight: 400;
    letter-spacing: 0.012em;
    margin-top: 5px;
  }
  .ipad-btns {
    padding: 5px 25px;
    margin-top: 2px;
    margin-left: 15px;
    font-size: 15px;
    font-weight: 400;
    border-radius: 30px;
  }

  .iphone-container {
    background-position: center;
  }
}
@media (width>=734px) {
  .ipad-container {
    background-image: url(Pictures/iPad2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .ipad-text h1 {
    font-size: 48px;
    line-height: 1.08349;
    font-weight: 600;
    letter-spacing: -0.002em;
  }
  .ipad-text p {
    font-size: 24px;
    line-height: 1.16667;
    font-weight: 400;
    letter-spacing: 0.009em;
  }
  .iphone-container {
    background-image: url(Pictures/iPhone2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .iphone-text h1 {
    font-size: 48px;
    line-height: 1.08349;
    font-weight: 600;
    letter-spacing: -0.002em;
  }
  .iphone-text p {
    font-size: 24px;
    line-height: 1.16667;
    font-weight: 400;
    letter-spacing: 0.009em;
  }

  .grid-container {
    padding: 10px;
  }
  .grid-container .one {
    background-image: url(Pictures/Mac2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .grid-container .two {
    background-image: url(Pictures/Vision\ Pro2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .grid-container .three {
    background-image: url(Pictures/AI2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .grid-container .four {
    background-image: url(Pictures/SuperHero2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .grid-container .five {
    background-image: url(Pictures/Card2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .grid-container .six {
    background-image: url(Pictures/TradeIn2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media (width>=1069px) {
  .ipad-container {
    background-image: url(Pictures/iPad3.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .ipad-text h1 {
    font-size: 56px;
    line-height: 1.07143;
    font-weight: 600;
    letter-spacing: -0.005em;
  }
  .ipad-text p {
    font-size: 28px;
    line-height: 1.14286;
    font-weight: 400;
    letter-spacing: 0.007em;
  }
  .iphone-container {
    background-image: url(Pictures/iPhone3.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .iphone-text h1 {
    font-size: 56px;
    line-height: 1.07143;
    font-weight: 600;
    letter-spacing: -0.005em;
  }
  .iphone-text p {
    font-size: 28px;
    line-height: 1.14286;
    font-weight: 400;
    letter-spacing: 0.007em;
  }

  .grid-container .one {
    background-image: url(Pictures/Mac3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .grid-container .two {
    background-image: url(Pictures/Vision\ Pro3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .grid-container .three {
    background-image: url(Pictures/AI3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .grid-container .four {
    background-image: url(Pictures/SuperHero3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .grid-container .five {
    background-image: url(Pictures/Card3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .grid-container .six {
    background-image: url(Pictures/TradeIn3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media (width>=1110px) {
  .ipad-container {
    background-image: url(Pictures/iPad4.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .ipad-text h1 {
    font-size: 56px;
    line-height: 1.07143;
    font-weight: 600;
    letter-spacing: -0.005em;
  }
  .ipad-text p {
    font-size: 28px;
    line-height: 1.14286;
    font-weight: 400;
    letter-spacing: 0.007em;
  }
  .iphone-container {
    background-image: url(Pictures/iPhone4.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media (width>=833px) {
  .dropdown-section {
    display: none;
  }
  .footer-expand {
    display: block;
  }
  .footer-details {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px;
  }
  .footer-text {
    max-width: 1200px;
    margin: 0 auto;
    padding: 17px;
  }
  .footer-text-div {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
  }
}
@media (width>1022px) {
  .footer-text-div-para {
    display: flex;
  }
}
/*  */
/*  */
/*  */
@media (width>733px) {
  .grid-container {
    grid-template-columns: 1fr 1fr; /* Two columns for larger screens */
  }
}
