/* Global styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
}

a {
  color: #03a9f4;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header Styles */
/* Header Base */
.site-header {
  background-color: #000;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo-wrap img {
  height: 50px;
}

nav.desktop-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav.desktop-nav ul li a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

nav.desktop-nav ul li a:hover,
nav.desktop-nav ul li a.active-page {
  background-color: #ffc107;
  color: #000;
}

/* Search Box Popup */
.search-box-container {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background: #fff;
  z-index: 9999;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  display: none;
  flex-direction: column;
}

.search-box-container input {
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.close-search {
  position: absolute;
  right: 16px;
  top: 14px;
  font-size: 26px;
  font-weight: bold;
  color: #888;
  cursor: pointer;
}

/* Mobile + Desktop Icons */
.mobile-icons-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-search-trigger img {
  width: 22px;
  height: 22px;
  cursor: pointer;
}



/* Mobile Drawer Menu */
.mobile-nav {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 60px;
}

.mobile-nav a {
  padding: 14px 20px;
  font-size: 18px;
  color: #fff;
  display: block;
  text-decoration: none;
}

.mobile-nav .closebtn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

@media screen and (min-width: 1024px) {
    .mobile-menu-icon {
  display: none!important;
}
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  nav.desktop-nav {
    display: none;
  }
}
.mobile-menu-icon {
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  display: block;
}

/* Section spacing */
.section-mid-py {
  padding: 30px 0;
}

.section-mid-py p,
.section-mid-py h1,
.section-mid-py h2,
.section-mid-py h3 {
  margin-bottom: 0px;
}

/* Footer Styles */
footer {
  background-color: #000;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  color: #999;
}

footer a {
  color: #03a9f4;
  margin: 0 6px;
}

footer a:hover {
  color: #ffc107;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  nav.desktop-nav ul {
    flex-direction: column;
    gap: 12px;
  }

  header {
    padding: 10px 15px;
  }
}




/* header end  */
/* Content patna ka css hai ye   */
.section-big-py {
  max-width: 1200px;      /* Box width */
  margin: 40px auto;     /* Center horizontally */
  padding: 0 20px;
  color: white;
}

.section-big-py h1.heading-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-big-py p.heading-label-p {
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/*or add kr raha hu*/

.section-content-box {
  background-color: #07356f;
  color: white;
  padding: 40px 20px;
}

.content-container {
  max-width: 900px;
  margin: 0 auto;
}

.section-content-box h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-content-box p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.section-image-box {
  padding: 40px 0;
  text-align: center;
  background-color: #000;
}

.image-container img {
  max-width: 90%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.7);
}


/* Content patna ka css hai ye  end */






.profile-container {
  max-width: 1200px;   /* limits width on large screens */
  margin: 0 auto;
  padding: 0 16px;
}

.grid.previous-girl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  /* fixed 4 columns */
  gap: 20px;
}


.card-col {
  background: #0f0f0f;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.img-wrap {
  height: 300px;
  position: relative;
  overflow: hidden;
}
.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.verified-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #00c853;
  color: white;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  z-index: 2;
}
.details-card-box {
  background-color: #02336a;
  padding: 8px;
  text-align: center;
}
.girl-name {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin: 5px 0 2px;
}
.girl-city-age {
  font-size: 14px;
  color: #ff4081;
  margin: 0 0 10px;
}

.girl-city-age a {
  color: #ff4081;
  text-decoration: none;
}

.girl-city-age a:hover {
  text-decoration: underline;
}

.girl-city-age span {
  color: #ffc107;
}

.star-rating-inline {
  margin: 4px 0 10px; /* Reduced vertical margin */
}
.star-rating-inline span {
  font-size: 18px;
  color: #ffc107;
  margin: 0 1px;
}
.contact-number-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.callnow, .whatapp {
  padding: 6px 14px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
  color: #fff;
}
.callnow { background: #d32f2f; }
.callnow:hover { background: #a30000; }
.whatapp { background: #2e7d32; }
.whatapp:hover { background: #1b5e20; }



  /* Blog Cards CSS */
  
  
  
  body {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

#blog-section {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: auto;
}

#blog-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.blog-card {
  background: #fff;
  color: #333;
  width: 100%;
  max-width: 330px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

.blog-card img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 1rem;
  flex-grow: 1;
}

.blog-category {
  font-size: 14px;
  color: #999;
  margin: 0 0 8px;
}

.blog-title {
  font-size: 18px;
  margin: 0 0 10px;
}

.blog-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 0 1rem 1rem;
}

.blog-buttons a {
  padding: 0.6rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  font-size: 14px;
  text-align: center;
  flex: 1;
}

.read-more-btn {
  background: #415ef0;
}

.whatsapp-btn {
  background: #25D366;
}

#view-more-container {
  text-align: center;
  margin-top: 30px;
}

#view-more-container a {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #415ef0, #1e90ff);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

#view-more-container a:hover {
  background: linear-gradient(135deg, #1e90ff, #415ef0);
}

@media(max-width: 768px) {
  #blog-container {
    flex-direction: column;
    align-items: center;
  }

  .blog-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .blog-buttons a {
    width: 100%;
  }
}


/* patna content ka full text */

.section-big-py {
  background-color: #072b4e; /* Dark navy blue */
  color: white;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  border-radius: 8px;
}

.content-container {
  padding: 20px;
  line-height: 1.8;
}

.section-big-py h1,
.section-big-py h2 {
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  margin-bottom: 15px;
  text-align: left;
}

.section-big-py h1 {
  font-size: 28px;
  border-bottom: 2px solid #0c6aad;
  padding-bottom: 8px;
}

.section-big-py h2 {
  font-size: 22px;
  margin-top: 30px;
  color: #f0f8ff;
  border-left: 4px solid #0c6aad;
  padding-left: 10px;
}

.section-big-py p {
  color: #e0e0e0;
  margin-bottom: 18px;
  text-align: justify;
  font-size: 16px;
}

/* Emphasized keywords or phrases */
.section-big-py strong,
.section-big-py b {
  color: #ffc107; /* Highlight important phrases */
  font-weight: bold;
}

/* Optional: highlight inline code-like labels */
.section-big-py mark {
  background: #ffeb3b;
  color: #000;
  padding: 2px 6px;
  border-radius: 3px;
}

/* Tag highlight inline code-like labels */
.seo-tag-section {
  background-color: #0a0a0a;
  padding: 40px 20px;
  color: white;
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 10px;
}

.seo-tag-heading {
  font-size: 24px;
  margin-bottom: 20px;
  border-left: 4px solid #00bcd4;
  padding-left: 10px;
}

.seo-tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-tag {
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 14px;
  color: #111;
  background-color: #ddd;
  font-weight: 500;
  display: inline-block;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}
.seo-tag:hover {
  transform: scale(1.05);
}

/* Color Themes */
.seo-tag.peach { background: #ffb8b8; }
.seo-tag.sky { background: #9dd3f5; }
.seo-tag.green { background: #b4ecb4; }
.seo-tag.purple { background: #b3a4f5; }
.seo-tag.violet { background: #948fc0; color: #fff; }
.seo-tag.blue { background: #8dcfff; }
.seo-tag.pink { background: #f8a8b8; }
.seo-tag.lavender { background: #c9b7f5; }


/* location ka css code  */ 

.service-locations-box {
  background-color: #003366;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 10px;
  color: white;
}

.service-locations-box h2 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
}

.location-tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.location-tag-container .tag {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Color Variants */
.tag.orange { background: #ff5722; }
.tag.green { background: #00e676; }
.tag.blue { background: #2979ff; }
.tag.pink { background: #ff4081; }

.location-tag-container .tag:hover {
  transform: scale(1.05);
}


/* Toggle switch button style */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #666;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:checked + .slider:before {
  transform: translateX(24px);
}

/* Light & Dark themes */


body.dark-mode {
  background-color: #000000;
  color: #fff;
}

body.dark-mode .section-big-py,
body.dark-mode .seo-tag-section,
body.dark-mode .service-locations-box {
  background-color: #072b4e;
  color: #fff;
}

/* price section  */

.pricing-section {
  background-color: #003366;
  color: white;
  padding: 40px 20px;
  border-radius: 10px;
  max-width: 1200px;
  margin: 50px auto;
  text-align: center;
}

.pricing-section .section-title {
  color: #b2ff59;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.pricing-section p {
  color: #eee;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  color: white;
}

.pricing-table thead th {
  background: red;
  padding: 12px;
  font-weight: bold;
  font-size: 16px;
}

.pricing-table tbody td {
  padding: 14px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.whatsapp-btn {
  display: inline-block;
  background-color: #a020f0;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #8000c2;
}

/* serach box on header   */

/* Search Toggle Icon */
.header-search-trigger {
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
}

/* Search Box Popup */
.search-box-container {
  position: fixed; /* fixed so it stays visible */
  top: 80px;       /* align below navbar */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background: #f9f9f9;
  z-index: 9999;
  padding: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  border-radius: 10px;
  display: none;
}

/* Input Styling */
.search-box-container input {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
}

/* Close Button */
.close-search {
  position: absolute;
  right: 12px;
  top: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #444;
  cursor: pointer;
}


.city-search-section {
  background: #ffcc00; /* Yellow background */
  padding: 40px 20px;
  margin-bottom: 30px;
}

.city-search-box {
  display: flex;
  justify-content: center;
  max-width: 700px;
  margin: auto;
  background: #f6f6ff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.city-search-box select {
  flex: 1;
  padding: 14px 20px;
  font-size: 18px;
  border: none;
  outline: none;
  appearance: none;
  background-color: transparent;
}

.city-search-box button {
  background: navy;
  color: white;
  border: none;
  padding: 0 25px;
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s ease;
}

.city-search-box button:hover {
  background: #000066;
}

@media (max-width: 576px) {
  .city-search-box {
    flex-direction: column;
  }

  .city-search-box select,
  .city-search-box button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }

  .city-search-box button {
    border-top: 1px solid #ddd;
  }
}

/* Rate Chart Section */
.rate-chart-section {
  background-color: #000000;
  color: white;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.rate-chart-section h3 {
  font-size: 20px;
  text-align: center;
  color: #fff;
  margin: 30px 0 15px;
  line-height: 1.4;
}

.rate-chart-section h3 small {
  display: block;
  font-size: 14px;
  color: #ffc107;
  margin-top: 5px;
}

.responsive-table {
  max-width: 1100px;
  margin: 0 auto 30px;
  background-color: #002b4a;
  border-radius: 8px;
  overflow: hidden;
}

.responsive-table table {
  width: 100%;
  border-collapse: collapse;
  color: white;
}

.responsive-table thead {
  background-color: #ffc107;
  color: #000;
}

.responsive-table thead th {
  padding: 12px;
  text-align: left;
  font-size: 16px;
}

.responsive-table tbody td {
  padding: 14px 12px;
  border-bottom: 1px solid #004c7c;
  font-size: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .responsive-table table,
  .responsive-table thead,
  .responsive-table tbody,
  .responsive-table th,
  .responsive-table td,
  .responsive-table tr {
    display: block;
    width: 100%;
  }

  .responsive-table thead {
    display: none;
  }

  .responsive-table tbody tr {
    background: #002b4a;
    margin-bottom: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    padding: 10px;
  }

  .responsive-table tbody td {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #444;
    font-size: 14px;
  }

  .responsive-table tbody td::before {
    content: attr(data-label);
    font-weight: bold;
    flex-basis: 50%;
    color: #ffc107;
  }

  .responsive-table tbody td:last-child {
    border-bottom: none;
  }
}

.ex-content-section {
  background: #0a0a0a;
  color: #f5f5f5;
  padding: 30px 15px;
  font-family: 'Arial', sans-serif;
}

.ex-content-section .ex-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 15px;
}

.ex-content-section h2 {
  font-size: 25px;
  color: #ffc107;
  margin-bottom: 15px;
}

.ex-content-section p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #ddd;
}

@media screen and (max-width: 768px) {
  .ex-content-section {
    padding: 25px 10px;
  }
  .ex-content-section h2 {
    font-size: 18px;
  }
  .ex-content-section p {
    font-size: 12.5px;
  }
}
/* premium Design */

/* Target only premium card section */
.always-blur-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .always-blur-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  /*.always-blur-card-grid {*/
  /*  grid-template-columns: 2fr;*/
  /*}*/
  .always-blur-card-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row on mobile */
  }

}

.always-blur-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.always-blur-card {
  background: #0f0f0f;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.blur-img-wrap {
  height: 300px;
  position: relative;
  overflow: hidden;
}

.blur-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}

.premium-ribbon {
  position: absolute;
  top: 12px;
  left: -40px;
  width: 140px;
  background: #c62828;
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  padding: 5px 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  z-index: 3;
}



.details-card-box {
  background-color: #02336a;
  padding: 12px;
  text-align: center;
}

.girl-name {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin: 4px 0;
}

.girl-city-age {
  font-size: 14px;
  color: #ff4081;
  margin-bottom: 6px;
}

.girl-city-age a {
  color: #ff4081;
  text-decoration: none;
}

.girl-city-age a:hover {
  text-decoration: underline;
}

.girl-city-age span {
  color: #ffc107;
}

.star-rating-inline {
  margin-bottom: 10px;
}

.star-rating-inline span {
  font-size: 18px;
  color: #ffc107;
  margin: 0 1px;
}

.contact-number-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.callnow, .whatapp {
  padding: 6px 14px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
  color: #fff;
}
.callnow { background: #d32f2f; }
.callnow:hover { background: #a30000; }
.whatapp { background: #2e7d32; }
.whatapp:hover { background: #1b5e20; }

@media (max-width: 480px) {
  .premium-ribbon {
    top: 10px;
    left: -38px;
    width: 120px;
    font-size: 10px;
  }
 .always-blur-card-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row on mobile */
  }

}

.Hd-content-section {
  padding-bottom: 0; /* Removes bottom spacing */
}

.Hd-content-section h2 {
  color: yellow;
  text-align: center;
  margin-bottom: 0;
  font-size: 32px; /* Default desktop font size */
}

/* Mobile Responsive */
@media screen and (max-width: 767px) {
  .Hd-content-section h2 {
    font-size: 20px;
  }
}

/* faq ke liye Responsive */

.faq-section {
    background-color: #072B4E;
    padding: 40px 20px;
    color: #fff;
  }
  .faq-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .faq-title {
    text-align: center;
    font-size: 30px;
    color: #b2ff59;
    font-weight: 700;
    margin-bottom: 30px;
  }
  .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  .faq-box {
    background-color: #5e1cd5;
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 20px;
    color: #fff;
  }
  .faq-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 10px;
  }
  .faq-box p {
    font-size: 16px;
    line-height: 1.5;
  }
  @media(max-width: 480px) {
    .faq-title {
      font-size: 24px;
    }
    .faq-box h3 {
      font-size: 16px;
    }
    .faq-box p {
      font-size: 15px;
    }
  }
  
/* btton botm ke liye Responsive */
  
  .fixed-contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 9999;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
}

.call-box,
.whatsapp-box {
  flex: 1;
  padding: 12px 10px;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.call-box {
  background: #d32f2f;
}

.whatsapp-box {
  background: #25D366;
}

.call-box i,
.whatsapp-box i {
  margin-right: 8px;
  font-size: 18px;
}

/* Mobile font scaling */
@media (max-width: 600px) {
  .call-box, .whatsapp-box {
    font-size: 14px;
    padding: 10px 5px;
  }
}
