 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {

            padding-top: 90px;
            font-family: 'Montserrat', sans-serif;
            /* background: linear-gradient(98.28deg, #36313C 7.09%, #000000 159.34%); */
            background: url('./assets/img/second_sec_bg.png') center/cover no-repeat;
            background-attachment: fixed;
            background-image: url(./assets/img/second_sec_bg.png);

        }


      

      /* top header styling start here */


       .pak_idol_main_header {
    width: 100%;
    background: transparent;
    padding: 30px 64px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.pak_idol_main_header.scrolled {
    background: linear-gradient(hsla(0,0%,5%,.9),hsla(0,3%,7%,.2));
        backdrop-filter: blur(20px);
    padding: 15px 64px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.pak_idol_main_header .header_container {
    max-width: 1440px;
    height: 50px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.verticle_line {
    width: 2px;   
    height: 60px;       
    background-color: #fff; 
    opacity: 0.8;  
}

.pak_idol_main_header .logo_section {
    display: flex;
    align-items: center;
    gap: 30px;
}

.pak_idol_main_header .logo_section .logo-img {
    width: 100%;
    transition: all 0.3s ease;
}

.pak_idol_main_header .vertical_line {
    width: 1px;
    height: 55px;
    background: white;
    border-radius: 1px;
}

.pak_idol_main_header .begin-logo {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.pak_idol_main_header.scrolled .begin-logo {
    height: 30px;
}

.pak_idol_main_header .button_section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.pak_idol_main_header .pak_idol_btn {
    width: 115px;
    height: 48px;
    background: linear-gradient(90.18deg, #724D9F 1.37%, #6B4FA1 30.19%, rgba(92, 85, 165, 0.9) 52.91%, rgba(63, 96, 173, 0.96) 77.3%, #0874BC 100%);
    border: none;
    border-radius: 100px;
    color: #F8F9FA;
    font-size: 18px;
    padding: 12px 20px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(114, 77, 159, 0.3);
}

.pak_idol_main_header .pak_idol_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(114, 77, 159, 0.5);
}

.pak_idol_main_header .pak_idol_btn:active {
    transform: translateY(0);
}

.pak_idol_main_header.scrolled .pak_idol_btn {
    height: 42px;
    font-size: 16px;
}

         /* top header styling Ends here */


         /* terms & condition css starts here */

         /* Terms Section */
.terms-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 200px); /* adjust if header/footer height differs */
  color: #fff;
  padding: 0px;
}

.terms-container {
  max-width: 80%;
  border-radius: 12px;
  padding: 120px 0px 120px 0px;
  line-height: 1.8;
}

.terms-container h1 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 2rem;
  color: #ffffff;
}

.terms-container h2 {
  margin-top: 25px;
  font-size: 1.3rem;
  color: #ffffff;
}

.terms-container p {
  margin-top: 10px;
  font-size: 1rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-container {
    padding: 60px 0px 60px 0px;
  }

  .terms-container h1 {
    font-size: 1.6rem;
  }

  .terms-container h2 {
    font-size: 1.1rem;
  }

  .terms-container p {
    font-size: 0.95rem;
  }
}


         /* terms & condition css ends here */

         

/* footer styling Starts here */
.main_footer_sec {
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    background: linear-gradient(90deg, rgba(0, 177, 249, .2), rgba(195, 114, 255, .2));
    padding: 40px 20px;
    color: white;
    overflow: hidden;
    margin: 0 auto; /* Center if inside a container */
}


        .main_footer_sec .footer-container {
            max-width: 1440px;
            margin: 0 auto;
        }

        .main_footer_sec .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 30px;
        }

        .main_footer_sec .footer-left {
            flex: 1;
            max-width: 22%;
        }

        .main_footer_sec .logo {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 20px;
            color: white;
            text-decoration: none;
        }

        .main_footer_sec .app-section {
            margin-bottom: 20px;
        }

        .main_footer_sec .app-title {
            font-size: 16px;
            margin-bottom: 15px;
            color: #e2e8f0;
        }

        .main_footer_sec .app-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .main_footer_sec .app-btn {
            width: 140px;
            height: 41px;
            display: block;
            border-radius: 8px;
            text-decoration: none;
            color: white;
            font-size: 12px;
            transition: all 0.3s ease;
            min-width: 100px;
            text-align: center;
        }

        .main_footer_sec .app-btn:hover {

            transform: translateY(-2px);
        }

        .app-buttons .app-btn img {
                width: 100%;
            }

        .main_footer_sec .footer-right {
            display: flex;
            flex-direction: row;
            line-height: 30px;
            gap: 50px;
            max-width: 400px;
        }

        .main_footer_sec .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: #e2e8f0;
        }

        .main_footer_sec .contact-item a {
            color: #ffffff;
            font-size: 16px;
            font-weight: 500;
            line-height: 143%;
            font-family: 'montserrat' , 'sans-serif';
            text-decoration: none;
            transition: color 0.3s ease;
        }

        /* .main_footer_sec .contact-item a:hover {
            color: #90cdf4;
        } */

        .main_footer_sec .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1440px;
            margin: 0 auto;
        }

        .main_footer_sec .copyright {
           font-size: 17px;
            font-weight: 400;
            color: #FFFFFF;
        }

        .main_footer_sec .social-links {
            display: flex;
               gap: 30px;
            align-items: center;
        }

        .main_footer_sec .social-link {
            width: 32px;
            height: 32px;
            background: #4a5568;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .main_footer_sec .social-link:hover {
            background: #90cdf4;
            transform: translateY(-2px);
        }
        .footer-app-buttons {
                display: flex;
                flex-direction: column;
            }
        

          .footer-top-row-2 {
            width: 100%;
            display: flex;
            justify-content: space-between;
        }

        .footer_top_text{
            display: none;
        }

        .horizontal_line {
            width: 90%;
            background-color: #ffffff;
            height: 1px;
            margin: 0 auto;
        }

        .main_footer_sec .payment-card {
            width: 34px;
            height: 24px;
            background: white;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: #2d3748;
            font-weight: bold;
        }

        .footer_google_img_Sec {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

            .footer-app-buttons .app-btn img {
                width: 100%;
            }

        .main_footer_sec .payment-card img{
            width: 100%;
        }
/* footer styling Ends here */

                 /* Tablet Styles */
        @media screen and (max-width: 1200px) {

             .main_footer_sec .footer-container {
                max-width: 1400px;
            } }

        /* Tablets (768px to 1024px) */
        @media (min-width: 768px) and (max-width: 1024px) {

.main_footer_sec .footer-left {
    max-width: 30%;
}

            .social-links a {
                    width: 12px;
                }

 /* First, reset footer-top layout */
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-top-row-2 {
    width: 100%;
    display: flex;
    }

    .main_footer_sec .social-links {
        padding-right: 40px;
    }

    .main_footer_sec .copyright {
        padding-left: 30px;
    }
    

    .footer-app-buttons .app-btn img {
        width: 100%;
    }

  /* App title on top center */
  .footer-middle-top {
    order: -1;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-middle-top .app-title {
    font-size: 16px;
    font-weight: 600;
  }

  /* Make entire .footer-top behave as a column */
  .footer-left,
  .footer-middle-top .app-buttons,
  .footer-right {
    margin-bottom: 20px;
  }

  /* Create a flex layout for second row */
  .footer-left,
  .footer-middle-top .app-buttons,
  .footer-right {
    width: 100%;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  /* Now create the 3-column layout in one row */
  .footer-top > .footer-left,
  .footer-top > .footer-middle-top .app-buttons,
  .footer-top > .footer-right {
    display: inline-block;
    vertical-align: top;
    width: 33.33%;
    box-sizing: border-box;
    padding: 0 10px;
  }

  /* Alignments for each column */
  .footer-left {
    text-align: left;
    padding-left: 20px;
  }

  .footer-middle-top .app-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-right {
            text-align: left;
        width: 30%;
        align-items: start;
  }

  .footer-middle-top {
    display: block;
  }
  .footer-middle-top2 {
    display: none;
  } }


         /* Tablet Portrait - 768px to 820px */
        @media screen and (min-width: 768px) and (max-width: 820px) {

            .footer-left .logo img {
    width: 100%;
}

            .main_footer_sec .contact-item {
    justify-content: left;
}

            .main_footer_sec .footer-right {
                flex-direction: column;
                gap: 0;
                align-items: start;
                text-align: left;
            }


            .footer_google_img_Sec {
                flex-direction: column;
            }

        .main_footer_sec .footer-bottom{
            flex-direction: row;
        }

            .main_footer_sec .copyright {
            font-size: 16px;
        }


        .main_footer_sec .payment-card {
            width: 38px;
            height: 28px;
        } }

  @media only screen and (width: 1024px) and (orientation: landscape) {
  /* ✅ Your styles here */

  .main_footer_sec .contact-item{
    justify-content:left;
  }


  .footer_google_img_Sec {
    flex-direction: column;
  }

  .main_footer_sec .footer-right{
    flex-direction: column;
    gap: 0;
  }


  .footer-middle-top {
    display: block;
  }

  .footer-middle-top2 {
    display: none;
  }
  }

@media screen and (max-width: 992px) {
    .pak_idol_main_header .nav_section ul {
        gap: 20px;
    }

    .pak_idol_main_header .nav_section ul li {
        font-size: 14px;
    }

    .pak_idol_main_header .pak_idol_btn {
        width: 100px;
        height: 44px;
        font-size: 13px;
    }
}


        /* Mobile View */
        @media (max-width: 767px) {
            /* Footer Styles */
.main_footer_sec {
  padding: 80px 20px 30px 20px;
  margin-top: 50px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.main_footer_sec .footer-bottom {
  justify-content: center;
}

.main_footer_sec .app-title {
  margin-bottom: 30px;
  text-align: center;
}

.main_footer_sec .footer-left,
.main_footer_sec .footer-right {
  min-width: 100%;
  text-align: center;
  padding-bottom: 20px;
}

.main_footer_sec .logo {
  font-size: 28px;
  text-align: center;
}

.main_footer_sec .app-buttons {
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.main_footer_sec .footer-right {
  gap: 0;
  align-items: center;
  text-align: center;
  padding-top: 20px;
  flex-direction: column;
  line-height: 40px;
}

.footer_google_img_Sec {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  margin-bottom: 20px;
  align-items: center;
  text-align: center;
}

.main_footer_sec .copyright {
  font-size: 14px;
}

.main_footer_sec .footer-top {
  flex-direction: column;
  align-items: stretch;
  gap: 25px;
}

.footer-top-row-2 {
  flex-direction: column;
}

        }




@media screen and (max-width: 480px) {

  .main_footer_sec .app-btn {
    width: 100%;
    gap: 5px;
    max-width: 50%;
  }

  .main_footer_sec .social-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .main_footer_sec .payment-card {
    width: 35px;
    height: 22px;
    font-size: 9px;
  }

}



@media screen and (max-width: 375px) {

  .main_footer_sec .footer-bottom {
    justify-content: center;
  }

  .footer-left {
    text-align: center;
  }

}



@media (max-width: 360px) {

  .main_footer_sec .logo {
    font-size: 24px;
  }

  .main_footer_sec .contact-item {
    font-size: 12px;
  }

  .main_footer_sec .copyright {
    font-size: 12px;
  }

}
