@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}


:root {
    /* Brand & Primary Colors */
    --color-primary: #e91e63;       /* Pop Pink */
    --color-primary-dark: #c2185b;  /* Darker hover version */
  
    --color-secondary: #4caf50;     /* Mint Green */
    --color-tertiary: #9c27b0;      /* Bright Purple */
    --color-accent-blue: #03a9f4;   /* Sky Blue */
  
    /* Text Colors */
    --color-text-primary: #212121;  /* Dark Charcoal */
    --color-text-secondary: #616161;/* Slate Gray */
  
    /* Backgrounds */
    --color-bg-white: #ffffff;      /* White Background */
    --color-bg-light: #f5f5f5;      /* Ice Grey Sections */
  
    /* Alerts */
    --color-error: #f44336;         /* Coral Red */
    --color-success: #8bc34a;       /* Lime Green */
  
    /* UI Elements */
    --color-border: #e0e0e0;        /* Neutral border color */
    --color-shadow: rgba(0, 0, 0, 0.1); /* Soft shadow */
  }
  

.sec-cmn-pad{
    padding: 100px 0px;
}

.sec-btm-pad{
    padding-bottom: 100px;
}

ul{
    padding: 0px;
    list-style-type: none;
}

a{
    text-decoration: none !important;
    display: inline-block;
}

p{
    font-size: 15px;
    line-height: 24px;
    color: #7e7e7e;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

h1{
    font-size: 42px;
    line-height: 1.3;
    color: #0B3D91;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

h2{
    font-size: 32px;
    line-height: 1.3;
    color: var(--color-text-primary);
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

h3{
    font-size: 20px;
    line-height: 1.3;
    color: var(--color-text-primary);
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

h4{
  font-size: 16px;
    line-height: 1.3;
    color: var(--color-text-primary);
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.cmn-btn{
    padding: 16px 40px;
    border-radius: 10px;
    color: white;
    background-color: var(--color-accent-blue);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: .5s ease-in-out;
}

.cmn-btn:hover{
    background-color:#0B3D91;
}

.cmn-span{
    background-color: rgba(3, 169, 244,.2);
    color: var(--color-accent-blue);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
}

input{
  width: 100%;
  padding: 6px 0px;
  margin-bottom: 10px;
  padding-left: 25px;
  border-radius: 5px;
  border: 1px solid var(--color-text-secondary);
}

input::placeholder{
  color: #848484;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 13px;
}

textarea{
  width: 100%;
  padding-left: 25px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid var(--color-text-secondary);
}

textarea::placeholder{
  color: #848484;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 13px;

}



/* navbar */

/* Navbar Container */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e91e63;
  }

.nav-links {
  list-style: none;
  margin-bottom: 0px!important;
}

  .nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
  }

  .nav-links a:hover {
    color: var(--color-accent-blue);
  }

  /* Dropdown */
  .dropdown {
    position: relative;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    top: 20px;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 150px;
    z-index: 1000;
  }

  .dropdown-content a {
    display: block;
    padding: 0.6rem 1rem;
    color: #333;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

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

  .hamburger span {
    height: 3px;
    width: 25px;
    background: #333;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
  }

  /* Mobile Menu */
  .mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    padding: 1rem 2rem;
  }

  .mobile-menu a {
    padding: 0.8rem 0;
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }

  .mobile-menu .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    display: none;
  }

  .mobile-menu .dropdown.active .dropdown-content {
    display: block;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .nav-links {
      /*display: none;*/
    }

    .hamburger {
      display: flex;
    }

    .mobile-menu {
      display: none;
    }
  }





  /* banner main div */

  .bnr-sec{
    /* position: relative; */
    background: linear-gradient(to right, rgba(0,0,0,.5), rgba(0,0,0,.5)), url("../image/bnr-bg.jpg");
    background-size: cover;
    background-position:top center;
    background-repeat: no-repeat;
    padding: 200px 0px;
  }

  .bnr-main-div h1{
    color: var(--color-bg-white);
    margin-bottom: 30px;
  }

  .search-box {
    position: relative;
    max-width: 600px;
}

.search-box input[type="text"] {
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-right: none;
  width: 100%;
}

.search-box button{
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 10.5px 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  background-color: #03a9f4;
  border-style: none;
  border-radius: 0px 5px 5px 0px;
  color: white;
  height: 38px;
}

.bnr-icons ul{
  padding-left: 0px;
  display: flex;
  gap: 25px;
}

.bnr-icons ul li{
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease-in-out;
}

.bnr-icons ul li:hover{
  background-color: var(--color-accent-blue);
}

.bnr-icons ul li a i{
  font-size: 20px;
  color: var(--color-accent-blue);
}

.bnr-icons ul li:hover i{
color: white;
}

.app-div a img{
  width: 100px;
  height: 100%;
  margin-bottom: 20px;
}




  /* Explore Threads */

  .section-title{
    color: var(--color-text-primary);
  }

  .thread-card {
    background: #fff;
    padding: 2rem 1.5rem;
    margin: 0 10px;
    border:1px solid #d9d9d9;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
  }
/*   
  .thread-card:hover {
    box-shadow: 0 0px 20px 0px rgba(0,0,0,0.5);
  } */
  
  .icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background-color: var(--color-accent-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
  }
  
  .thread-card h3 {
    font-size: 20px;
    color:var(--color-text-primary);
    margin-bottom: 0.5rem;
  }
  
  .thread-card p {
    font-size: 0.95rem;
    color: #666;
  }
  
  /* Custom Slick Dots */

   /* Change the position of the dots */
.slick-dots {
    bottom: -40px; /* Adjust vertical position */
    text-align: center; /* Align dots in the center */
}
  /* Style the dot buttons */
.slick-dots li button {
    background-color: #ccc; /* Light gray color for inactive dots */
    border-radius: 50%; /* Make the dots circular */
    width: 12px; /* Size of the dot */
    height: 12px; /* Size of the dot */
    margin: 0 5px; /* Space between the dots */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

/* Style the active dot */
.slick-dots li.slick-active button {
    background-color: var(--color-accent-blue); /* Blue color for active dot */
    transform: scale(1.2); /* Slightly enlarge the active dot */
}

/* Optional: Customize the hover effect */
.slick-dots li button:hover {
    background-color: #666; /* Darker gray color on hover */
}



/* Interactive Tools */

.tool-ad-div{
    width: 100%;
    background-color: #d9d9d9;
    height: 100%;
}

.tool-img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}








/* Teen Voices */

.teen-top-area{
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
}

.teen-card img{
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}

.teen-card span{
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--color-text-primary);
}

.teen-input-area button{
  border-style: none;

}






/* Mythbusters */

.mythbusters{max-width:100%;margin:28px auto;padding:0 16px 32px;color:var(--ink)}
  .mythbusters h2{margin:0 0 8px;font-size:1.6rem}
  .mythbusters .intro{margin:0 0 16px;color:#6b7280}

  /* Accordion */
  .accordion{display:grid;gap:12px}
  .acc-card{
    border:1px solid var(--mist);
    border-radius:var(--radius);
    background:var(--paper);
    box-shadow:0 10px 30px rgba(17,24,39,.06);
    overflow:hidden;
  }
  .acc-header{margin:0}
  .acc-trigger{
    appearance:none;border:0;width:100%;text-align:left;cursor:pointer;
    display:grid;grid-template-columns:36px 1fr auto;gap:10px;align-items:center;
    padding:14px 16px;background:linear-gradient(135deg,color-mix(in oklab,var(--teal) 12%,white),white);
    color:inherit;font:inherit;
  }
  .acc-trigger:hover{background:linear-gradient(135deg,color-mix(in oklab,var(--teal) 18%,white),white)}
  .acc-title{
    font-weight:600;
    color: var(--color-text-primary);
    font-size: 18px;
    line-height: 1.3;
    color: var(--color-text-primary);
    font-family: "Poppins", sans-serif;

  }
  .acc-badge{
    font-size:.8rem;background:color-mix(in oklab,var(--lavender) 25%,white);
    color:#4c1d95;border:1px solid color-mix(in oklab,var(--lavender) 40%,white);
    padding:6px 10px;border-radius:999px;white-space:nowrap
  }
  .acc-icon{
    display:inline-grid;place-items:center;width:28px;height:28px;border-radius:8px;
    border:1px solid var(--mist);background:#fff;font-weight:900;color:var(--slate)
  }

  .acc-panel{padding:0 16px;max-height:0;overflow:hidden;transition:max-height .25s ease, padding .25s ease}
  .acc-panel p{margin:12px 0 16px}

  /* Expanded state handled by JS: add .open on .acc-card */
  .acc-card.open .acc-panel{max-height:260px;padding:2px 16px 12px}
  .acc-card.open .acc-trigger .acc-icon{content:"–"}
  .acc-card.open .acc-trigger .acc-icon::before{content:""} /* avoid default content collisions */

  /* CTA */
  .cta-row{display:flex;justify-content:center;margin-top:18px}
  .cta{
    display:inline-block;padding:12px 18px;border-radius:14px;
    background:linear-gradient(135deg,var(--teal),var(--lavender));
    color:#fff;text-decoration:none;font-weight:800;box-shadow:0 10px 25px rgba(20,184,166,.2)
  }
  .cta:hover{filter:brightness(1.05)}
  





/* trending  now */

.trend-card{
  margin: 0px 10px;
}

  .blog-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .trend-card-img img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
  }



  /* footer */

  .ftr-logo-box a img{
    width: 100%;

  }

  .ftr-logo-box p{
    color: white;
    margin-top: 20px;
  }

  .ftr-sec{
    background-color: var(--color-text-primary);
    padding: 60px 0px;
  }

  .ftr-sec h3{
    color: var(--color-bg-white);
  }

  .ftr-list li a{
    line-height: 30px;
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    transition: .3s ease-in-out;
  }

  .ftr-list li a:hover{
    margin-left: 15px;
  }

  .ftr-sec label {
    font-size: 15px;
    color: white;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
  }

  .form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex
;
  justify-content: center;
  align-items: center;
  background-color: white;
  transition: .5s ease-in-out;
  margin-right: 15px;
}

.social-links a:hover{
  background-color: var(--color-accent-blue);
}

.social-links a:hover i{
color: #fff;
}

.social-links a i {
  color:var(--color-accent-blue);
  font-size: 20px;
  transition: .5s ease-in-out;
}

.last-p a{
  color: var(--color-accent-blue); 
  transition: .3s ease-in-out;
}

.last-p a:hover{
  color: #0B3D91;
}





/* testimonials area */

.testi-slider-item{
  margin: 0px 12px;
}

.testimonial-card {
  width: 100%;
  padding: 20px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}


.testimonial-author span {
  font-size: 14px;
  color: #777;
}
.wpcf7 form.invalid .wpcf7-response-output
 {
    background: #fff;
}


.mobmenur-container {
    right: 43px !important;
    top: 40px !important;
}
.mob-menu-header-holder {
        background-color: #fff !important;
    }
.mob-icon-menu:before {
    color: #000 !important;
    font-size: 40px !important;
}
.main-ad-div {
    width: 100%;
    height: 100%;
    background-color: #d9d9d9;
}

/* Popup form styles */
#contactPopup {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  background-color: white;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  border-radius: 10px;
  max-height: 80vh; /* Set a max height */
  overflow-y: auto; /* Enable vertical scrolling */
}

/* For smaller screens, adjust the max-height of the popup */
@media (max-width: 768px) {
  #contactPopup {
      width: 90%; /* Make the popup width smaller on mobile */
  }
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  background-color: transparent;
  border: none;
  color: #333;
  cursor: pointer;
}

/* Form styles */
.popup-form {
  display: flex;
  flex-direction: column;
}

.popup-form input,
textarea {
  margin: 10px 0;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #616161;
  border-radius: 5px;
  height: 70px;
}

.popup-form button {
  background-color: #007BFF;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

/* Map style */
#map {
  height: 300px;
  width: 100%;
  margin-top: 20px;
}

/* Overlay background for popup */
.overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.popup-submit{
    width:100%;
}


/* Trending page css (25/09/2025) */

.trend-ad-div{
  width: 100%;
  background-color: #d9d9d9;
  height: 100%;
}

/* Comment Section */
.comments-area {
    margin-top: 40px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.comments-area h2,
.comments-area h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.comment-list li {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.comment-author .avatar {
    border-radius: 50%;
    margin-right: 10px;
}

.comment-content p {
    margin: 8px 0 0;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 15px;
    transition: border-color 0.3s;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form textarea:focus {
    border-color: #0073e6;
    outline: none;
}

.comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.comment-form .form-submit input[type="submit"] {
    background: #0073e6;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.comment-form .form-submit input[type="submit"]:hover {
    background: #005bb5;
}

/* Blog Details - Post Meta */
.commentauthor {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 15px 0 25px 0;
    padding: 0;
    list-style: none;
    font-size: 15px;
    color: #666;
}

.commentauthor li {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.commentauthor li i {
    font-size: 16px;
    color: #0073e6; /* Accent color */
    vertical-align: middle;
}

/* On hover, add subtle color change */
.commentauthor li:hover {
    color: #333;
}

.commentauthor li:hover i {
    color: #005bb5;
}

/* Explore Threads page css (25/09/2025) */

.threads-card{
  background: #fff;
    padding: 2rem 1.5rem;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.thread-ad-div{
  width: 100%;
  background-color: #d9d9d9;
  height: 100%;
}

/* Trending page css (25/09/2025) */

.trend-ad-div{
  width: 100%;
  background-color: #d9d9d9;
  height: 100%;
}
.blog-article-content img{
    height: 500px;
    object-fit: cover;
}

/* navbar-css (27/09/2025)*/

 /* Navbar */
 .navbar {
  position: sticky;
  top: 0;
  background: #fff;
  padding: 10px 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #660066;
}
.logo span {
  color: #0099cc;
}

.menu-toggle {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: block;
}

/* Sidebar (Mobile) */
.sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: #fff;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  padding: 2rem 1rem;
  z-index: 1002;
}

.sidebar.active {
  right: 0;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  margin-bottom: 0px!important;
}
.nav-links li {
  margin: 15px 0;
}

.nav-links a {
  font-size: 1.1rem;
  display: block;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  transition: .5s ease-in-out;
}

.nav-links a:hover{
  color: var(--color-accent-blue);
}

/* Dropdown */
.dropdown-menu {
  display: none;
  margin-top: 10px;
  padding-left: 15px;
}
.dropdown.open .dropdown-menu {
  display: block;
}
.dropdown-toggle::after {
  content: ' ▼';
  font-size: 0.8rem;
  border-top: none!important;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 1000;
}
.overlay.active {
  display: block;
}

/* Hide desktop nav and show hamburger under 991px */
@media (max-width: 990px) {
.desktop-nav {
  display: none;
}
}

/* Show full nav, hide hamburger and mobile items for larger screens */
@media (min-width: 991px) {
.menu-toggle,
.sidebar,
.overlay,
.mobile-nav {
  display: none !important;
}

.desktop-nav {
  display: flex;
  list-style: none;
}

.desktop-nav .dropdown {
  position: relative;
}

.desktop-nav .dropdown-menu {
  position: absolute;
  top: 70%;
  left: 0;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: none;
  padding: 10px;
}

.desktop-nav .dropdown:hover .dropdown-menu {
  display: block;
}

.desktop-nav li a {
  padding: 8px 12px;
  font-size: 1rem;
}
}




.top-navbar{
  background-color:var(--color-text-primary);
  padding: 10px 0px;
}

.top-bar a{
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.top-link-div{
  display: flex;
  gap: 25px;
}

.top-bar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width:600px) {
  .top-bar{
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .top-link-div{
   margin-bottom: 20px;
  }
}


.xoo-el-pop-sc {
    color: #fff !important;
}

#custom-alphabet-filter {
    font-family: sans-serif;
}

.alphabet-letters {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.alphabet-letter {
    cursor: pointer;
    padding: 5px 10px;
    margin: 2px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.2s;
    background: #fff;
}
.thread-cards h3 {
    font-size: 12px;
}
.thread-cards {
    border:none !important;
}
.alphabet-letter.has-posts:hover {
    background-color: #03a9f4;
    color: #fff;
}
.alphabet-letter.active {
    background-color: #03a9f4;
    color: #fff;
}
.alphabet-letter.no-posts {
    opacity: 0.3;
    cursor: not-allowed;
}

.letter-section {
    display: none;
    margin-bottom: 20px;
}

.letter-section ul {
    list-style: none;
    padding-left: 0;
}

.letter-section li {
    margin: 5px 0;
}
.letter-section ul li a{
    color:#03a9f4;
}

.trending-pagination {
    text-align: center;
    margin-top: 30px;
}

.trending-pagination ul {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 8px;
}

.trending-pagination ul li {
    display: inline-block;
}

.trending-pagination ul li a,
.trending-pagination ul li span {
    display: block;
    padding: 8px 14px;
    color: #03a9f4;
    border: 1px solid #03a9f4;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.trending-pagination ul li a:hover {
    background-color: #03a9f4;
    color: #fff;
}

.trending-pagination ul li .current {
    background-color: #03a9f4;
    color: #fff;
    border-color: #03a9f4;
}
.slick-track
{
    display: flex !important;
}
.slick-slide
{
    height: inherit !important;
}
.inner-pages-table table,
.inner-pages-table table th,
.inner-pages-table table td {
  border: 1px solid #f5e9e9bf;
  border-collapse: collapse;
}

.inner-pages-table table {
  width: 100%;
  border-collapse: collapse;
}

.inner-pages-table table th,
.inner-pages-table table td {
  padding: 8px;
  text-align: left;
}

.woocommerce form .form-row label
 {
    display: -webkit-inline-box !important;
}




.myVideoSlider {
  width: 90%;
  margin: 40px auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.swiper-slide img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  height: 250px;
  object-fit: cover;
}
.swiper-slide h4 {
  font-size: 15px;
  text-align: center;
  color: #000;
}


.swiper-slide img:hover {
  transform: scale(1.05);
}

.swiper-slide i{
    font-size: 35px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}



/* video listing css */


.slide {
  width: 100%;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform .3s;
}

.slide:hover img {
  transform: scale(1.05);
}

/* Popup Modal */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-content {
  position: relative;
  width: 80%;
  max-width: 900px;
}

.popup-content iframe {
  width: 100%;
  height: 500px;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: -35px;
  right: 0;
  font-size: 35px;
  color: white;
  cursor: pointer;
}

.slide i{
    font-size: 35px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}



.gallery-img-area img{
  width: 100%;
}



