@import url("./common.css");


/* Hero section */
.hero-section {
  width: 100%;
  height: 90vh;
  max-height: 900px;
  min-height: 700px;
  background-image: url('../images/hero-section/slide4.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;

}

.hero-section-inner {
  max-width: 1800px;
  padding: 100px;
  width: 100%;
}

.hero-section-inner .heading {
  font-size: 54px;
  line-height: 1.2;
  font-weight: bold;
}

.hero-section-inner .package-value {
  line-height: 1.2;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
}


.card-section{
 width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  background: url("../images/gradient.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 100px;
    z-index: -1;
}

/* Action Card section */

.action-card-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

}

.action-card-section-inner {
  max-width: 1800px;
  width: 100%;
  margin-top: -150px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 100px; 
  gap: 50px;
}

.card-action {
  max-width: 400px;
  padding: 90px 40px;
  border-radius: 20px;
  background-color: var(--light-blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-action img{
  object-fit: contain;
}
 .pink-border-bottom {
    height: 2px;
    margin: 0 auto;
    width: 73px;
    background-color: var(--pink-border);
}

.card-action p{
      margin: 23px auto 0;
    letter-spacing: 0.02em;
    line-height: 24px;
    text-align: center;
}



/* pricing-plan */
.pricing-plan-section {
  width: 100%;
  display: flex;
  justify-content: center;

}

.pricing-plan-section-inner{
  max-width: 1800px;
  width: 100%;
  padding: 0 100px; 
  gap: 50px;
}

.pricing-plan-section-inner .heading{
text-align: center;
font-size: 44px;
margin-top: 100px;
}
.pricing-plan-section-inner .subheading{
    margin: 22px auto 0;
    color: var(--aqua-color);
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-align: center;

}

.pricing-plan-card-section{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 100px;

}
.pricing-plan-card{
position: relative;
border-radius: 16px;
padding: 50px;
background-color: var(--primary-color);
max-width: 427px;
}
.pricing-plan-card .plan-logo{
  border-radius: 50%;
  height: 80px;
  width: 80px;
  margin-top: -80px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  position:absolute;
  left: 50%;
  transform: translateX(-50%);
}
.pricing-plan-card .plan-logo img{

  object-fit: contain;
}
.pricing-plan-card .mini{
  color: var(--pink-border);
  font-size: 44px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}
.pricing-plan-card .midi{
  color: var(--orange);
  font-size: 44px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}
.pricing-plan-card .maxi{
  color: var(--aqua-color);
  font-size: 44px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}
.pricing-plan-card .package-value {
  text-align: center;
}

.pricing-plan-card .package-value .price{
  font-size: 64px;
  font-weight: bold;
}

.pricing-plan-card .sub-details{
text-align: center;
margin: 14px auto 0;
position: relative;
font-size: 16px;
line-height: 1.2;
margin-bottom: 20px;
}
.tick-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 50px;
}

.tick-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 32px;
}

.tick-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--gradient-color);
  mask: url('../images/iocns/check-black.svg') no-repeat center;
  mask-size: contain;
  -webkit-mask: url('../images/iocns/check-black.svg') no-repeat center;
  -webkit-mask-size: contain;
}
.price-button{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
      padding-top: 80px;

}

/* brand-email */
.brand-email-section{
 width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
    z-index: -1;
    padding: 100px;
     background: url("../images/bg-brand-email.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 9;
}
.email-section{
    width: 100%;
  display: flex;
  justify-content: center;
  z-index: 2;
  position: absolute;
  top: -50px;
  padding: 0 50px;
 
}
.email-section-inner{
  width: 100%;
  max-width: 1800px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: url("../images/bg-email.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 50px;
    z-index: -1;
    padding: 10px 30px;
  
}
.email-section-inner .heading span{
  font-size: 16px;
}
.email-input-container {
  display: flex;
  width: 100%;
  max-width: 500px;
  border: 1px solid var(--white);
  background: var(--white);
  border-radius: 4px;
  border-radius: 100px;
  overflow: hidden;
  padding: 5px;
}

.email-input-container input {
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 16px;
    color: var(--black);

}

.email-input-container button {
  min-height: 41px;
    padding: 0 18px;
    position: relative;
    width: 151px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.03em;
    line-height: 41px;
    text-align: center;
    background: var(--black);
    border-radius: 100px;
    cursor: pointer;
    color: var(--white);
    border: 1px solid var(--black);
}

.email-input-container input:focus {
  outline: none;
}

.email-input-container button:hover {
  background: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
  }


  .brand-section {
  width: 100%;
  display: flex;
  justify-content: center;

}

.brand-section-inner{
  max-width: 1800px;
  width: 100%;
  padding: 0 100px; 
  gap: 50px;
}
.brand-section-inner .heading{
  font-size: 44px;
  text-align: center;
}
.brand-section-inner .subheading{
  font-size: 16px;
  text-align: center;

}
.brand-section-inner .logo-slider {
  margin-top: 50px;
  overflow: hidden;
  position: relative;
}

.brand-section-inner .logo-track {
  display: flex;
  animation: scroll 20s linear infinite;
}

.brand-section-inner .logo-track::after {
  content: "";
  display: flex;
}

.brand-section-inner .logo {
  width: 200px; /* adjust as needed */
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.brand-section-inner .logo img {
  max-width: 100%;
  height: auto;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* ------------- watch news sec start ------------  */

.watch-news{
  background-color: var(--primary-color);
}
.watch-inner-section{
  max-width: 1810px;
  padding: 60px 100px;
  position: relative;
  margin: auto;
}
.watch-news-heading {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.watch-news-heading-text {
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 2; 
}

.watch-news-heading-img {
  position: absolute;
  bottom: 40px;
  right: calc(50% - 220px); 
  width: 190px;
  height: auto;
  z-index: 1; 
  pointer-events: none;
}

.slider-wrapper {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
}

.slider-container {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.slider {
  display: flex;
  gap: 40px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.card {
  flex: 0 0 auto;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
  width: 270px;
}
.card1, .card2, .card3, .card4, .card5{
      min-height: 370px;
  position: relative;
  min-width: 270px;
  background-size: cover !important;

}
.card1 {
  background: url('../images/watch-news/wn-card1.png') no-repeat center center;
}
.card2 {
  background: url('../images/watch-news/wn-card2.jpg') no-repeat center center;
}
.card3 {
  background: url('../images/watch-news/wn-card3.jpg') no-repeat center center;
}
.card4 {
  background: url('../images/watch-news/wn-card4.jpg') no-repeat center center;
}
.card5 {
  background: url('../images/watch-news/wn-card5.jpg') no-repeat center center;
}


.card:hover {
  transform: scale(1.05);
}

.card .show-img {
  position: absolute;
    display: block;
    margin: 0 auto;
    left: 10px;
    bottom: 15px;
    width: 52px;
    height: 18px;
}

.card-content {
  padding: 12px;
  color: var(--white);
}

.arrow {
  background: var(--white);
  border: none;
  padding: 12px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
  position: absolute;
}

.arrow:hover {
  background: var(--light-gray);
}
.left{
  left: 2%;
}
.right{
  right: 2%;
}

.arrow svg {
  width: 24px;
  height: 24px;
}


/* -------------------  watch news sec end ------------ */




/* Our advantages */

.advantages-section{
 width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: url("../images/gradient.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 100px;
    z-index: -1;
}

.advantages-section-inner{
   max-width: 1800px;
  width: 100%;
  padding: 100px;
}

.advantages-section-inner .heading{
width: 100%;
text-align: center;
color: var(--aqua-color);
}
.advantages-section-inner .subheading{
  width: 100%;
text-align: center;
color: var(--white);
font-size: 44px;
}



.advantages-section-inner .cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* max 3 cards per row */
  gap: 40px;
  max-width: 1800px;
  margin: auto;
  justify-items: center; /* center cards if they are smaller than grid cell */
}


.advantages-section-inner .card {
  background-color:var(--light-blue);
  border-radius: 16px;
  padding: 50px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.advantages-section-inner .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px var(--box-shadow);
}

.advantages-section-inner .icon{
height: auto;
}
.advantages-section-inner .icon img {
  width: 75px;
  height: auto;
  margin-bottom: 15px;
}

.advantages-section-inner .card h3 {
  color: var(--pink-border);
  margin: 10px 0;
  font-size: 44px;
}

.advantages-section-inner .card p {
  color: var(--white);
  font-size: 16px;
  line-height: 1.5;
}


/* compatible */
.compatible-section{
 width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
      z-index: -1;
}

.compatible-section-inner{
   max-width: 1800px;
  width: 100%;
  padding: 100px;
display: flex;
justify-content: space-between;
align-items: center;
}

/* .compatible-section-inner .left{
  width: 50%;
}
.compatible-section-inner .right{
  width: 50%;
} */
.compatible-section-inner .heading{
font-size: 44px;
width: 100%;
text-align: left;
position: relative;
  z-index: 2; 
  margin-top: 50px;

}
.compatible-section-heading-img{
     position: absolute;
  bottom: 40px;
  right: calc(50% - 220px); 
  /* left: 18%; */
  width: 190px;
  height: auto;
  z-index: 1; 
  pointer-events: none;
  top: 50px;
}


.compatible-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compatible-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 32px;
    transition: transform 0.5s ease;

}

.compatible-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--white);
  mask: url('../images/iocns/check-black.svg') no-repeat center;
  mask-size: contain;
  -webkit-mask: url('../images/iocns/check-black.svg') no-repeat center;
  -webkit-mask-size: contain;
}
.compatible-list li:hover {
  cursor: pointer;
  transform: scale(1.12);
  color:var(--orange);
}

.compatible-list li:hover::before {
   background:url('../images/iocns/check-color.svg') no-repeat center;
  
}

.compatible-list-group{
display: flex;
justify-content: start;
align-items: start;
gap: 30px;
}

.compatible-section-inner .devices-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* always max 3 per row */
  gap: 20px;
  max-width: 900px;
  margin: auto;
}


.compatible-section-inner .device-card {
  background-color: var(--secondery-color);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-height: 152px;
}

.compatible-section-inner .device-card:nth-child(1),
.compatible-section-inner .device-card:nth-child(3) {
  background-color: var(--voilat); 
}
.compatible-section-inner .device-card:nth-child(2),
.compatible-section-inner .device-card:nth-child(6) {
  background-color: var(--black); 
}
.compatible-section-inner .device-card:nth-child(5) {
background-color:var(--voilat-light)
}

.compatible-section-inner .device-card:nth-child(2),
.compatible-section-inner .device-card:nth-child(5) {
  margin-top: -30px; 
}
.compatible-section-inner .device-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px var(--box-shadow);
}

.compatible-section-inner .device-card img {
  width: auto;
  height: auto;
  margin-bottom: 10px;
}

.compatible-section-inner .device-card h3 {
  margin: 0;
  font-size: 1em;
}



/* modal verification */
#openmodal-verificationBtn {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

/* modal-verification Styles */
.modal-verification {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: var(--box-shadow);
  justify-content: center;
  align-items: center;
}

.modal-verification-content {
  background: var(--bg-modal);
  padding:   30px;
  border-radius: 10px;
  width: 90%;
  max-width: 350px;
  position: relative;
  text-align: center;
}

.close {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 24px;
  cursor: pointer;
}

.verify-screen h2,
.success-screen h2 {
  color: var(--pink-border);
  margin-bottom: 10px;
}

.verify-screen p,
.success-screen p {
  font-size: 14px;
  margin: 10px 0;
}

.code-inputs {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
}

.code-inputs input {
  width: 40px;
  height: 50px;
  background: var(--box-shadow);
  border: none;
  border-radius: 8px;
  text-align: center;
  font-size: 20px;
  color:var(--white);
}

.no-code {
  font-size: 12px;
  margin-top: 10px;
}

.no-code a {
  color: var(--aqua-color);
  text-decoration: none;
}

.login-info {
  background: var(--box-shadow);
  border-radius: 8px;
  padding: 10px;
  margin: 10px 0;
}

.how-to {
  font-size: 12px;
  color: var(--aqua-color);
  margin-top: 10px;
}

@media (max-width: 1200px) {
 .hero-section-inner , .action-card-section-inner,.pricing-plan-section-inner{
    padding: 0 50px;
  }
  .brand-email-section{
    padding: 100px 50px;
  }
   .advantages-section-inner{
    padding:  50px;

  }
  .advantages-section-inner .card h3,
  .compatible-section-inner .heading{
    font-size: 34px;
  }
   .compatible-section-inner{
    display: block;
        padding:  50px;

  }
    .compatible-section-inner .devices-container{
      margin-top: 50px;
    }
}


@media (max-width: 992px) {
.email-section-inner{
  display: block;}
  .email-input-container {
  display: flex;
  width: 100%;
  max-width: 100%;
  }
   .advantages-section-inner .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
 
}

@media (max-width: 768px) {
 .hero-section-inner  .action-card-section-inner,.pricing-plan-section-inner,.brand-section-inner {
    flex-direction: column;
    padding: 0 20px;
  }

  .card-action {
    max-width: 100%;
    margin-bottom: 20px;
  }
   .hero-section-inner .heading,.advantages-section-inner .subheading {
  font-size: 34px;
  line-height: 1.2;
  font-weight: bold;
}
  .brand-email-section {
    padding: 200px 20px;
  }
  .watch-news-heading-text{
    font-size: 42px;
  }
  .watch-inner-section{
  padding: 60px 40px;
}
 .compatible-section-inner .devices-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .compatible-list-group{
    display: block;
  }
  .compatible-section-inner .device-card:nth-child(2),
.compatible-section-inner .device-card:nth-child(5) {
  margin-top: 0px; 
}
  
}
@media (max-width: 599px) {
  .watch-inner-section{
  padding: 60px 20px;
}
.advantages-section-inner .cards-container {
    grid-template-columns: 1fr;
  }
  
}
@media (max-width: 543px) {
  .watch-news-heading-img {
    width: 150px ;
    right: calc(50% - 180px);
  }
  .compatible-section-heading-img{
    display: none;
  }

}

@media (max-width: 450px) {
  .hero-section-inner .heading {
  font-size: 34px;
  line-height: 1.2;
  font-weight: bold;
}
.email-section{
  padding: 0 20px;
}
.email-input-container {
  flex-direction: column;
        padding: 15px;
                border-radius: 30px;

}
.email-input-container input {
 width: 100%;
}

.email-input-container button {
  width: 100%;
}
 .compatible-section-inner .devices-container {
    grid-template-columns: 1fr;
  }

}
@media (max-width: 383px) {
  .watch-news-heading-img {
    bottom: 35px;
    right: calc(50% - 90px);
  }
  .slider {
  gap: 10px;}
}

