html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: aliceblue;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* prevents horizontal scroll */
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Underline */
.underline3{
    position: relative;
    color: rgb(0, 0, 0);
    text-decoration: none;
  }
  
  .underline3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: rgb(255, 255, 255);
    transition: width 0.4s ease-in-out;
  }
  
  .underline3:hover::after {
    width: 100%;
  }







  /* back button */
.back{
    position: relative;
    margin-left: 20px;
    margin-top: 10px;
    margin-bottom: -5rem;
}
.back-container{    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #dd8a3d;
    display: flex;
    background: #000;
    width: fit-content;
    padding: 10px;
    border-radius: 12px;
}
.back-container p{
    font-size: 1rem;
}
.back-container img{
    width: 70px;
    height: 70px;
}

@media screen and (max-width: 1024px){
    .back-container p{
        font-size: 0.7rem;
    }
    .back-container img{
        width: 50px;
        height: 50px;
    }
}
@media screen and (max-width: 768px){
    .back-container p{
        font-size: 0.5rem;
    }
    .back-container img{
        width: 30px;
        height: 30px;
    }
}
@media screen and (max-width: 425px){
    .back-container p{
        font-size: 0.4rem;
    }
}



/* Hero Section */
.hero{
    display: flex;
    justify-content: center;
    padding-bottom: 5rem;
}

.hero-container1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1440px;
}

.hero-heading {
    margin-top: 5rem;
    width: 70vw;
}
.hero-heading h1{
    font-size: 2rem;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .hero-heading h1{
        font-size: 1rem !important;
        text-align: center;
    }   
}
@media screen and (max-width: 375px) {
    .hero-heading h1{
        font-size: 0.8rem !important;
        text-align: center;
    }   
}





.hero-image{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 5rem;
    max-width: 1440px;
}
.hero-image img{
    width: 20vw;
    height: 20vw;
}
.hero-image p{
    background: linear-gradient(to right, #a85acf, #654ff6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
    .hero-image{
        margin-top: 1rem;
    } 
    .hero-image p{
        font-size: 0.5rem;
    }
}





/* About Section */

.about{
    background-color: rgb(22, 20, 20);
    color: #fff;
    padding-top: 5rem;
    display: flex;
    justify-content: center;
}
.about-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 88.75vw;
    max-width: 1440px !important;
}

.about-heading{
    display: flex;
    justify-content: center;
    gap: 100px;
}
.about-heading p{
    font-size: 4rem;
}
.about-heading img{
    width: 20vw;
    height: 45vh;
    max-width: 300px !important;
    min-width: 200px;
    max-height: 400px !important;
    margin: 20px;
    border-radius: 12px !important;
    box-shadow: 0 0 10px 1px #355953;
}

@media screen and (max-width: 1230px) {
    .about-heading{
        gap: 6vw !important;
    }
}
@media screen and (max-width: 768px) {
    .about-heading p{
        font-size: 2rem;
    }
    .about-heading img{
        width: 10vw;
        height: 30vh;
        /* min-width: 100px; */
        max-height: 400px !important;
        margin: 0;
    } 
}
@media screen and (max-width: 768px) {
    .about-heading p{
        font-size: 1rem;
    }
    .about-heading img{
        width: 10vw;
        height: 26vh;
        min-width: 100px;
        max-height: 400px !important;
        margin: 0;
    } 
}






/* .about-collab{
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 5rem;
}
.about-collab-image1{
    display: flex;
    justify-content: right;
}
.about-collab-image1 img{
    width: 20vw;
    height: 50vh;
    max-width: 400px !important;
    max-height: 550px !important;
    margin: 20px;
    border-radius: 12px !important;
    box-shadow: 0 0 10px 1px #6453a2;
}

.collab-info p{
    width: 45vw;
}
.collab-info-image2{
    width: 100%;
    display: flex;
    justify-content: right;
}
.collab-info-image2 img{
    width: 15vw;
    height: 35vh;
    max-width: 300px !important;
    max-height: 400px !important;
    margin: 20px;
    border-radius: 12px !important;
    box-shadow: 0 0 10px 1px #355953;
} */
.about-collab {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 5rem;
    flex-wrap: wrap; /* allow wrapping on small screens */
  }
  
  .about-collab-image1 {
    display: flex;
    justify-content: center;
    flex: 1 1 300px;
  }
  
  .about-collab-image1 img {
    width: 100%;
    max-width: 400px;
    height: auto;
    max-height: 550px;
    margin: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px 1px #6453a2;
  }
  
  .collab-info {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .collab-info h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .collab-info p {
    width: 100%;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  
  .collab-info-image2 {
    width: 100%;
    display: flex;
    justify-content: right;
  }
  
  .collab-info-image2 img {
    width: 100%;
    max-width: 300px;
    height: auto;
    max-height: 400px;
    margin: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px 1px #355953;
  }
  
  /* ---------- RESPONSIVE STYLING ---------- */
  
  @media (max-width: 1024px) {
    .about-collab {
      flex-direction: column;
      align-items: center;
      gap: 40px;
    }
  
    .collab-info {
      text-align: center;
      align-items: center;
    }
  
    .collab-info-image2 {
      justify-content: center;
    }
  
    .collab-info p {
      width: 90%;
    }
  }
  
  @media (max-width: 600px) {
    .collab-info h1 {
      font-size: 1.6rem;
    }
  
    .collab-info p {
      font-size: 1rem;
      width: 95%;
    }
  
    .about-collab-image1 img,
    .collab-info-image2 img {
      max-width: 90vw;
      height: auto;
      margin: 10px;
    }
  }
  






/* Feature Section */


.feature-headng{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6rem;
}
.feature-headng1{
    width: 88.75vw;
    max-width: 1440px !important;
    display: flex;
    justify-content: center;
}
.feature-headng1 h1{
    text-align: center;
    font-size: 4rem;
}


.feature1{
    padding-top: 5rem;
    display: flex;
    justify-content: center;
    width: 100%;
}


.feature-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 88.75vw;
    max-width: 1440px !important;
}
.feature-container-heading h2{
    font-size: 3rem;
}
.feature-container-heading-para{
    display: flex;
    margin-top: 3rem;
}
.feature-container-heading-para p{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15vw;
    height: 10vh;
    box-shadow: 0 0 10px 2px #0000005a;
    margin: 10px;
    text-align: center;
    background-color: #23314a;
    border-radius: 8px;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
    color: #fff;
    cursor: pointer;
}

.feature-container-heading-para p:hover{
    background-color: #29888b;
    color: black;
}

@media screen and (max-width: 425px) {
    .feature-headng1 h1{
        text-align: center;
        font-size: 2.2rem;
        text-align: center;
    }
    
}








/* Price Section */

  /* Price Cards */
  .price-background{
    display: flex;
    justify-content: center;
    font-family: "space grotesk";
    align-items: center;
    width: 100%;
  }
  .price{
    width: 100% !important;
    max-width: 1440px;
    display: flex;
    justify-content: center;
  }
  .price-container{
    margin-left: 2rem;
    width: 78.75vw !important;
    max-width: 1440px;
    display: flex;
    justify-content: center;
  }
  .price-cards{
    margin: 3vh 2vw;
    background-color: #F7F8FD;
    padding: 0px 20px 20px 20px;
    border-radius: 20px;
    box-shadow: -2px 4px 11.5px 0 #00000040;
    width: fit-content;
    transition: all 0.3s ease-in-out;
  }
  .price-cards2{
    margin: 3vh 2vw;
    color: #fff;
    background-color: #000000e5;
    padding: 0px 20px 20px 20px;
    border-radius: 20px;
    box-shadow: -2px 4px 11.5px 0 #00000040;
    width: fit-content;
    transition: all 0.3s ease-in-out;
  }
  .package{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: -3vh;
  }
  .price-tag{
    font-size: 36px;
    font-weight: 700;
    margin-bottom: -1.6vh;
  }
  .price-cards .price-tag{
    color: #7167c6;
  }
  .price-cards2 .price-tag{
    background: linear-gradient(90deg, #629EF8 20%, #8E3BEA 40%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* for Firefox */
    color: transparent;
  }
  .plan{
    font-size: 24px;
    font-weight: 700;
  }
  .contain{
    font-size: 16px;
  }
  .feature{
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    margin: -1vh 0;
  }
  .feature img{
    width: 30px;
    height: 30px;
  }
  .vision{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    margin-top: 2vh;
    font-weight: 500;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
  }
  .vision img{
    width: 25px;
    height: 25px;
  }
  .price-cards .vision{
    background: #1C1C1C;
    color: #fff;
  }
  .price-cards2 .vision{
    background: #F7F8FD;
    color: #000;
  }
  .price-cards:hover{
    transform: scale(1.02);
  }
  .price-cards2:hover{
    transform: scale(1.02);
  }
  
  @media screen and (max-width: 425px) {

    .price-tag{
        text-align: center;
        font-size: 30px;
    }
    .plan, .package{
        font-size: 24px;
        text-align: center;
    }

    .price-heading{
      width: 88vw;
    }
    .price-heading h1{
      font-size: 2rem;
    }
    .feature p{
        font-size: 10px;
    }
    .vision{
        margin-top: 20px !important;
        font-size: 10px;
        padding: 0;
    }
  }

  @media screen and (max-width: 375px) {
    .price-heading h1{
      font-size: 2rem;
    }
    .feature p{
        font-size: 10px;
    }
    .vision{
        margin-top: 20px !important;
        font-size: 10px;
        padding: 0;
    }
  }


  
  @media screen and (max-width: 890px) {
  
    .price-container{
      flex-direction: column;
      justify-content: center;
      align-items: end;
    }
    
    .price-background{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .price-heading{
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      /* width: 80vw; */
    }
  }
  








  

  .faq-heading-container{
    display: flex;
    justify-content: center;
    margin-top: 10rem;
    margin-bottom: -3rem;
    width: 100%;
  }

  .faq-heading {
    display: flex;
    justify-content: center;
    width: 88.75vw;
    max-width: 1440px;    
    font-size: 1.5rem;
    font-weight: 1000;
    text-align: center;
  }
@media screen and (max-width: 425px) {
    .faq-heading {
        font-size: 1rem;
    }   
}
  
  
  .faq-section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    color: #fff;
  }
  
  .faq-container {
    max-width: 1440px;
    width: 87.75vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .faq-item {
    margin-bottom: 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  /* Question Styling */
  .faq-question {
    background-color: #7167c6;
    padding: 20px;
    font-size: 1.3rem;
    border-radius: 8px;
    opacity: 0;
    transform: translateX(-100px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    max-width: 90%;
    width: fit-content;
    box-shadow: 0 0 20px rgba(113, 103, 198, 0.5);
  }
  
  /* Answer Styling */
  .faq-answer {
    background-color: #000;
    padding: 20px;
    font-size: 1.1rem;
    border-radius: 8px;
    margin-top: 10px;
    opacity: 0;
    transform: translateX(100px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    max-width: 90%;
    width: fit-content;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  }
  
  /* Media Query for Responsiveness */
  @media (max-width: 768px) {
    .faq-question,
    .faq-answer {
      font-size: 1rem;
      padding: 16px;
      max-width: 100%;
    }
  
    .faq-question {
      transform: translateX(-50px);
    }
  
    .faq-answer {
      transform: translateX(50px);
    }
  }
  






  
  /* Success Section */


/* Wrapper for the full panel section */
.page-wrapper {
    background-color: #000;
    display: flex;
    justify-content: center;
  }
  
  /* Main section */
  .hero-section {
    position: relative;
    display: flex;
    width: 100%;
    height: 700px;
    overflow: hidden;
  }
  
  /* Color panel grid background */
  .panel-background {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: #000;
    width: 100%;
    height: 100%;
  }
  
  /* Base panel style */
  .panel1,
  .panel2,
  .panel3,
  .panel4 {
    transition: background-color 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
  }
  
  /* Glow on hover */
  .panel1:hover{
    background-color: #29888b;
    box-shadow: 0 0 30px #29888b, 0 0 30px #29888b;  
  }
  
  .panel2:hover {
    background-color: #6453a2;
    box-shadow: 0 0 30px #6453a2, 0 0 30px #6453a2;
  }
  
  .panel3:hover {
    background-color: #ffff00;
    box-shadow: 0 0 30px #ffff00, 0 0 30px #ffff00;
  }
  
  .panel4:hover {
    background-color: red;
    box-shadow: 0 0 30px red, 0 0 30px red;
  }
  
  /* Content container centered on top */
  .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none; /* prevents interfering with panel hovers */
  }
  
  /* Heading style */
  .hero-row {
    position: relative;
    color: #fff;
    font-weight: 900;
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  }
  .hero-row h1{
    font-size: 3.5rem;
  }
  .hero-row p{
    font-size: 1.4rem;
  }
  
  /* Optional: glowing animated text (if you want glowing text too) */
  /*
  .hero-heading1 {
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
  }
  */
  
  
  /* RESPONSIVE */

  @media (max-width: 1024px) {
    .hero-row .hero-heading1 {
        font-size: 2.5rem;
      }
      
  }

  @media (max-width: 768px) {
    .panel-background {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(2, 1fr);
    }
  
    .hero-row .hero-heading1 {
      font-size: 2rem;
      padding: 16px 24px;
    }
    .hero-row  p{
        font-size: 0.7rem;
    }
  }
  
  @media (max-width: 480px) {
    .panel-background {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(4, 1fr);
    }
  
    .hero-heading1 {
      font-size: 1.6rem;
      padding: 14px 20px;
    }
  }
  
  @media (max-width: 650px) {
    .hero-row .hero-heading1 {
        font-size: 1.2rem;
        padding: 10px 20px;
      }
      .hero-row  p{
          font-size: 0.5rem;
        }
  }
    
  @media (max-width: 425px) {
    .hero-row .hero-heading1 {
        font-size: 0.8rem;
      }
      .hero-row  p{
          font-size: 0.5rem;
        }
  }




  /* Success Story Section */

.story{
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 5rem;
}
.story-container{
    width: 87.75vw;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.story-button{
    display: flex;
    gap: 20px;
}

.story-button-container{
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 2rem;
    width: fit-content;
    box-shadow: 0 0 10px #000000;
    text-align: center;
}
.story-button-container1{
    background-color: #60a3ca;
}

.story-button-container2{
    background-color: #c46c6c;
    width: fit-content;
}

@media (max-width: 425px) {
    .story-container h1{
        text-align: center;
        font-size: 1rem;
    }
    .story-button-container p{
        font-size: 0.4rem;
        text-align: center;
    }
  }







/* Contact Form Section */




.contact1{
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    background-image: url('/images/collaborator/contact2-image.jpg');
    background-size: cover;
    color: #fff;
    padding: 3rem;
    box-shadow: 0 0 10px 10px #60a3ca7a;
}
.contact1 .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}  

.contact2{
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    background-image: url('/images/collaborator/cantact1-image.jpg');
    background-size: cover;
    color: #fff;
    padding: 3rem;
    box-shadow: 0 0 10px 10px #c46c6c61;
}
.contact2 .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.614);
    z-index: 1;
}  


.contact-container{
    z-index: 2;
    width: 88.75vw;
    max-width: 1440px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.contact-heading{
    margin-bottom: 4rem;
}
.contact-heading h1{
    background: linear-gradient(to right, #629EF8, #8E3BEA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for Firefox */
  font-size: 4rem;
}

.form-field{
    display: flex;
    flex-direction: column;
}
.form-field label{
    font-size: 1.3rem;
}
.form-field input{
    width: 28vw;
    height: 40px;
    max-width: 500px;
    background: #dfdbff;
    padding-left: 20px;
    border: none;
    border-radius: 12px;
    margin-top: 20px;
    color: #000;
    font-size: 1rem;
}
.form-field input::placeholder{
    color: #000;
}
.form-field input:focus{
    outline: none;
}

.form-field select{
    width: 29.6vw;
    max-width: 500px;
    height: 40px;
    max-width: 500px;
    background: #dfdbff;
    padding-left: 20px;
    border: none;
    border-radius: 12px;
    margin-top: 20px;
    color: #000;
    font-size: 1rem;
}
.form-field select::placeholder{
    color: #000;
}
.form-field select:focus{
    outline: none;
}

.form-field textarea{
    width: 27vw;
    max-width: 500px;
    height: 100px;
    max-width: 500px;
    background: #dfdbff;
    border: none;
    border-radius: 12px;
    margin-top: 20px;
    color: #000;
    padding: 20px;
    font-size: 1rem;
}
.form-field textarea::placeholder{
    color: #000;
}
.form-field textarea:focus{
    outline: none;
}


.footer1-container-button{
    display: flex;
    justify-content: center;
}
.footer1-container-button button{
    display: flex;
    justify-content: center;
    width: 30vw;
    padding: 14px 20px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    background-color: #000000;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
    .form-field input{
        width: 40vw;
        min-width: 200px;
    }
    .form-field select{
        width: 42vw;
        min-width: 220px;
    }
    .form-field textarea{
        width: 38vw;
        min-width: 180px;
    }
    .footer1-container-button button{
        width: 41vw;
        min-width: 220px;
    }
}

@media screen and (max-width: 768px) {
    .contact-heading h1{
        font-size: 3rem;
        text-align: center;
    }
    .form-field input{
        width: 40vw;

    }
}
@media screen and (max-width: 425px) {
    .contact1, .contact2{
        background-size: contain;
    }
}






/* Hide both by default */
.contact1,
.contact2 {
  display: none;
  opacity: 0;
  transform: translateX(0);
  transition: all 0.5s ease-in-out;
}




.fade-scale {
    animation: fadeScale 0.5s ease forwards;
  }
  @keyframes fadeScale {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
  }
  
  .slide-up {
    animation: slideUp 0.5s ease forwards;
  }
  @keyframes slideUp {
    0% { transform: translateY(100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
  }
  
  .fade-in {
    animation: fadeIn 0.5s ease forwards;
  }
  @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  .flip-in {
    animation: flipIn 0.6s ease forwards;
  }
  @keyframes flipIn {
    0% { transform: rotateY(90deg); opacity: 0; }
    100% { transform: rotateY(0); opacity: 1; }
  }
  
  


/* water fill efffect */
  .water-button {
    position: relative;
    overflow: hidden;
    color: white;
    background-color: #007BFF;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 16px;
  }
  
  .water-button .fill {
    content: "";
    position: absolute;
    background-color: rgb(102, 145, 177);
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    z-index: 0;
    pointer-events: none;
    transition: transform 3s linear;
  }
  
  .water-button.filling .fill {
    transform: translateY(0%);
  }
  
  .water-button span,
  .water-button::after {
    position: absolute;
    z-index: 0;
  }
  






/* Footer 2 Section */
.footer2{
    font-family: "space grotesk";
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
    background-color: #000;
  }
  .footer2-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    width: 87.5vw;
    max-width: 1440px;
  }
  
  
  
  /* Left side Section */
  .left-side{
    display: flex;
    flex-direction: column;
    width: auto;
  }
  .left-side h1{
    background: linear-gradient(90deg, #629EF8 10%, #8E3BEA 40%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* for Firefox */
    color: transparent;
    font-size: 3.5rem;
    margin: 0;
    width: fit-content;
  }
  .left-side p{
    color: #FFFFFF;
    width: 78%;
  }
  .left-side-image{
    display: flex;
    justify-content: left;
    gap: 20px;
    margin: 20px 20px;
    width: fit-content;
  }
  
  
  
  /* footer mid  section */
  .footer-mid{
    display: flex;
    justify-content: center !important;
    /* width: fit-content; */
    gap: 25px
  }
  .footer-links ul{
    list-style: none;
    display: flex;
    justify-content: left;
    flex-direction: column;
    gap: 20px;
    width: max-content;
    padding: 0;
  }
  .footer-links-list a{
    text-decoration: none;
    color: #E4E4E4;
  }
  .explore a{
    color: #fff !important;
    font-size: 1.6rem;
    font-weight: 700;
  }
  
  
  
  /* Right side section */
  .right-side{
    display: flex;
    justify-content: right;
  }
  .newsletter1{
    width: max-content;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
  }
  .newsletter1-mail{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .newsletter1-mail:first-child{
    color: #ffffff;
    font-size: 20px;
  }
  
  .follow_us{
    color: #fff;
  }
  
  .text-field{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .text-field-p{
    width: 20vw;
    font-size: 14px;
  }
  .input-field1{
    display: flex;
    gap: 20px;
    background-color: #ffffff;
    border-radius: 8px;
  }
  .input-field1 input:focus{
    outline: none;
  }
  .input-field1 .mail-text1{
    border: none;
    font-size: 16px;
    padding: 10px;
    width: 90%;
    color: #000;
    background-color: #ffffff;
    border-radius: 8px;
  }
  .newsletter{
    color: #fff;
    font-size: "space grotesk";
  }
  .newsletter .sign-up{
    color: #fff;
  }
  .newsletter-btn{
    width: 10px;
    display: flex;
    justify-content: right;
    align-items: center;
  }
  
  
  
  .policy{
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #E4E4E4;
  }
  .newsletter-mail{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  
  }
  .mail-text{
    width: 40vw !important;
    margin-bottom: 10px;
    border: none;
    border-bottom: 1px solid #5E5E5E;
    background: transparent;
    font-size: 16px;
    padding: 10px;
    width: 34vw;
    color: #fff;
  }
  .custom-checkbox {
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    user-select: none;
  }
  .custom-checkbox p{
    margin-top: 0px;
  }
  .custom-checkbox input {
    position: absolute;
    opacity: 0;
  }
  
  .checkmark {
    position: absolute;
    left: 0;
    top: 0;
    height: 24px;
    width: 24px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background-color: transparent;
  }
  
  input:checked ~ .checkmark {
    background: url("images//vector/checkbox-right.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 25px;
  }
  
  /* show image icon */
  input:checked ~ .checkmark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    background-image: url('images/check-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
  }
  
  
  
  
  
  /* footer hr section */
  .footer2-hr{
    display: none;
  }
  
  
  
  @media screen and (min-width: 1441px) {
    .input-field1 .mail-text1{
      width: 87% !important;
    }
  }
  @media screen and (max-width: 1440px) {
    .input-field1 .mail-text1{
      width: 80% !important;
    }
  }
  
  
  @media screen and (max-width: 1230px) {
  
    .footer2-container{
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media screen and (max-width: 1230px) {
  
    .footer2-container{
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media screen and (max-width: 786px) {
  
    .footer2-container{
      grid-template-columns: repeat(1, 1fr);
    }
    .left-side{
      width: 100%;
    }
    .footer-mid{
      justify-content: left !important;
    }
    .right-side{
      justify-content: left;
    }
    .text-field-p{
      width: 70vw;
    }
    .input-field1{
      display: flex;
      justify-content: space-between;
      padding: 0 10px;
    }
    .input-field .mail-text{
      width: 300px !important;
    }
  
  
    /* footer hr section */
  .footer2-hr{
    display: block;
    width: 100%;
    border: 1px solid #636363;
  }
  
  
  }
  
  @media screen and (max-width: 485px) {
    .newsletter{
      margin-left: -15px !important;
    }
  }
  
  @media screen and (max-width: 425px) {
    .newsletter{
      margin-left: -16px !important;
    }
    .newsletter-mail p{
      font-size: 18px !important;
      padding-top: 2px;
    }
    .input-field{
      display: flex;
      justify-content: center;
    }
    .input-field .mail-text{
      width: 240px !important;
    }
    .submit-img{
      width: 15px;
    }
    .custom-checkbox{
      justify-content: center;
      align-items: center;
      display: flex;
    }
    .custom-checkbox input{
      width: 10px !important;
    }
    .left-side h1{
        font-size: 2.8rem;
    }
    
  }

  @media screen and (max-width: 425px) {
    .left-side h1{
        font-size: 2rem;
    }
  }