 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 body {
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   color: #fff;
 }
 section {
   scroll-margin-top: 170px;
 }
 


 
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0e0e0e;
    padding: 10px 25px;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #e34449;
  }

  /* ---------------------------
     🔹 Left Section
  --------------------------- */
  .navbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .navbar-left p {
    font-size: 32px;
    font-weight: 700;
    color: #f90;
    margin: 0;
    letter-spacing: 1px;
    cursor: pointer;
  }

  /* ---------------------------
     🔍 Search Bar
  --------------------------- */
  .search-box {
    display: flex;
    align-items: center;
    background: #222;
    border-radius: 50px;
    padding: 6px 12px;
    transition: all 0.3s ease;
    width: 250px;
  }

  .search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    width: 100%;
    font-size: 14px;
    padding: 5px 10px;
  }

  .search-box i {
    color: #aaa;
    font-size: 16px;
  }

  .search-box:focus-within {
    background: #333;
  }

  .navbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .lang-select {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-weight: 600;
    user-select: none;
  }

  .signin-btn {
    background-color: #e34449;
    border: none;
    padding: 10px 18px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }

  .signin-btn:hover {
    background-color: #c83238;
  }

  /* ---------------------------
     🍔 Hamburger Menu
  --------------------------- */
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
  }

  /* ---------------------------
     📱 Responsive Styles
  --------------------------- */
  @media (max-width: 992px) {
    .search-box {
      width: 180px;
    }
  }

  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }


    .search-box {
      display: none;
    }



    .navbar.active .search-box {
      display: flex;
      width: 90%;
      margin: 10px auto;
    }

    @keyframes slideDown {
      from {opacity: 0; transform: translateY(-10px);}
      to {opacity: 1; transform: translateY(0);}
    }
  }

 /* Breadcrumb styling */

 .hero {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  background-color:#303947;
}
.hero-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
 .breadcrumb {
  min-width: 100%;
   position: relative;
   display: flex;
   flex-direction: column;
   gap: 20px;
   justify-content: center;
   align-items: center;
   background-size: cover;
   height: 45vh;
   z-index: 1;
   overflow: hidden;
 }
 .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; 
  filter: brightness(0.4);
}

 .breadcrumb h1 {
   color: #fff;
   z-index: 1;
   text-align: center;
   font-size: 35px;
 }
.aiporn-image{
  background: url(../Images/instacams-banner-image.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
 .breadcrumb::before {
   content: "";
   position: absolute;
   inset: 0;
   background: hsla(0, 0%, 0%, 0.6);
   z-index: 0;
 }

 .gradient-button {
   background: #E34449e4;
   color: #fff;
   padding: 15px 30px;
   font-size: 18px;
   font-weight: bold;
   border: none;
   border-radius: 5px;
   cursor: pointer;
   transition: transform 0.2s ease, box-shadow 0.2s ease;
   z-index: 1;
   position: relative;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
 }
 .aiporn-button {
   background: #448ee3e4;
 }
 .aiporn-button:hover {
   background: #448ee3bb !important;
 }

 .gradient-button:hover {
   background: #E34449e4;
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
 }

 .carousel-controls {
    position: absolute;
    bottom: 1%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: auto;
    padding: 0 0rem;
}

button.prev, button.next {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 50%;
}

button.prev:hover, button.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

 /* Responsive - mobile */
 @media (max-width: 768px) {
   .menu-toggle {
     display: inline-block;
   }

   .navbar-left p {
     font-size: 20px;
     color: #E34449;
     font-weight: 700;
   }
   .breadcrumb{
        padding: 5% 2%;
        height: auto;
   }

   .breadcrumb h1 {
     font-size: 20px;
     text-align: center;
   }
   .bottom-nav .nav-link {
    font-size: 6px;
   }
   .nav-links {
     position: absolute;
     top: 60px;
     left: 0;
     right: 0;
     background-color: #003366;
     flex-direction: column;
     gap: 0;
     overflow: hidden;
     max-height: 0;
     transition: max-height 0.3s ease;
     border-bottom-left-radius: 8px;
     border-bottom-right-radius: 8px;
     z-index: 10;
   }

   .nav-links.open {
     max-height: 300px;
     /* enough height for menu items */
   }

   .nav-links a {
     padding: 12px 20px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.15);
   }

   .navbar-right {
     gap: 10px;
   }
 }
 .container {
   display: flex;
   max-width: 1300px;
   margin: 0 auto;
   background-color: #0e0e0e;
   
 }

 /* Left content */
 .content {
   flex: 3;
    background-color: #000;
   border-radius: 10px;
   box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
   padding: 30px;
 }

 .content a {
   text-decoration: none;
   color: #fff;
 }

 .content section {
   margin-bottom: 30px;
 }
.main-section{
  background-color: #000;
   color: #fff;
   padding: 20px;
}
 .content h2 {
   font-size: 28px;
   margin-bottom: 10px;
 }

 .content p {
   font-size: 18px;
   line-height: 1.6;
   margin-bottom: 10px;
 }

 .bottom-nav {
   flex: 1;
   width: 100%;
   position: sticky;
   top: 60px;
   align-self: flex-start;
   background: #2f2f2f;
   padding: 5px 20px;
   box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
   display: flex;
   gap: 10px;
   z-index: 1100;
 }

 .bottom-nav .nav-link {
  cursor: pointer;
   display: block;
   padding: 7px 15px;
   text-decoration: none;
   color: #ffffff;
   font-weight: 500;
   border-radius: 6px;
   transition: background-color 0.2s, color 0.2s;
 }

 .bottom-nav .nav-link.active {
   background-color: #A60000;
   color: #fff;
 }

 .bottom-nav .nav-link:hover {
   background-color: #A60000;
   color: #fff;
 }

 .sidebar {
   flex: 1;
   width: 20%;
   position: sticky;
   top: 120px;
   align-self: flex-start;
   gap: 10px;
   display: flex;
   justify-content: center;
 }
.video-section {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  width: 260px;
   box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.sidebar-video-card {
  display: none;
  position: relative;
  width: 300px;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}

.sidebar-video-card video {
  width: 100%;
  display: block;
}

.sidebar-video-card button {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%);
  margin-top: 10px;
  padding: 15px 20px;
  background-color: #f39c12;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 80%;
  font-weight: bold;
  font-size: 19px;
}

.sidebar-video-card button:hover {
  background-color: #e67e22;
}

 /* Scroll smooth */
 html {
   scroll-behavior: smooth;
 }

 @media screen and (max-width: 768px) {
   .container {
     flex-direction: column;
   }

   .sidebar {
     width: 100%;
     margin-bottom: 10px;
     flex-direction: column;
     position: static;
   }
   

   .content {
     margin-right: 0px;
     padding: 30px 10px;
   }
 }

 .key-features {

   margin-top: 40px;
   border-radius: 8px;
 }

 .key-features h2 {
   font-size: 28px;
   margin-bottom: 10px;
 }

 .feature-item {
   display: flex;
   align-items: flex-start;
   margin-bottom: 25px;
   gap: 15px;
 }

 .feature-item i {
   font-size: 20px;
   color: #007bff;
   flex-shrink: 0;
 }

 .feature-item h3 {
   font-size: 20px;
   margin: 0 0 6px;
 }

 .feature-item p {
   margin: 0;
   font-size: 18px;
   line-height: 1.6;
 }

 @media (max-width: 768px) {
   .feature-item {
     flex-direction: column;
     align-items: flex-start;
   }

   .feature-item i {
     font-size: 24px;
     margin-bottom: 8px;
   }
 }


 .content ul {
   list-style-type: none;
   margin-left: auto;
   margin-right: auto;
 }

 .content ul li {
   font-size: 18px;
   line-height: 1.6;
   margin-bottom: 15px;
   position: relative;
 }




 #faqs {
   margin-top: 50px;
 }

 #faqs h2 {
   font-size: 28px;
   margin-bottom: 25px;
 }

 .faq-item {
   background: white;
   border-radius: 8px;
   margin-bottom: 15px;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
   overflow: hidden;
 }

 .faq-question {
   width: 100%;
   background-color: #eaf7ff;
   border: none;
   outline: none;
   cursor: pointer;
   padding: 18px 20px;
   text-align: left;
   font-weight: 600;
   font-size: 18px;
   color: #000;
   transition: background-color 0.3s ease;
   display: flex;
   justify-content: space-between;
   align-items: center;
 }

 .faq-question:hover {
   background-color: #d6ebff;
 }

 .faq-question::after {
   content: '+';
   font-size: 24px;
   line-height: 1;
   transition: transform 0.3s ease;
 }

 .faq-question.active::after {
   content: '−';
   transform: rotate(180deg);
 }

 .faq-answer {
   padding: 0 20px 20px 20px;
   display: none;
   font-size: 16px;
   color: #333;
   line-height: 1.5;
 }

 .footer {
   background-color: #0b1221;
   color: #b0b3b8;
   padding: 30px 20px;
   font-family: Arial, sans-serif;
   font-size: 14px;
 }

 .footer-top {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: center;
   gap: 20px;
   max-width: 1200px;
   margin: 0 auto;
 }

 .footer-top p {
   font-size: 35px;
   font-weight: 700;
   color: #E34449;
 }

 .footer-logo {
   height: 40px;
   user-select: none;
 }

 .footer-nav {
   display: flex;
   gap: 30px;
   flex-wrap: wrap;
 }

 .footer-nav a {
   color: white;
   text-decoration: none;
   font-weight: 700;
   cursor: pointer;
   user-select: none;
 }

 .footer-nav a:hover {
   text-decoration: underline;
 }

 .footer-icons {
   display: flex;
   align-items: center;
   gap: 20px;
 }

 .age-icon {
   border: 2px solid white;
   border-radius: 50%;
   padding: 6px 12px;
   font-weight: 700;
   font-size: 16px;
   color: white;
   user-select: none;
 }

 .helpline-logo {
   height: 40px;
   user-select: none;
 }

 hr {
   border: none;
   border-top: 1px solid #2a2f45;
   margin: 20px 0;
 }

 .footer-bottom {
   max-width: 1200px;
   margin: 0 auto;
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: center;
   gap: 20px;
 }

 .country-select {
   background-color: #1a2034;
   color: white;
   border: none;
   padding: 10px 14px;
   font-size: 14px;
   border-radius: 6px;
   cursor: pointer;
   min-width: 180px;
   user-select: none;
 }

 .country-select option {
   color: #fff;
 }

 .footer-text {
   flex: 1;
   min-width: 280px;
   line-height: 1.5;
   color: #a9aebf;
 }

 .footer-text a {
   color: #5ab0ff;
   text-decoration: none;
 }

 .footer-text a:hover {
   text-decoration: underline;
 }

 @media (max-width: 768px) {
   .footer-top {
     justify-content: center;
     gap: 30px;
   }

   .footer-nav {
     justify-content: center;
     gap: 20px;
   }

   .footer-bottom {
     flex-direction: column;
     align-items: flex-start;
   }

   .footer-text {
     margin-top: 15px;
   }
 }



 .card-container {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 10px;

 }

 .profile-card {
   border-radius: 5px;
   overflow: hidden;
   /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
   width: 280px;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   position: relative;
   cursor: pointer;
 }

 .profile-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
 }

 .slot-video video {
   width: 100%;
   display: block;
   height: 180px;
   object-fit: cover;
   /* filter: blur(4px);  */
  transition: filter 0.3s ease; /* smooth transition */
  pointer-events: none; /* prevents accidental clicks on video */
 }

 .slot-video video::-webkit-media-controls {
   display: none !important;
 }

 .slot-video video::-moz-media-controls {
   display: none !important;
 }
 .profile-card:hover .slot-video video {
  filter: blur(0); /* clear on hover */
}

 .slot-video video {
   controls: false;
 }

 .timg {
   position: absolute;
   top: 150px;
   right: 5px;
   background-color: #1a1a1a;
   padding: 2px 10px 4px 10px;
   font-size: 14px;
   color: #dbdbdb;
 }

 .profile-info {
   padding: 5px 10px;
   display: flex;
   justify-content: space-between;
 }

 .icon-mess i {
   font-size: 20px;
 }

 .username {
   font-size: 1rem;
   font-weight: 600;
   margin-bottom: 5px;
 }

 .views {
   color: #666;
   font-size: 0.7rem;
   margin-bottom: 10px;
 }

 .status-dot {
   width: 10px;
   height: 10px;
   background: limegreen;
   border-radius: 50%;
   display: inline-block;
   margin-left: 5px;
 }

 @media (max-width: 768px) {
   .profile-card {
     width: 48%;
   }
 }

 .next-btn {
   margin-top: 2%;
   display: flex;
   justify-content: center;
 }

 .next-btn a {
   text-decoration: none;
   margin: auto;
 }


 .main-section h2 {
   font-size: 2rem;
 }

 .main-section p {
   margin: 2% auto;
 }

 @media(max-width: 576px) {
   .main-section h2 {
     text-align: center;
     font-size: 1.8rem;
   }
  
.content {
  margin: auto;
}

 .slot-video video {
   height: 90px;
 }

 .username {
    font-size: 12px;
}
.timg {
    top: 69px;
    right: 1px;
    font-size: 9px;
}
 }


.pagination {
  text-align: center;
  margin-top: 20px;
}

.pagination button {
  margin: 5px;
  padding: 8px 12px;
  border: none;
  background: #A60000;
  color: #fff;
  cursor: pointer;
}

.pagination button.active {
  background: #333;
}



  /* Popup box */
  .popup-box {
    background-color: #111;
    border: 1px solid #333;
    border-radius: 6px;
    text-align: center;
    padding: 40px 25px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
  }

  .popup-logo {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
  }

  .popup-logo span {
    padding: 0 6px;
    border-radius: 3px;
  }

  .popup-box h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .popup-box p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .notice-btn {
    background: transparent;
    border: 1px solid #f90;
    color: #f90;
    padding: 6px 12px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .notice-btn:hover {
    background-color: #f90;
    color: #000;
  }

  /* Buttons row */
  .age-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
  }

  .age-buttons button {
    background-color: #111;
    color: #fff;
    border: 1px solid #f90;
    padding: 12px 18px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
  }

  .age-buttons button:hover {
    background-color: #f90;
    color: #000;
  }

  .popup-box small {
    display: block;
    margin-top: 25px;
    color: #aaa;
    font-size: 13px;
  }

  .popup-box small a {
    color: #f90;
    text-decoration: none;
  }

  .popup-box small a:hover {
    text-decoration: underline;
  }

  .footer-popup {
    margin-top: 20px;
    font-size: 12px;
    color: #777;
  }

