/* Basic resets */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Roboto Slab', sans-serif; background:#F9F9F9; overflow-x: hidden; }
section {overflow-x: hidden;scroll-margin-top: 100px !important;scroll-behavior: smooth; }

:root {
  --yellow: #E0BF02;
  --light-yellow: #FFE540;
  --gray: #717171;

  --black-dark: #010203;
  --text-black: #141414;

  --pink: #D10047;
  --soil: #913225;
  --blue: #1f40fd;
}

.container{
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

ul { list-style:none; }

h2{
  font-size: 2rem;
  color: var(--black-dark);
}
p{
  font-size: 16px;
  color: var(--text-black);
  line-height: 1.6em;
}

button {
  background-color: white;
  border: 1px solid var(--soil);
  color: var(--soil);
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 20px;
  transition: background-color 0.2s ease;
}
button:hover{
  scale: 1.04;
}

.cta-button {
    background-color: var(--soil);
    border: 1px solid var(--soil);
    color:white;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 20px;
    transition: background-color 0.2s ease;
    margin:auto;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(184, 69, 11, 0.3);
}
        

.highlight {
  color: var(--blue);
}

[data-aos] {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}



/* ========== Desktop Header ========== */






/* ========== Mobile Header & Nav ========== */
.mobile-header {
  display:none; /* hidden by default; shown below 992px */
  background:#fff; padding:10px 20px; border-bottom:1px solid #ccc;
  align-items:center; justify-content:space-between;
}
/* .mobile-header .logo {
  font-weight:bold; font-size:1.2rem; color:#000;
} */

.logo-image {
    height:50px;
    object-fit:contain;
}

.menu-toggle {
  font-size:1.5rem; cursor:pointer;
}

/* Mobile side menu overlay */
.mobile-menu-overlay {
  display:none; position:fixed; top:0; left:0; width:100%; height:100%;
  background:rgba(0,0,0,0.5); z-index:9999;
}
.mobile-menu-overlay.open { display:block; }
.mobile-menu-content {
  position:absolute; top:0; right:0; width:80%; max-width:300px; height:100%;
  background:#fff; padding:20px; box-shadow:-2px 0 8px rgba(0,0,0,0.2);
  display:flex; flex-direction:column; overflow-y:auto;
  z-index: 99;
}
.mobile-menu-header {
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:10px;
}
.close-btn {
  font-size:1.5rem; cursor:pointer;
}

/* Promo banner on mobile */
.promo-banner {
  background:#e9e9e9; padding:10px; margin-bottom:15px; text-align:center;
  border-radius:4px; font-size:0.9rem; color:#000;
}
.promo-banner img {
  max-width:100%; height:auto; margin-bottom:8px; border-radius:4px;
}

.mobile-menu-list > li {
  margin-bottom:10px; /* space between top-level items */
}
.mobile-menu-list li a {
  display:block; padding:4px 0; font-size: 14px;
}
.mobile-subtitle {
  font-weight:bold; margin-top:10px;
}

.mobile-auth {
  margin-top:20px; display:flex; gap:10px;
}
.mobile-auth a {
  /* background:#007bff; color:#fff; padding:6px 12px; border-radius:4px; text-align:center; */
  color:var(--pink);  padding:7px 12px; text-decoration: none; border: 1px dotted var(--pink); font-size: 14px;
  cursor: pointer;
}

/* ========== Responsive Breakpoints ========== */
@media (max-width:992px) {
  .desktop-header { display:none; }
  .mobile-header { display:flex; }
}
@media (min-width:993px) {
  .desktop-header { display:flex; }
  .mobile-header { display:none; }
}





/* login - pop-up  */

.pop-up-login-trigger {
  font-weight: bold;
  padding: 20px;
}

.pop-up-login-trigger a {
  color: #0066cc;
  cursor: pointer;
  text-decoration: none;
  margin: 0 5px;
}

.pop-up-modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}

.pop-up-modal {
  background: white;
  width: 400px;
  max-width: 90%;
  margin: 80px auto;
  padding: 40px 30px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.pop-up-modal h2 {
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
}

.pop-up-modal .pop-up-logo {
  display: flex;
  justify-content: center;
}


.pop-up-modal input[type="email"],
.pop-up-modal input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.pop-up-modal .pop-up-forgot-password {
  text-align: right;
  font-size: 13px;
  margin-top: 4px;
}

.pop-up-modal .pop-up-forgot-password a {
  color: #0066cc;
  text-decoration: none;
}

.pop-up-modal button {
  width: 100%;
  background-color: #0073e6;
  color: white;
  font-size: 16px;
  padding: 12px;
  margin-top: 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.pop-up-modal .pop-up-signup {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
}

.pop-up-modal .pop-up-signup a {
  color: #0066cc;
  text-decoration: none;
}

.pop-up-modal .pop-up-close {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 22px;
  color: #999;
  cursor: pointer;
}













/* ========== HERO section ==========  */

#scrollToTopBtn{
      bottom: 80px !important; 
}

/* Hero Section */
.hero-section {
position: relative;
width: 100%;
height: 100vh;
min-height: 650px;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
color: white;
overflow: hidden;
}

/* Background Video */
.hero-video {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
height: 100%;
object-fit: cover;
}

/* Overlay */
.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
}

/* Text Content */
.hero-content {
position: relative;
z-index: 2;
max-width: 1200px;
padding: 20px;
}

h1 {
font-size: 3.5rem;
margin-bottom: 15px;
}

@media (max-width:700px){
  h1 {
    font-size: 2.1rem;
  }
}

.hero-content p {
font-size: 1.5rem;
margin-bottom: 15px;
font-style: italic;
color: white;
}

.hero-content p strong {
font-size: 2.5rem;
margin: 0 5px;
animation: blink 0.3s infinite alternate;
}
@keyframes blink {
0% { color: #fff; }
100% { color: var(--light-yellow); }
}


.hero-content .highlight {
color: var(--yellow);
display: inline-block;
}

/* Floating Numbers */
.number {
position: absolute;
font-size: 1rem;
font-weight: bold;
color: white;
opacity: 1;
transition: transform 1s ease-out, opacity 1s ease-in;
}

  
  
  
/* Search Box Styling */
.search-box-container {
  position: relative;
  max-width: 600px;
  margin: 80px auto 0;
  display: flex;
  align-items: center;
  z-index: 1;
  gap:10px;
  width: 100%;
}

@media (max-width:600px) {
.search-box-container {
flex-direction: column;
margin: 30px 5px 0;
}
}

.search-box-container-inner{
  background: white;
  display: flex;
  align-items: center;
  border-radius: 50px;
  padding:5px;
  box-shadow: 0 4px 8px #3337;
  transition: all 0.3s ease;
}

.search-box-container-inner:hover{
  scale: 1.03;
}

/* Sticky Effect */
.search-box-container.sticky {
  position: fixed;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%) !important;
  animation: slideUp 0.5s forwards;
  margin: 0;
  z-index: 99;
}

@keyframes slideUp {
  from { bottom: -80px; opacity: 0; }
  to { bottom: 20px; opacity: 1; }
}

/* Tab Buttons */
.search-tab {
  padding: 8px 15px;
  border: none;
  background: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 30px;
  color: var(--text-black);
}

.search-tab.active {
 background: var(--pink);
 color: white;
}

/* Dropdown */
.search-dropdown-container {
  position: relative;
}

.search-dropdown-toggle {
  border: none;
  background: none;
  font-size: 16px;
  cursor: pointer;
  color: var(--text-black);
  display: flex;
  align-items: center;
}
.search-dropdown-toggle i {
  font-size: 10px;     
  /* position: relative;  */
  /* top: -3px; */
}
.search-box-container-inner i {
  padding: 0 10px;
  color: var(--blue);
}

.search-dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  color: var(--black-dark);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  z-index: 1000;

  max-height: 160px;
  overflow-y: auto;
  scrollbar-width: none;  
}

.search-dropdown-menu::-webkit-scrollbar {
  display: none;
}

.search-dropdown-menu.show {
  display: block;
}

.search-dropdown-menu li {
  padding: 5px 15px;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 14px;
}

.search-dropdown-menu li:hover {
  background: #f0f0f0;
}

/* Search Input */
.search-input-box {
  flex: 1;
  border: none;
  outline: none;
  width: auto;
  text-transform: uppercase;
  color: var(--text-black);
  font-family: 'Roboto Slab';
}



/* dulicate  */

.tollfree_areacode{
display:none;
}
.search-icon-btn{
cursor: pointer;
}



.search-box-container.sticky{
    /* max-width:100%; */
    bottom: 0 !important;
    backdrop-filter: brightness(20%);
    padding: 20px;
    border-radius: 25px 25px 0 0 !important;
    width: fit-content;

}
.search-input-box{
    font-size: 18px;
}

.search-box-container-main{
    max-width:650px;
    display:flex;
    gap:10px;
    justify-content: center;
    align-items: center;
    margin:auto;
    padding:30px auto;
}

@media (max-width:700px){
    .search-box-container-main{
        flex-direction:column;
    }
}







    /* Add these styles for scrollable dropdown */
.search-dropdown-menu {
    max-height: 300px; /* Adjust height as needed */
    overflow-y: auto;
    scrollbar-width: thin; /* For Firefox */
}

/* Style scrollbar for Webkit browsers (Chrome, Safari) */
.search-dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.search-dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.search-dropdown-menu::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.search-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #555;
}









/* ===================== second section =================== */


/* Container Styling */
#vanity-number-section {
  padding: 60px 5px 70px;
  color: var(--text-black);
  line-height: 1.3;
}

/* Main Heading */
#vanity-number-section h2 {
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}


/* Subheading */
#vanity-number-section .subheading {
  font-size: 1rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: #666;
}


/* Responsive Grid */
#vanity-number-section .grid {
  margin-top:30px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* Card Container */
#vanity-number-section .card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Location Text */
#vanity-number-section .card .location {
  color: var(--soil); /* a greenish color similar to your screenshot */
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

/* Phone Number */
#vanity-number-section .card .phone-number {
  font-size: 1.2rem;
  margin: 8px 0;
}

/* Price */
#vanity-number-section .card .price {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 15px;
}

/* Action Buttons Container */
#vanity-number-section .card .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

/* "View More" as a link */
#vanity-number-section .card .view-more {
  color: var(--blue);
  text-decoration: none;
  padding: 8px 0px;
  font-size: 10px;
  font-weight: 600;
  transition: color 0.2s ease;
}
#vanity-number-section .card .view-more:hover {
  color: var(--blue);
}

/* Orange Buttons */
/* #vanity-number-section .card  */
.offer-button{
  background-color: white;
  color: var(--soil);
  border: 1px solid var(--soil);
  padding: 8px 14px;
  border-radius: 25px;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: inline-block;

}

/* #vanity-number-section .card  */
.cart-button {
  background-color: var(--soil);
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 25px;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: inline-block;
}





 /* =====================  dubble tab ==================== */

  #phone-number-tabs {
  margin: 0 auto;
  padding: 60px 5px;
  color: var(--text-black);
  background-color: white;
}
#phone-number-tabs h2{text-align: center; text-wrap: balance; margin: auto; max-width: 700px;}
#phone-number-tabs .phone-number-tab-btn{text-align: center; margin-top: 50px;}

/******************************************
* MAIN TABS (By Industry, By Pattern, By State)
******************************************/
.main-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--soil);
  border-radius: 25px;
  width: fit-content;
  margin: 50px auto 35px auto;
}
.main-tabs li {
  padding: 12px 20px;
  background-color: #fff;
  color: var(--soil);
  font-size: 15px;
  border-right: 1px solid var(--soil);
  transition: background 0.3s;
}
.main-tabs li:first-child {
  border-radius: 25px 0 0 25px;
}
.main-tabs li:last-child {
  border-radius: 0 25px 25px 0;
  border-right: none; /* remove last border */
}
.main-tabs li:hover {
  background: linear-gradient(to right, #D1004711, #91322511);
}
/* Active main tab */
.main-tabs li.active-tab {
  background: linear-gradient(to right, var(--pink), var(--soil) );
  color: #fff;
  border-right: 1px solid #5b86e5;
}
.main-tabs li.active-tab:last-child {
  border-right: none;
}

/******************************************
* MAIN TAB CONTENT & HEADER
******************************************/
.main-tab-content {
  display: none;
  margin-bottom: 30px;
}
.main-tab-content.active {
  display: block;
}
.main-tab-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0 30px;
}
.main-tab-header p {
  margin: 0;
  font-size: 14px;
}
.main-tab-header a {
  text-decoration: none;
  font-size: 14px;
  color: var(--blue);
}

.main-tab-header a i {
  font-size: 12px;
}

/******************************************
* SUB TABS (e.g. Legal, Accident, etc.)
******************************************/
.sub-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 40px;
  justify-content: flex-start;
  align-items: center;
}
.sub-tabs li {
  background-color: #fff;
  border: 1px solid #D1004733;
  border-radius: 8px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s, box-shadow 0.3s;
  flex: 1;
  max-width: 300px;
}
.sub-tabs li:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.sub-tabs li img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px 0 0 4px;
}
.sub-tabs li span {
  font-size: 14px;
  font-weight: 500;
  padding-left: 20px;
}
.sub-tabs li.active-sub-tab {
  background-color: #fff4f4;
  /* box-shadow: inset 0 2px 8px rgba(0,0,0,0.1); */
}

/******************************************
* SUB TAB CONTENT & NUMBER CARDS
******************************************/
.sub-tab-content {
  display: none;
}
.sub-tab-content.active {
  display: block;
}

/* TWO-COLUMN GRID FOR DESKTOP */
.numbers-grid {
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 10px;
}

.number-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  border-radius: 6px;
  padding: 10px 15px;
  box-shadow: 0 0 3px #982D2944;
}
.number-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.location {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
}
.location i{
  font-size: 12px;
  color: var(--pink);
  margin-right: 10px;
}

.phone {
  margin: 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.number-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}
.price {
  font-size: 12px;
  font-weight: 600;
  color: var(--pink);
  margin: 0;
}













/* ======================= blog ==============================  */

/* Container Styles */
#customer-stories-section {
  padding: 40px 20px;
  background-color: #fff;
  color: var(--black-dark);
}
/* Main Heading */
#customer-stories-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* Grid Container: 2 columns on desktop */
#customer-stories-section .grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Left Column (Main Blog) */
#customer-stories-section .left-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

#customer-stories-section img{
  filter: brightness(0.6);
}

#customer-stories-section .left-column img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}


/* Right Column: 2×2 grid for smaller blog items */
#customer-stories-section .right-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

#customer-stories-section .right-column .blog-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}
#customer-stories-section  h3 {
  font-size: 16px;
  margin: 0;
  position: absolute;
  bottom: 0;
  background-color: #fff8;
  min-height: 60px;
  width: 100%;
  padding: 20px;
  color: var(--text-black);
}

#customer-stories-section  h3 a {
 color: var(--text-black);
 text-decoration: none;
}


/* Read More Button */
#customer-stories-section .read-more-btn {
  text-align: center;
  margin-top: 50px;
}


/* Responsive for smaller screens */
@media (max-width: 768px) {
  #customer-stories-section .grid-container {
      grid-template-columns: 1fr; /* Stack columns */
  }
  #customer-stories-section .right-column {
      grid-template-columns: 1fr; /* Single column for smaller blog cards */
  }
}






/* =========================== benifit ===============================  */

/* Container styling */
#industry-leading-benefits {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

/* Main heading */
#industry-leading-benefits h2 {
  margin-bottom: 30px;
  color: var(--black-dark);
}

/* Layout: two columns (image + benefits) */
#industry-leading-benefits .layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

/* Image column */
#industry-leading-benefits .image-col {
  flex: 1;
  text-align: right;
  padding: 0px;
}
#industry-leading-benefits .image-col img {
  width: 100%;
  height: auto;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

/* Benefits column */
#industry-leading-benefits .benefits-col {
  flex: 1;
  padding: 10px;
  text-align: left;
}

/* Benefits list */
#industry-leading-benefits .benefits-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#industry-leading-benefits .benefits-col li {
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-left: 30px; /* space for check icon */
  color: var(--text-black);
}
/* Green check icon before each benefit */
#industry-leading-benefits .benefits-col li::before {
  content: "✔";
  color: var(--yellow);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  #industry-leading-benefits .layout {
      flex-direction: column;
  }
  #industry-leading-benefits .benefits-col {
      text-align: center;
  }
  #industry-leading-benefits .benefits-col ul {
      display: inline-block;
      text-align: left; /* keep bullet alignment */
  }
}







/* ========================== Support CTA ============================  */

/* Container */
#support-section {
  padding: 10px 15px 0;
  color: var(--text-black);
  background: radial-gradient(circle, #ddd 0%, #eee 100%);
}

/* Flex layout for image + content */
#support-section .layout {
  display: flex;
  flex-wrap: wrap; /* stack on small screens */
  align-items: center;
  justify-content: space-between;
}

/* Image column */
#support-section .image-col {
  flex: 1 1 300px;
  text-align: center;
  overflow-y: hidden;
}
#support-section .image-col img {
  max-width: 100%;
  height: auto;
  position: relative;
  bottom: -10px;
}

@media (max-width:900px){
  #support-section .image-col{display: none;}
}

/* Content column */
#support-section .content-col {
  flex: 1 1 400px;
  padding: 40px 0;
}

/* Heading & Subheading */
#support-section .content-col h2 {
  margin-bottom: 20px;
  color: var(--black-dark);
}
#support-section .content-col p.subheading {
  color: var(--text-black);
  margin-bottom: 40px;
}

/* Contact buttons container */
#support-section .contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Contact button style */
#support-section .contact-btn {
  display: inline-block;
  text-decoration: none;
  background: var(--soil);
  color: white;
  padding: 15px 20px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  min-width: 150px;
}

/* Info line (email or phone number) */
#support-section .contact-btn span {
  display: block;
  font-size: 14px;
  color: white;
  margin-top: 5px;
}






















/* ===================== Review ==================== */

    /* Main Slider Container */
    #testimonial-slider {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  #testimonial-slider h2 {
    margin-bottom:15px;
  }

  .review-section {
      max-width: 90%;
      margin: auto;
      padding: 50px 0;
  }

  /* Review Item Styling */
  .review-item {
      background: #f9f9f9;
      padding: 40px 20px 20px;
      border-radius: 10px;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
      position: relative;
      text-align: left;
      margin: 10px;
  }

  /* Quote Icon */
  .review-item::before {
      content: "\f10d";
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      position: absolute;
      top: 10px;
      left: 15px;
      font-size: 24px;
      color: var(--pink);
  }

  .review-item:hover{
   scale: 1.05;
  }

  /* Reviewer Info Section */
  .reviewer {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-top: 5px;
  }

  .reviewer img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
  }

  .reviewer .fa-user-circle {
      font-size: 50px;
      color: #aaa;
  }

  .reviewer-info {
      text-align: left;
  }

  .reviewer-info b {
      font-size: 12px;
      color: var(--pink);
      margin: 0;
      font-weight: bold;
  }

  .reviewer-info p {
      font-size: 12px;
      color: var(--text-black);
      margin: 2px 0 5px;
  }

  /* Star Rating */
  .rating {
      color: #ffcc00;
      font-size: 14px;
  }

  /* Slick Dots */
  .slick-dots {
      bottom: -30px;
  }

  /* Responsive Styles */
  @media (max-width: 768px) {
      .review-section {
          max-width: 95%;
      }
  }



/* ============================ Footer ================  */

/* Footer Container */
#expert-footer {
background-color: var(--gray);
color:var(--text-black);
padding: 0px 20px 20px 20px;
}

/* 1) Top Footer: Logo + Social */
#expert-footer #top-footer {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
margin-bottom: 30px;
border-top: 1px solid #DDD;
border-bottom: 1PX SOLID #DDD;
padding: 20px 0;
}
#expert-footer #top-footer .footer-logo img {
max-height: 40px;
}
#expert-footer #top-footer .footer-logo a{
color: var(--light-yellow);
text-decoration: none;
font-size: 1.5rem;
}
#expert-footer #top-footer .social-links {
display: flex;
align-items: center;
gap: 10px;
color: white;
}
#expert-footer #top-footer .social-links I {
color: var(--light-yellow);
font-size: 1rem;
transition: color 0.2s;
}
#expert-footer #top-footer .social-links I:hover {
 scale: 1.1;
}

/* 2) Middle Footer: Columns of links */
#expert-footer #middle-footer {
display: flex;
flex-wrap: wrap;
gap: 30px; /* space between columns */
margin-bottom: 30px;
}
#expert-footer #middle-footer .footer-column {
flex: 1 1 150px;
min-width: 150px;
}
#expert-footer #middle-footer .footer-column b {
font-weight: 600;
margin-bottom: 10px;
display: block;
color: white;
}
#expert-footer #middle-footer .footer-column ul {
list-style: none;
padding: 0;
margin: 0;
}
#expert-footer #middle-footer .footer-column li {
margin-bottom: 6px;
}
#expert-footer #middle-footer .footer-column a {
text-decoration: none;
color: #f0f0f0;
transition: color 0.2s;
}
#expert-footer #middle-footer .footer-column li:hover { scale: 1.05;}


/* 3) Bottom Footer: Payment + Copyright */
#expert-footer #bottom-footer {
border-top: 1px solid #ddd;
padding-top: 20px;
text-align: center;
padding-bottom: 120px;
}


.payment-methods {
display: flex;
gap: 15px;
font-size: 2rem; /* Adjust icon size */
justify-content: center;
color: var(--light-yellow);
margin-bottom: 15px;
}

#expert-footer #bottom-footer .footer-disclaimer {
font-size: 14px;
color: white;
}
#expert-footer #bottom-footer .footer-disclaimer a{color: white;}

#top-footer .footer-logo{
    background: #fff;
    padding: 8px 8px 4px;
    border-radius: 5px;

}

/* Responsive Layout */
@media (max-width: 768px) {
#expert-footer {
    padding: 20px;
}
#expert-footer #top-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
#expert-footer #middle-footer {
    gap: 20px;
}
}