@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

:root {
    --font-color-1: #fff;
    --font-color-2: #000;
    --button-bg-color: #3C50E0;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}


a {
    text-decoration: none;
    text-align: center;
    color: var(--font-color-1);
}

#button {
    padding: 12px;
    background: linear-gradient(#3B82F6,#3C50E0);
    color: var(--font-color-1);
    border: 0;
    cursor: pointer;
    border-radius: 50px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    font-weight: 400;
}

#button:hover{
  background: linear-gradient(#3C50E0,#3C50E0);
  font-weight: 700;
}

/* header styles */
header {
    width: 100%;
}

/* Navigation Bar */
nav {
    padding: 16px 180px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: fixed; 
    top: 0px; 
    left: 0;
    width: 100%;
    z-index: 10;
    background: transparent;
    transition: all 0.3s ease, box-shadow 0.3s ease; 
}
nav.scrolled {
    background: #080F28; 
}

.logo{
  display: flex;
  text-align: center;
  align-items: center;
  gap: 5px;
}

.logo img{
  width: 30px;
}

.logo a {
    font-weight: 700;
    font-size: 20px;
}

.links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.links ul {
    display: flex;
    gap: 30px;
}

nav li {
    list-style: none;
}

.nav-link {
    font-weight: 400;
    transition: all 0.3s ease-in-out;
}

.nav-link.active {
    font-weight: 700;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--font-color-1);
    border-radius: 5px;
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: -2000%;
    left: 0;
    width: 100%;
    height: 50vh;
    background: #080F28;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: top 0.4s ease;
    z-index: 100;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: var(--font-color-1);
    cursor: pointer;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.mobile-menu.active {
 top: 0;
}


/* Header Bg styles and Content styles */

.bgImg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: -1; 
}

.bgImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(15px);
    position: absolute;
    top: 0;
    left: 0;
}

.bgImg .gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #080f28 40%, transparent);
}

.headerContent {
    padding: 50px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--font-color-1);
    gap: 62px;
    margin-top: 80px;
}

.headerContent h1 {
    font-size: 40px;
    font-weight: 700;
    width: 35%;
    text-align: center;
}

.headerContent img {
    width: 75%;
}

.headerContent #mobile {
    display: none;
}

.headerContent .para {
    color: var(--font-color-2);
    text-align: center;
    width: 32%;
}

.para p {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 16px;
}

/* Sections  */

section{
    width: 100%;
    margin-top: 102px;
    scroll-margin-top: 80px;
}

/* Section title */
.sectionTitle{
    width: 50%;
    margin-left: 26%;
    text-align: center;
}

.sectionTitle h1{
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 16px;

}

.sectionTitle p{
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 62px;
}


/* features section   */
.tabs-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 50px;
  background: #000000BF;
  border-radius: 25px;
  overflow: hidden;
  margin: 20px auto;
  padding: 5px;
  margin-bottom: 62px;
  }
  
  .tabs {
    display: flex;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  
  .tab {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 2;
    color: var(--font-color-1);
    font-weight: 600;
    transition: all 0.3s ease-in-out; 
  }
  
  .slider {
    position: absolute;
    top: 0;
    width: 25%;
    height: 100%;
    background: var(--font-color-1);
    border-radius: 25px;
    transition: left 0.5s ease;
    z-index: 0;
  }
  
  .tab.active {
    color: var(--font-color-2);
  }
  
  .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  
.content .content-text{
    display: block;
}

  .content .text {
    max-width: 500px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 200;
    margin-bottom: 16px;
  }

  .content-text img{
    width: 100px;
    margin-bottom: 16px;
  }
  
  .content #image {
    width: 300px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;

  }
  
  .content .title{
    width: 80%;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 16px;
  }



/* Faq section styles */

.faqContent{
    position: relative;
    width: 75%;
    margin: auto;
}
.QnA {
    border-bottom: 1px solid #ccc;
  }
  
  .question {
    width: 100%;
    padding: 15px;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    font-size: 20px;
    cursor: pointer;
    font-weight: 600;
  }
  
  .question::after {
    content: "";
    width: 15px; 
    height: 15px; 
    background-image: url('assets/arrowDown.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    float: right;
  }
  
  .question.active::after {
    content: "";
    width: 15px; 
    height: 15px; 
    background-image: url('assets/arrowUp.png');
    background-size: contain; 
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
  }
  
  .answer p {
    font-weight: 300;
    font-size: 18px;
    margin: 15px 0;
  }

/* Pricing section styles */
.pricing-tab {
  position: relative;
  width: 300px;
  height: 50px;
  background: #000000BF;
  border-radius: 25px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 62px;
  padding: 5px 5px;
}

.ptabs {
  display: flex;
  height: 100%;
  position: relative;
  z-index: 1;
}

.ptab {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
  font-weight: bold;
  color: var(--font-color-1);
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.pslider {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--font-color-1);
  border-radius: 25px;
  transition: left 0.5s ease;
  z-index: 0;
}

.ptab.active {
  color: var(--font-color-2);
}

.ptab-contents{
  position: relative;
  margin: 0 10%;
}

.ptab-content {
  position: relative;
  display: none;
}

.lifetime{
  position: relative;
  margin: auto;
}

.ptab-content.active {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}



#pricing-button{
    padding: 12px;
    background-color: transparent;
    color: var(--font-color-2);
    font-weight: 600;
    border: 2px solid var(--font-color-2);
    cursor: pointer;
    text-align: center;
    display: inline-block;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

.bg-blue{
  background: linear-gradient(#3B82F6,#3C50E0) !important;
  color: var(--font-color-1) !important;
  border: 0 !important;
}

.pricing-box{
  width: 378.67px;
  display: flex;
  flex-direction: column;
  border: 0.5px solid var(--font-color-2);
  padding: 20px;
  padding-top: 40px;
  border-radius: 16px;
  gap: 10px;
}

.b-border{
  border: 0.5px solid var(--button-bg-color);
  box-shadow: 0 0 15px #CCD9FF;
}

.pricing-box h1{
  font-size: 22px;
  font-weight: 700;
}
.pricing-box p{
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 2px;
}

#thin{
  font-weight: 300;
}
.pricing-box span{
  font-size: 56px;
  font-weight: 600;
}
.pricing-box .feature{
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature img{
  width: 32px;
}

.feature p{
  font-weight: 500;
}

.not-getting-feature{
  color: #A0ABBB;
}

/* Custom plan pricing tab */

.custom-plan{
  background: #080F28;
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 20px;
}

.custom-plan h1{
  color: var(--font-color-1);
  font-size: 22px;
  font-weight: 600;
}
.custom-plan h2{
  color: var(--font-color-1);
  font-size: 40px;
  font-weight: 500;
}

.custom-plan p{
  color: var(--font-color-1);
  font-size: 20px;
  font-weight: 400;
  width: 50%;
  margin: auto;
}

.custom-plan-bg-blue{
  background: transparent;
  border: 2px solid var(--font-color-1) !important;
  color: var(--font-color-1) !important;
  border-radius: 20px !important;
}


/* contact section */

.contact_container{
  position: relative;
  margin: 0 auto;
  width: 75%;
  background: #3C50E0;
  border-radius: 20px;
  padding: 30px;
}

.row  {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.contact-info {
  width: 40%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap ;
  gap: 30px;
}

.contact-info-item img{
  width: 30px;
}
.contact-info-item {
  display: flex;
  gap: 40px;
  color: var(--font-color-1);
  text-align: center;
  align-items: center;
}

.contact-info-item p{
  font-size: 20px;
  font-weight: 400;
}
.contact-info-icon  {
  height: 70px;
  width: 70px;
  text-align: center;
}


.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--font-color-1);
}

.contact-info-content h4 {
  font-size: 40px;
}

.contact-info-content p {
  font-size: 20px;
  font-weight: 300;
  }

.contact-form {
  background: var(--font-color-1);
  border-radius: 32px;
  padding: 40px;
  width: 45%;
  padding-bottom: 20px;
  padding-top: 20px;
  
}


.contact-form .input-box {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.contact-form .input-box input,
.contact-form .input-box textarea{
  background: transparent;
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  font-weight: 300;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #D9D9D9;
  outline: none;
  resize: none;
  cursor: pointer;
}

.contact-form .input-box span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
}

.contact-form .input-box input:focus ~ span,
.contact-form .input-box input:not(:placeholder-shown) ~ span,
.contact-form .input-box textarea:focus ~ span,
.contact-form .input-box textarea:not(:placeholder-shown) ~ span{
  color: var(--button-bg-color);
  font-size: 12px;
  transform: translateY(-20px);
}

.confirmation-message {
  display: none;
  background-color: #fff;
  padding: 80px 0;
  text-align: center;
}

.confirmation-message h3 {
  font-size: 20px;
  font-weight: 100;
  color: var(--font-color-2);
}
.form-error-message {
  margin-top: 10px;
  font-size: 14px;
}

.form-error-message .error {
  color: red;
}
.error {
  color: red;
}

.success {
  color: green;
}


/* Footer Styles */
footer{
  display: flex;
  flex-direction: column;
  margin-top: 102px;
}

footer img{
  width: 100%;
  overflow: hidden;
  object-fit: cover; 
  height: 580px; 
  object-position: 0 0;
}
.footerContent{
  background: #080F28;
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 100px;
  gap: 20px;
}

.footerContent h1{
  color: var(--font-color-1);
  font-size: 24px;
  font-weight: 600;
}
.footerContent h2{
  color: var(--font-color-1);
  font-size: 20px;
  font-weight: 600;
}

.footerContent p{
  color: var(--font-color-1);
  opacity: 50%;
  font-size: 16px;
  font-weight: 400;
}

.footerContact{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 320px;
}

.footerLinks{
  display: flex;
  align-items: top;
  justify-content: center;
  gap: 200px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.footerLinks .f-links{
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  align-items:baseline;
}

.footerLinks .f-links:nth-child(1){
  width: 25%;
}

.footerLinks .f-links p{
  font-weight: 300;
  opacity: 100%;
  line-height: 28px;
}

.footerLinks .f-links a{
  opacity: 80%;
  font-size: 20px;
  font-weight: 300;
  transition: all 0.5s ease-in-out;
}

.f-links h2{
  font-size: 20px;
  font-weight: 700;
  opacity: 80%;
}

.footerLinks .f-links a:hover{
  opacity: 100%;
}

/*common legal styles */
.legal{
  background: linear-gradient(to bottom, #080f28 50%, #080f28b9);
  height: 300px;
}

.legal h1{
  color: var(--font-color-1);
  margin: 230px 170px;
  font-size: 40px;
  font-weight: 700;
}


.privacy-container {
  max-width: 100%;
  margin: 350px auto;
  margin-bottom: 0px;
  padding: 0 170px;
  line-height: 1.7;
  color: var(--font-color-2);
}

.privacy-container a{
  color: var(--button-bg-color);
  font-size: 20px;
}

.policy-wrapper section {
  margin-top: 50px;
  margin-bottom: 40px;
}

.policy-wrapper h2 {
  color: var(--font-color-2);
  font-size: 40px;
  font-weight: 500;
}

.policy-wrapper h3 {
  font-size: 24px;
  margin-top: 20px;
  font-weight: 500;
}

.policy-wrapper ul {
  margin-left: 20px;
  padding-left: 20px;
  list-style-type: disc;
}

.policy-wrapper p {
  margin-bottom: 10px;
  color: var(--font-color-2);
  font-size: 20px;
  font-weight: 300;
}

strong{
  font-weight: 700;
}



/* Media Queries */

/* Mobile responsive (Vertical) */
@media (max-width: 480px) {

    /* Header responsive styles */
    .links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    nav {
        padding: 16px 20px;
    }

    .logo a {
        font-size: 12px;
    }

    
.bgImg {
    width: 100%;
    height: 450px;
}

.bgImg img {
    width: 388px;
    height: 500px;
    filter: blur(13px);
}


.headerContent {
    padding-top: 0;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--font-color-1);
    gap: 10px;
}

.headerContent h1 {
    font-size: 24px;
    font-weight: 700;
    width: 100%;
    text-align: center;
}

.headerContent img {
    width: 75%;
}

.headerContent #lap{
    display: none;
}
.headerContent #mobile {
    display: block;
    width: 240px;
    height: 380px;
}

.headerContent .para {
    text-align: center;
    width: 100%;
}

.para p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 10px;
    margin-top: -10px;
}

/* section title responsiveness */
/* Section title */
.sectionTitle{
    width: 100%;
    margin-left: 3px;

}

.sectionTitle h1{
    font-size: 24px;
    font-weight: 500;
}

.sectionTitle p{
    font-size: 16px;
    font-weight: 300;
    padding-left: 4px;
    padding-right: 4px;
}


/* features section responsive styles */

.tabs-container {
  height: 44px;
  max-width: 95%;
  margin: 10px auto;
}
  
  .tabs {
    display: flex;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  
  .tab {
    font-size: 10px;
    font-weight: 400;
  }


  .content {
    margin:3%;
    flex-direction: column-reverse;
  }
  
.content .content-text{
    display: block;
}

  .content .text {
    max-width: 100%;
    font-size: 16px;
    margin-bottom: 0px;
  }

  .content #button{
    display: none;
  }

  .content-text img{
    margin-top: 10px;
    width: 52px;
  }
  
  .content #image {
    height: 370px;
    object-position: 0 0;
    border-bottom: 0.5px solid #0000007f;
  }
  
  .content .title{
    width: 100%;
    font-size: 24px;
  }


/* Faq section Responsive styles */
.faqContent{
    position: relative;
    width: 100%;
    margin: auto;
}

  
  .question {
    font-size: 16px;
  }
  
  
  .answer p {
    font-size: 15px;
  }



/* Pricing section Responsive styles */
.pricing-tab {
  width: 200px;
  height: 50px;
}

.ptab {
  font-size: 13px;
}


.ptab-contents{
  position: relative;
  margin: 0 5%;
}






.bg-blue{
background: linear-gradient(#ffffff, #f0f0f0) !important;
color: var(--button-bg-color) !important;
}

.pricing-box{
  width: 100%;
}

.b-border{
  background: var(--button-bg-color);
  color: var(--font-color-1);
}

.pricing-box h1{
  font-size: 18px;
}

.pricing-box span{
  font-size: 36px;
}

.feature img{
  width: 22px;
}

/* Custom plan pricing tab */

.custom-plan{
  background: #080F28;
  text-align: left;
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 20px;
}

.custom-plan h1{
  color: var(--font-color-1);
  font-size: 22px;
  font-weight: 600;
}
.custom-plan h2{
  color: var(--font-color-1);
  font-size: 40px;
  font-weight: 500;
}

.custom-plan p{
  color: var(--font-color-1);
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  margin: auto;
}


  /* contact section responsive styles */


.contact_container{
  left: 0;
  width: 90%;
  padding: 20px;
}

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

.contact-info {
  width: 100%;
  gap: 20px;
}

.contact-info-item img{
  width: 20px;
}
.contact-info-item {
  gap: 20px;
}




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

.contact-info-content h4 {
  font-size: 24px;
  font-weight: 500;
}

.contact-info-content p {
  font-size: 16px;
}

.contact-form {
  border-radius: 25px;
  width: 100%;
}




.contact-form .input-box span {
  font-size: 14px;
}

.contact-form .input-box input:focus ~ span,
.contact-form .input-box input:not(:placeholder-shown) ~ span,
.contact-form .input-box textarea:focus ~ span,
.contact-form .input-box textarea:not(:placeholder-shown) ~ span{
  font-size: 10px;
}



/* Footer Section responsive Styles */


footer img{
  height: 170px; 
}
.footerContent{
  text-align: left;
  padding: 20px;
  gap: 10px;
}


.footerContact{
  flex-direction: column;
  align-items: baseline;
  gap: 10px;
}

.footerLinks{
  flex-direction: column;
  align-items: top;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.footerLinks .f-links:nth-child(1){
  width: 100%;
}


.f-links p{
  font-size: 12px;
}


/*common legal styles */
.legal{
  height: 200px;
}

.legal h1{
  margin: 150px 17px;
  font-size: 24px;
}




/* Terms and Conditions  styles*/

.privacy-container {
  margin: 220px auto;
  padding: 0 10px;
  margin-bottom: -50px;
}

.policy-wrapper section {
  margin-top: 40px;
  margin-bottom: 0;
}

.policy-wrapper h2 {
  color: var(--font-color-2);
  font-size: 24px;
  font-weight: 500;
}

.policy-wrapper h3 {
  font-size: 20px;
  margin-top: 20px;
  font-weight: 500;
}

.policy-wrapper ul {
  margin-left: 20px;
  padding-left: 20px;
  list-style-type: disc;
}

.policy-wrapper p {
  margin-bottom: 10px;
  color: var(--font-color-2);
  font-size: 16px;
  font-weight: 300;
}

strong{
  font-weight: 700;
}


}

/* Tablet responsive (Vertical) */
@media (max-width: 834px) and (min-width:480px) {
  
     /* Header responsive styles */
     .links {
      display: none;
  }

  .hamburger {
      display: flex;
  }

     nav {
      padding: 16px 50px;
  }

  nav a{
    font-size: 20px;
  }

  .logo a {
      font-size: 15px;
  }

  
.bgImg {
  width: 100%;
  height: 600px;
}

.bgImg img {
  width: 388px;
  height: 600px;
  filter: blur(13px);
}


.headerContent {
  padding: 30px;
  gap: 30px;
  padding-bottom: 0;
}

.headerContent h1 {
  font-size: 35px;
  width: 60%;
}

.headerContent img {
  width: 90%;
}

.headerContent .para {
  width: 60%;
}

.para p {
  font-size: 18px;
}

/* section title responsiveness */
/* Section title */


.sectionTitle{
  width: 70%;
  margin-left: 14%;
}

.sectionTitle h1{
  font-size: 33px;
}

.sectionTitle p{
  font-size: 18px;
}


/* features section responsive styles */

.tabs-container {
  height: 44px;
  max-width: 80%;
  margin: 10px auto;
}

.tab{
  font-size: 13px;
  font-weight: 400;
}

.tab.active{
  font-weight: 600;
}


.content {
  margin:10%;
  flex-direction: column-reverse;
}



.content .text {
  max-width: 100%;
  margin-bottom: 0px;
}

.content #button{
  display: none;
}

.content-text img{
  margin-top: 10px;
  width: 60px;
}

.content #image {
  height: 370px;
  object-position: 0 0;
  border-bottom: 0.5px solid #0000007f;
}

.content .title{
  width: 100%;
  font-size: 30px;
}


/* Faq section Responsive styles */

.faqContent{
    position: relative;
    width: 80%;
    margin: auto;
}


.question {
  font-size: 18px;
}


.answer p {
  font-size: 16px;
}



/* Pricing section Responsive styles */
.pricing-tab {
width: 250px;
height: 50px;
}




.ptab-contents{
  position: relative;
  margin: 0 10%;
}


.lifetime{
left: 0%;
margin: 0px 60px;
}



.bg-blue{
background: linear-gradient(#ffffff, #f0f0f0) !important;
color: var(--button-bg-color) !important;
}

.pricing-box{
width: 100%;
}

.b-border{
background: var(--button-bg-color);
color: var(--font-color-1);
}

.pricing-box h1{
font-size: 20px;
}

.pricing-box span{
font-size: 45px;
}

.feature img{
width: 28px;
}


/* contact section responsive styles */


.contact_container{
left: 0;
width: 85%;

padding: 20px;
}

.row  {
display: flex;
flex-direction: column;
gap: 30px;
}

.contact-info {
width: 100%;
gap: 20px;
}

.contact-info-item img{
width: 30px;
}
.contact-info-item {
gap: 20px;
}




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

.contact-info-content h4 {
font-size: 35px;
font-weight: 500;
}

.contact-info-content p {
font-size: 18px;
}

.contact-form {
border-radius: 25px;
width: 100%;
}




.contact-form .input-box span {
font-size: 15px;
}

.contact-form .input-box input:focus ~ span,
.contact-form .input-box input:not(:placeholder-shown) ~ span,
.contact-form .input-box textarea:focus ~ span,
.contact-form .input-box textarea:not(:placeholder-shown) ~ span{
font-size: 15px;
}


/* Footer Styles */

footer img{
  height: 330px; 
}
.footerContent{
  padding: 50px;
}

.footerContact{
  gap: 170px;
}

.footerLinks{
  gap: 40px;
}
.footerLinks .f-links{
  gap: 10px;
}


/*common legal styles */
.legal{
  height: 200px;
}

.legal h1{
  margin: 150px 17px;
  font-size: 24px;
}




/* Terms and Conditions  styles*/

.privacy-container {
  margin: 220px auto;
  padding: 0 10px;
  margin-bottom: -50px;
}

.policy-wrapper section {
  margin-top: 40px;
  margin-bottom: 0;
}

.policy-wrapper h2 {
  color: var(--font-color-2);
  font-size: 24px;
  font-weight: 500;
}

.policy-wrapper h3 {
  font-size: 20px;
  margin-top: 20px;
  font-weight: 500;
}

.policy-wrapper ul {
  margin-left: 20px;
  padding-left: 20px;
  list-style-type: disc;
}

.policy-wrapper p {
  margin-bottom: 10px;
  color: var(--font-color-2);
  font-size: 16px;
  font-weight: 300;
}

strong{
  font-weight: 700;
}

    
}

/* width under 1280 devices responsive */
@media (max-width: 1280px) and (min-width:834px) {
  
  /* Header responsive styles */
  .links {
   display: none;
}

.hamburger {
   display: flex;
}

  nav {
   padding: 16px 50px;
}

nav a{
 font-size: 20px;
}

.logo a {
   font-size: 15px;
}


.bgImg {
width: 100%;
height: 600px;
}

.bgImg img {
width: 388px;
height: 600px;
filter: blur(13px);
}


.headerContent {
padding: 30px;
gap: 30px;
padding-bottom: 0;
}

.headerContent h1 {
font-size: 35px;
width: 60%;
}

.headerContent img {
width: 90%;
}

.headerContent .para {
width: 60%;
}

.para p {
font-size: 18px;
}

/* section title responsiveness */
/* Section title */


.sectionTitle{
width: 70%;
margin-left: 14%;
}

.sectionTitle h1{
font-size: 33px;
}

.sectionTitle p{
font-size: 18px;
}


/* features section responsive styles */

.tabs-container {
height: 55px;
max-width: 70%;
margin: 10px auto;
}

.tab{
font-size: 13px;
font-weight: 400;
}

.tab.active{
font-weight: 600;
}


.content {
margin:10%;
flex-direction: column-reverse;
}



.content .text {
max-width: 100%;
margin-bottom: 0px;
}

.content #button{
display: none;
}

.content-text img{
margin-top: 10px;
width: 60px;
}

.content #image {
height: 370px;
object-position: 0 0;
border-bottom: 0.5px solid #0000007f;
}

.content .title{
width: 100%;
font-size: 30px;
}


/* Faq section Responsive styles */

.faqContent{
width: 90%;
margin: 0px 50px;
}


.question {
font-size: 18px;
}


.answer p {
font-size: 16px;
}



/* Pricing section Responsive styles */
.pricing-tab {
width: 250px;
height: 50px;
}


.ptab-contents{
  position: relative;
  margin: 0 8%;
}


.lifetime{
left: 0%;
margin: 0px 60px;
}

.bg-blue{
background: linear-gradient(#ffffff, #f0f0f0) !important;
color: var(--button-bg-color) !important;
}

.pricing-box{
width: 100%;
}

.b-border{
background: var(--button-bg-color);
color: var(--font-color-1);
}

.pricing-box h1{
font-size: 20px;
}

.pricing-box span{
font-size: 45px;
}

.feature img{
width: 28px;
}


/* contact section responsive styles */


.contact_container{
left: 0;
width: 90%;
margin:0 auto;
padding: 20px;
}

.row  {
display: flex;
flex-direction: column;
gap: 30px;
}

.contact-info {
width: 100%;
gap: 20px;
}

.contact-info-item img{
width: 30px;
}
.contact-info-item {
gap: 20px;
}




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

.contact-info-content h4 {
font-size: 35px;
font-weight: 500;
}

.contact-info-content p {
font-size: 18px;
}

.contact-form {
border-radius: 25px;
width: 100%;
}




.contact-form .input-box span {
font-size: 15px;
}

.contact-form .input-box input:focus ~ span,
.contact-form .input-box input:not(:placeholder-shown) ~ span,
.contact-form .input-box textarea:focus ~ span,
.contact-form .input-box textarea:not(:placeholder-shown) ~ span{
font-size: 15px;
}


/* Footer Styles */

footer img{
height: 330px; 
}
.footerContent{
padding: 50px;
}

.footerContact{
gap: 170px;
}

.footerLinks{
gap: 40px;
}
.footerLinks .f-links{
gap: 10px;
}


/*common legal styles */
.legal{
  height: 200px;
}

.legal h1{
  margin: 150px 17px;
  font-size: 24px;
}




/* Terms and Conditions  styles*/

.privacy-container {
  margin: 220px auto;
  padding: 0 10px;
  margin-bottom: -50px;
}

.policy-wrapper section {
  margin-top: 40px;
  margin-bottom: 0;
}

.policy-wrapper h2 {
  color: var(--font-color-2);
  font-size: 24px;
  font-weight: 500;
}

.policy-wrapper h3 {
  font-size: 20px;
  margin-top: 20px;
  font-weight: 500;
}

.policy-wrapper ul {
  margin-left: 20px;
  padding-left: 20px;
  list-style-type: disc;
}

.policy-wrapper p {
  margin-bottom: 10px;
  color: var(--font-color-2);
  font-size: 16px;
  font-weight: 300;
}

strong{
  font-weight: 700;
}

 
}
