@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&display=swap');

.font {
  font-family: "Bitter", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.phone-navbar {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px !important;
  background-color: white !important;
}

.navbar {

  background-color: white !important;
  padding: 10px 0px !important;
  /* box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px !important; */
  /* border-radius: 0px 0px 20px 20px !important; */
}

.phone-navbar {

  position: fixed !important;
  top: 0px !important;
  width: 100%;
  z-index: 9999 !important;
}


.main-header,
.second-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.top-bar {
  background: linear-gradient(135deg, #F46B39, #e25c2b);
  padding: 10px;

}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar-right a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #f1f1f1;
  color: #333;
  border-radius: 50%;
  font-size: 14px;
  transition: all 0.3s ease;
}

.top-bar-right a:hover {
  background: #E04E2D;
  color: #fff;
  transform: translateY(-2px);
}

.social-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left ul {
  display: flex;
  padding: 0px;
  margin: 0px;
  gap: 30px;
  list-style: none;
}

.top-bar-left li {
  color: white;
}

.navbar-brand img {
  width: 210px;
}

.logo2 img {
  width: 210px;

}

.main-header {
  transform: translateY(0);
  opacity: 1;
}

.second-header {
  transform: translateY(-100%);
  opacity: 0;
}

.main-header.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.second-header.visible {
  transform: translateY(0);
  opacity: 1;
}

.main-header {
  transform: translateY(0);
  opacity: 1;
}

.main-header.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.second-header {
  transform: translateY(-100%);
  opacity: 0;
}

.second-header.visible {
  transform: translateY(0);
  opacity: 1;
}


.header2 {
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
  background: white;
  border-radius: 0px 0px 16px 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(9.6px);
  -webkit-backdrop-filter: blur(9.6px);
  padding: 6px 0px !important;
  border: 1px solid rgba(255, 255, 255, 0.3);


}

.navbar-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header2 nav {
  padding: 5px;
}



.nav-links i {
  font-size: 12px;
  color: #62A4D2;
}

.nav-link {
  font-size: 16px !important;
  color: var(--text-color) !important;

}

.nav-links ul li a {
  text-decoration: none;
  color: var(--text-color);

  transition: color 0.3s ease;
}


.nav-links ul li a:hover {
  color: #007bff;
}


.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}






/* Navbar */
.custom-navbar {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #0d1117;
  display: flex;
}

/* Nav item */
.custom-item {
  position: relative;
}

/* Nav link */
.custom-link {
  color: var(--primary-color);
  text-decoration: none;

  font-size: 15px;
}

/* Arrow */
.custom-link svg {
  transition: transform 0.3s ease;
}

/* Dropdown box */
.custom-dropdown {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  padding: 12px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.95);
  transition: all 0.35s ease;
}

/* Dropdown links */
.custom-dropdown li a {
  display: block;
  padding: 12px 20px;
  color: #222;
  text-decoration: none;
  font-size: 14px;
}

.custom-link li a svg {
  transition: transform 0.3s ease;
}

.custom-dropdown li a:hover {
  background: #f0f6ff;
  color: #007bff;
}

/* Align text + icon */
.custom-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Chevron default state */
.custom-link svg {
  transition: transform 0.3s ease;
}

/* Rotate chevron when dropdown is active */
.custom-item:hover .custom-link svg {
  transform: rotate(180deg);
}

/* Hover effects */
.custom-item:hover .custom-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.custom-item:hover .arrow {
  transform: rotate(-135deg);
}

.hero-section {
  margin-top: 170px;
}

.hero-section img {
  height: auto !important;
  border-radius: 20px !important;
}

.main-btn {
  background: linear-gradient(135deg, #F46B39, #cf8e1e);

  padding: 14px 30px;
  border-radius: 5px;
  color: white;
  text-decoration: none;

}

.cetegory-main {
  background-color: white;
  border-radius: 20px;
}

/* Category Box Styling */
.catgeory-box {
  background: transparent;
  border-radius: 12px;
  text-align: center;


}

.catgeory-box img {
  max-width: 300px;
  margin-bottom: 15px;

}

.catgeory-box h3 {
  font-size: 21px;
  font-weight: 400;
  color: black;
  margin: 0;
}

.category-section {
  padding: 10px 0px;

}

.heading-section {
  text-align: center;
  padding: 30px 0px;

}

.heading-section h2 {
  color: #F46B39;
  background: linear-gradient(135deg, #F46B39, #fcba48);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 65px;
}

.heading-section h3 {
  color: #A8B2C0;
  font-size: 21px;
}

.catgeory-box-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;


}

.catgeory-box-main a {
  text-decoration: none;
}


.catgeory-box {
  width: 220px;
  padding: 6px;
  transition: all ease-in-out 900s;
}

.catgeory-box:hover h3 {
  color: #F06E35;
  /* change text color on hover */
}


.catgeory-box img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.line {
  width: 70px;
  height: 5px;
  border-radius: 50px;
  background: linear-gradient(135deg, #d45500, #fcba48);
  margin: auto;

}

/* Heading lines + title */
.heading-section2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 35px;
}

.heading-section2 .line2 {
  height: 2px;
  width: 60px;
  background-color: #F06E35;
}

.heading-section2 h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #F06E35;
  letter-spacing: 1px;
  text-transform: uppercase;
}


.about-section {
  padding-bottom: 40px;
  background: white;

}

.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.16);
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background: #ffffff;
}

.about-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 530px;
}


.about-image:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.18);
}

.about-section .col-lg-3 {
  margin-bottom: 20px;
}

.about-section .col-lg-8 {
  margin-bottom: 20px;
}

.about-section h4 {
  color: #F46B39;
  font-size: 37px;
  font-weight: 600;

}


.product-section {
  background-color: #f3faff;
  padding: 20px 0px;

}

/* Product Grid */
.product-main-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* Product Card - Unhovered Stylish Design */
.product-box {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  width: 310px;
  min-height: 360px;
  border-radius: 10px;
  padding: 10px;
  overflow: hidden;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.1),
    0 1px 8px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);

  cursor: pointer;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.8);
}





/* Product Image */
.product-img {
  position: relative;
  height: 266px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 5px;
}


/* Discount Badge */
.discount-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
  z-index: 2;
}

/* Product Info */
.product-info {
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.product-info h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1e293b;
  font-weight: 600;
  line-height: 1.3;
}

/* Price Row */
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.original-price {
  font-size: 16px;
  color: #64748b;
  text-decoration: line-through;
  font-weight: 500;
}

.discount-price {
  font-size: 24px;
  font-weight: 800;
  color: #ff6600;
  background: linear-gradient(135deg, #ff6600, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.know {
  background: linear-gradient(135deg, #ff6600, #f59e0b);
  padding: 10px 30px;
  border-radius: 5px;
  color: white;
  text-decoration: none;

}

.product-box a {
  text-decoration: none;
}

.why-xenus-section {
  padding: 20px 0;
  background-color: #f3faff;
  position: relative;
  overflow: hidden;
}

/* soft background blobs */
.why-xenus-section::before,
.why-xenus-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 183, 3, 0.18), transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.why-xenus-section::before {
  top: -80px;
  left: -60px;
}

.why-xenus-section::after {
  bottom: -120px;
  right: -40px;
  filter: blur(2px);
}

/* reuse your heading-section2 and line2 as-is */
.heading-section2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.heading-section2 h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1c1c1c;
  text-transform: capitalize;
  margin: 0;
}

.line2 {
  width: 60px;
  height: 3px;
  background: #ffb703;
}

/* LEFT INTRO BLOCK */
.why-intro-block {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.25);
  overflow: hidden;
}

.why-intro-block::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0% 0%, rgba(255, 183, 3, 0.18), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(15, 118, 176, 0.1), transparent 55%);
  opacity: 0.7;
  z-index: -1;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 183, 3, 0.08);
  color: #ff9500;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.why-intro-block h3 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.why-intro-block p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 18px;
}

.why-meta-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-meta-list li {
  font-size: 14px;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.why-meta-list i {
  font-size: 13px;
  color: #0ea5e9;
}

/* RIGHT TIMELINE BLOCK */
.why-timeline {
  position: relative;
  padding-left: 32px;
  margin-left: 8px;
  z-index: 1;
}

/* vertical line */
.why-timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #ffb703, rgba(255, 183, 3, 0.05));
}

/* single item */
.why-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 26px;
  padding: 12px 18px 12px 0;
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.why-item:last-child {
  margin-bottom: 0;
}

.why-icon-wrap {
  position: relative;
  width: 36px;
  flex-shrink: 0;
}

/* dot on line */
.why-dot {
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #ffb703;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 183, 3, 0.15);
}

/* icon bubble */
.why-icon-wrap i {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff7e6;
  color: #ffb703;
  font-size: 16px;
  margin-left: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

/* text part */
.why-content h5 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
  margin-left: 10px;
}

.why-content p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.7;
  margin-left: 10px;

}

/* hover state */
.why-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.why-item:hover .why-icon-wrap i {
  transform: translateY(-3px);
  background: #ffb703;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(234, 179, 8, 0.55);
}

.why-item:hover .why-dot {
  background: #ffb703;
}

.blogpage {
  padding: 60px 0px;
}

/* ===== Main Layout ===== */
.service-detail-container {
  display: grid;
  grid-template-columns: 3fr 1.2fr;
  gap: 30px;
}

/* ===== Blog Content ===== */
.service-header {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-page-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
}

.service-contents h1 {
  font-size: 30px;
  font-weight: 600;
  color: #E86130;
}

.service-contents p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}



/* ===== Content inside description ===== */
.service-contents ul,
.service-contents ol {
  padding-left: 20px;
  margin: 15px 0;
}

.service-contents li {
  margin-bottom: 8px;
}

.service-contents h2,
.service-contents h3,
.service-contents h4 {
  color: #E86130;
  margin-top: 25px;
  font-weight: 600;
}

/* ===== Sidebar ===== */
.sidebar {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  height: fit-content;
}

.sidebar h3 {
  color: #E86130;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  border-bottom: 2px solid #E86130;
  padding-bottom: 6px;
}

/* ===== Sidebar Lists ===== */
.sidebar ul {
  list-style: none;
}

.recent-blog,
.recent-service {
  margin-bottom: 10px;
}

.recent-blog a,
.recent-service a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.recent-blog a:hover,
.recent-service a:hover {
  background: #E86130;
  color: #fff;
  transform: translateX(5px);
}

/* Review Section */
.review-section {
  padding: 60px 0;
  background: #f9f9f9;
}


/* Review Card */
.review-box {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  min-height: 260px;
}

.review-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* User Info */
.user-info {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 15px;
}

.user-image {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f06e35;
}

/* Username */
.user-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #333;
}

/* Date */
.review-date {
  font-size: 13px;
  color: #999;
}

/* Stars */
.review-rating {
  margin-top: 5px;
}

.review-rating i {
  color: #ffc107;
  font-size: 14px;
  margin-right: 2px;
}

/* Review Text */
.review-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-top: 12px;
}

/* Owl Controls */
.review-carousel .owl-nav button {
  position: absolute;
  top: 45%;
  background: #f06e35 !important;
  color: #fff !important;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.review-carousel .owl-nav .owl-prev {
  left: -45px;
}

.review-carousel .owl-nav .owl-next {
  right: -45px;
}

.review-carousel .owl-dots .owl-dot span {
  background: #ccc;
}

.review-carousel .owl-dots .owl-dot.active span {
  background: #f06e35 !important;
}



/* ===== Responsive ===== */
@media (max-width: 992px) {
  .service-detail-container {
    grid-template-columns: 1fr !important;
  }

  .service-header {
    padding: 20px;
  }

  .sidebar {
    margin-top: 30px;
  }

  .service-contents h1 {
    font-size: 26px;
  }
}

.contact-sedction {
  padding: 60px 0px;
}

.heading-section2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.heading-section2 h2 {
  margin: 0 15px;
  font-size: 32px;
  font-weight: 600;
  color: #E86130;
}

.line2 {
  width: 60px;
  height: 3px;
  background-color: #E86130;
}

/* ===== Contact Container ===== */
.contact-container {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ===== Contact Form ===== */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(232, 97, 48, 0.15);
}

.contact-form h3 {
  margin-bottom: 20px;
  color: #E86130;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #E86130;
  outline: none;
  box-shadow: 0 0 0 2px rgba(232, 97, 48, 0.15);
}

/* ===== Button ===== */
.main-btn2 {
  background-color: #E86130;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.main-btn:hover {
  background-color: #cf4f22;
  transform: translateY(-2px);
}

/* ===== Contact Info Boxes ===== */
.contact-box {
  background: #fff;
  padding: 20px 25px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #E86130;
}

.contact-box h5 {
  color: #E86130;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-box ul {
  padding: 0;
  margin: 0;
  list-style: none;
  color: #555;
  font-size: 14px;
}

/* ===== Map ===== */
.map-container {
  margin-top: 40px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.map-container h3 {
  color: #E86130;
  font-weight: 600;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border-radius: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {

  .contact-form,
  .contact-box {
    padding: 20px;
  }

  .heading-section2 h2 {
    font-size: 26px;
  }
}




/* RESPONSIVE */
@media (max-width: 991px) {


  .heading-section2 h2 {
    font-size: 26px;
  }

  .why-intro-block {
    margin-bottom: 28px;
  }

  .why-timeline {
    padding-left: 26px;
    margin-left: 0;
  }
}

@media (max-width: 576px) {
    .service-detail-container {
    grid-template-columns: 1fr !important;
  }

  .heading-section2 {
    flex-direction: column;
    gap: 10px;
  }

  .line2 {
    width: 40px;
  }

  .why-timeline::before {
    left: 10px;
  }

  .why-dot {
    left: -2px;
  }

  .map-container {
    padding: 3px;
  }

  .contact-container {
    padding: 3px;
    border-radius: 4px;
  }

  .service-header {
    padding: 5px !important;
  }
}


.faq-section {
  padding: 20px 0;
  background-color: #f3faff;
}

/* Heading lines + title */
.heading-section2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 35px;
}

.heading-section2 .line2 {
  height: 2px;
  width: 60px;
  background-color: #F06E35;
}

.heading-section2 h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #F06E35;
  letter-spacing: 1px;
  text-transform: uppercase;
}



/* Individual accordion items */
.faq-section .accordion-item {
  border-radius: 8px !important;
  border: 1px solid rgba(240, 110, 53, 0.18);
  margin-bottom: 12px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Question button (collapsed/normal) */
.faq-section .accordion-button {
  font-weight: 600;
  font-size: 16px;
  padding: 14px 18px;
  color: #333333;
  background-color: #ffffff;
  transition: all 0.25s ease;
}

/* Remove blue focus ring and keep custom color */
.faq-section .accordion-button:focus {
  box-shadow: 0 0 0 0.15rem rgba(240, 110, 53, 0.25);
}

/* Hover state */
.faq-section .accordion-button:hover {
  background-color: rgba(240, 110, 53, 0.06);
}

/* Active (opened) state */
.faq-section .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: #F06E35;
  box-shadow: none;
}

/* Arrow icon color when open/closed */
.faq-section .accordion-button::after {
  filter: invert(57%) sepia(58%) saturate(3522%) hue-rotate(343deg) brightness(99%) contrast(101%);
}

.faq-section .accordion-button:not(.collapsed)::after {
  filter: invert(100%);
}

/* Answer body */
.faq-section .accordion-body {
  background-color: #ffffff;
  color: #555555;
  font-size: 15px;
  line-height: 1.7;
  padding: 15px 18px 18px;
}


.video-section {
  padding-bottom: 20px;
  background: white;

}



.video-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.video-box iframe {
  width: 100%;
  height: 320px;
  border-radius: 10px;
}


/* Optional: style nav arrows */
.owl-prev-icon,
.owl-next-icon {
  font-size: 24px;
  color: white !important;
}

.owl-nav {
  position: absolute;
  right: 0px;
}

.owl-nav button {
  background: #F8893F !important;
  border: none !important;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  margin-left: 10px !important;




}



.blog-section {
  padding: 20px 0;
  background: linear-gradient(180deg, #f9fbff, #ffffff);
}


/* Blog Box */
.blog-box {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.blog-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Image */
.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-box:hover .blog-image img {
  transform: scale(1.12);
}

/* Gradient overlay */
.blog-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  opacity: 0;
  transition: 0.4s;
}

.blog-box:hover .blog-image::after {
  opacity: 1;
}

/* Content */
.blog-content {
  padding: 20px;
}

.blog-content h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #0b3c5d;
  transition: color 0.3s;
}

.blog-box:hover h5 {
  color: #1c1c1c;
}

.blog-content hr {
  margin: 12px 0;
  border-top: 1px solid #eee;
}

/* Date & Category */
.dated {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #777;
}

.dated p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dated i {
  color: #2ea3f2;
}

/* Read More Badge */
.blog-box::before {
  content: "Read Blog";
  position: absolute;
  top: 18px;
  left: -60px;
  background: #2ea3f2;
  color: #fff;
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 600;
  transform: rotate(-45deg);
  transition: 0.4s;
}

.blog-box:hover::before {
  left: -40px;
}

.phone-navbar {
  display: none !important;
}

.footer {
  background: rgb(39, 39, 39);
  color: #ddd;
  padding: 60px 0 20px;
  font-family: Arial, sans-serif;
}



.footer h3 {
  color: #F78A3F;
  margin-bottom: 15px;
}

.quick-links {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 60px;

}

.footer-product-box h4 {
  color: #F78A3F;

}

.footer p {
  font-size: 17px;
  line-height: 1.6;
}

.footer-logo {
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  width: max-content;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 10px;
}

/* Quick Links */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: 17px;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #F78A3F;
  padding-left: 5px;
}

/* Social Icons */
.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #F78A3F;
  color: #111;
  border-radius: 50%;
  margin-right: 8px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #fff;
}

/* Product Categories */
.footer-products {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-products span {
  background: rgba(247, 138, 63, 0.1);
  color: #F78A3F;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #aaa;
}




    /* About Section Base */
.about-section {
    background-color: #f9f9f9;
    overflow: hidden;
}

.about-image2 img {
    transition: transform 0.3s ease;
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.about-image2 img:hover {
    transform: scale(1.02);
}

/* Form Container Styling */
.contact-form2 {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form2 input, 
.contact-form2 select, 
.contact-form2 textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form2 input:focus, 
.contact-form2 select:focus, 
.contact-form2 textarea:focus {
    border-color: #007bff; /* Change to your brand color */
}

.contact-form2 textarea {
    height: 120px;
    resize: none;
}




/* About Detail (HTML Description from CMS) */
.about-detail {
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

/* Responsive Fix for Reversed Layout */
@media (max-width: 991px) {
    .flex-row-reverse {
        flex-direction: column !important; /* Stack normally on mobile */
    }
    
    .contact-form2 {
        margin-top: 20px;
    }
}


.custom-breadcrumb-section {
  background: url('/image/1.webp') center center / cover no-repeat;
  position: relative;
  padding: 60px 0;
  color: white;
  text-align: center;
  margin-top: 150px;
}

.custom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.744);
  /* Semi-transparent black overlay */
  z-index: 1;
}

.custom-container {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.custom-breadcrumb-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-breadcrumb-list {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.custom-breadcrumb-list li {
  color: #fff;
}

.custom-breadcrumb-list li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.custom-breadcrumb-list li a:hover {
  color: #f39c12;
  /* Highlight color on hover */
}

.custom-breadcrumb-list .current {
  font-weight: bold;
}


/* ===========================
   Gallery Section
=========================== */
.gallery-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.heading-section2 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.heading-section2 .line2 {
  width: 50px;
  height: 3px;
  background-color: #007BFF;
  margin: 10px auto;
  border-radius: 2px;
}

.heading-section2 h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0;
  color: #333;
}

/* ===========================
   Gallery Grid Images
=========================== */
.gallery-img-events {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-img-events:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* ===========================
   Modal Overlay
=========================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;

  align-items: center;
  justify-content: center;
  z-index: 1050;
  padding: 20px;

}

/* Modal Image */
.modal-content-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  padding-left: 20%;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* Close Button */
.close-modal-events {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 1100;
}

.close-modal-events:hover {
  color: #ff5e57;
}

/* Navigation Arrows */
.modal-navigation {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  box-sizing: border-box;
}

.modal-navigation button {
  background: none;
  border: none;
  color: white;
  font-size: 48px;
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s;
}

.modal-navigation button:hover {
  transform: scale(1.2);
}




.service-detail-container {
  display: grid;
  grid-template-columns: 75% 25%;
  padding: 40px 0px;
  gap: 30px;
}


.service-page-image {
  width: 100%;
  height: 500px;
  object-fit: contain;

}

.service-header {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  padding: 20px;
  border-radius: 20px;
}

.sidebar {
  padding: 20px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  border-radius: 20px;
}

.recent-service {
  list-style: none;
  margin-top: 10px;
}

.recent-service {
  background-color: #D4403E;
  padding: 5px 10px;

  border-radius: 5px;
  width: 100%;

}

.recent-service a {
  text-decoration: none;
  color: white;

}

.recent-blog a {
  text-decoration: none;
  color: white;

}

.recent-blog {
  list-style: none;
  margin-top: 10px;
}

.recent-blog {

  padding: 5px 10px;

  border-radius: 5px;
  width: 100%;

}

.hero-section .owl-nav button.owl-next {
  display: none !important;
}

.hero-section .owl-nav button.owl-prev {
  display: none !important;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

    .product-page {
    padding: 40px 20px 60px;
    background: radial-gradient(circle at top left, #fef3e7 0, #f9fafb 40%, #eef2ff 100%);
}

/* Card-style layout */
.product-gallery,
.product-info2 {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    padding: 22px 24px 26px;
}

/* Layout */
.product-gallery {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.product-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 4px;
}

/* Scrollbar for thumbs */
.product-thumbs::-webkit-scrollbar {
    width: 4px;
}
.product-thumbs::-webkit-scrollbar-thumb {
    background: #cbd5f5;
    border-radius: 999px;
}

/* Thumbnails */
.product-thumbs img {
    width: 78px;
    height: 78px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.24s ease;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}
.product-thumbs img:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: #f97316;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
    filter: saturate(1.08);
}

.product-main-img {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    position: relative;
}
.product-main-img img {
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.product-main-img:hover img {
    transform: scale(1.04);
}

/* Floating badge on image */
.product-main-img::after {
    content: "Best Seller";
    position: absolute;
    top: 18px;
    left: 18px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.06em;
    padding: 5px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(248, 113, 22, 0.5);
}

/* Product info area */
.product-info {
    text-align: start;
    position: sticky;
    top: 90px;
}

.product-info h1 {
    font-size: 32px;
    line-height: 1.18;
    margin-bottom: 8px;
    font-weight: 700;
    color: #0f172a;
}

.product-meta-line {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #6b7280;
}

/* Small rating + sold badge */
.product-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0f172a;
    color: #fefce8;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
}
.product-rating-pill i {
    color: #facc15;
}



/* Price + offer strip */
.product-price {
    font-size: 30px;
    color: #f97316;
    font-weight: 800;
    margin: 16px 0 6px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.product-price .mrp {
    font-size: 16px;
    color: #9ca3af;
    text-decoration: line-through;
}
.product-price .badge-offer {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #ecfdf3;
    color: #166534;
    font-weight: 600;
}

/* EMI / extra info strip */
.price-meta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 18px;
    font-size: 13px;
    color: #4b5563;
}
.price-meta-strip span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.price-meta-strip i {
    color: #16a34a;
}

/* Action buttons */
.whatsapp-btn,
.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    border: none;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
    transition: all 0.23s ease;
}
.whatsapp-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ecfdf5;
}
.call-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #eff6ff;
    margin-left: 10px;
}
.whatsapp-btn:hover,
.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.32);
}

/* Trust points */
.trust-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    margin: 26px 0 10px;
    font-size: 15px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px dashed rgba(148, 163, 184, 0.6);
    background: rgba(248, 250, 252, 0.9);
    transition: all 0.22s ease;
}

.trust-icon {
    width: 44px;
    height: 44px;
    background: radial-gradient(circle at 30% 0, #f97316, #ea580c);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(248, 113, 22, 0.6);
}

/* Hover */
.trust-item:hover .trust-icon {
    transform: rotate(-6deg) scale(1.04);
    background: radial-gradient(circle at 70% 0, #0f172a, #020617);
}
.trust-item:hover {
    color: #0f172a;
    background: #fff7ed;
    border-style: solid;
}
.trust-item span{
    font-size: 19px !important;

}

/* Static info box: highlights/specs */
.highlight-specs {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0f172a, #1f2937);
    color: #e5e7eb;
    font-size: 13px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
}
.highlight-specs .item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.highlight-specs .label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
    color: #9ca3af;
}
.highlight-specs .value {
    font-weight: 600;
}

/* Full description */
.full-description {
    margin-top: 50px;
}
.full-description h2 {
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    position: relative;
    display: inline-block;
}
.full-description h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 50%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f97316, transparent);
}
.full-description .description-panel {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 22px 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

/* Static “Why choose us” strip */
.why-strip {
    margin-top: 26px;
    padding: 14px 16px;
    border-radius: 999px;
    background: #fef3c7;
    color: #713f12;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.why-strip i {
    color: #f59e0b;
}

/* Responsive */
@media (max-width: 991px) {
    .product-gallery,
    .product-info {
        margin-bottom: 22px;
    }
    .product-info {
        position: static;
    }
}
@media (max-width: 767px) {
    .product-gallery {
        flex-direction: column-reverse;
    }
    .product-thumbs {
        flex-direction: row;
        max-height: none;
        overflow-y: visible;
        overflow-x: auto;
    }
    .product-thumbs img {
        width: 70px;
        height: 70px;
    }
}

.product-page {
    padding: 40px 40px;
}
.product-gallery {
    display: flex;
    gap: 10px;
}
.product-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.product-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid #ddd;
}
.product-main-img img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    border: 1px solid #ddd;
}
.product-info{

    text-align: start;
}
.product-info h1 {
    font-size: 39px;
    margin-bottom: 10px;
}
.product-price {
    font-size: 28px;
    color: #F06E35;
    font-weight: bold;
    margin: 15px 0;
}
.whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 16px;
    text-decoration: none;
    margin-top: 15px;
}
.call-btn {
    display: inline-block;
    background: #0061aa;
    color: #fff;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 16px;
    text-decoration: none;
    margin-top: 15px;
}
.whatsapp-btn:hover {
    background: #1ebc59;
}
.full-description {
    margin-top: 50px;
}
.full-description h2 {
    margin-bottom: 15px;
}
.trust-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
    margin: 34px 0;
    font-size:23px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444;
       margin: 10px 0;
}

.trust-icon {
    width: 47px;
    height: 47px;
    background-color: #f06e35;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

/* Hover Effect */
.trust-item:hover .trust-icon {
    background-color: #222;
    
}

.trust-item:hover {
    color: #f06e35;
}

.tag{
    background-color: #373737;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #ffffff;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .heading-section2 h2 {
    font-size: 24px;
  }

  .modal-content-img {
    max-width: 100%;
    max-height: 70%;
  }

  .modal-navigation button {
    font-size: 36px;
  }
}



/* Responsive */
@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}



/* Responsive */
@media(max-width: 768px) {
  .blog-image img {
    height: 200px;
  }

  .heading-section2 h2 {
    font-size: 28px;
  }
}

/* Optional: small breakpoint tweaks */
@media (max-width: 576px) {
  .modal-content-img {
    padding-left: 0% !important;
    margin-top: 50% !important;

  }
.product-thumbs{
  flex-direction: row !important;
}
  .heading-section2 h2 {
    font-size: 22px;
  }

  .faq-section .accordion-button {
    font-size: 15px;
    padding: 12px 14px;
  }

  .faq-section .accordion-body {
    font-size: 14px;
  }

  .main-header {
    display: none;
  }

  .second-header {
    display: none;
  }

  .hero-section {
    margin-top: 126px;
  }

  .hero-section img {
    height: auto !important;
  }

  .heading-section h2 {
    font-size: 30px;
  }

  .heading-section h3 {
    font-size: 17px;
  }

  .catgeory-box {
    width: 135px !important;
  }
  .about-image img{
    height: auto !important;
  }

  .catgeory-box img {

    width: 130px;
    height: 130px;
  }

  .catgeory-box-main {
    gap: 10px !important;
  }

  .catgeory-box h3 {
    font-size: 18px;
  }

  .product-box {
    width: 100% !important;
  }

  .product-img {

    height: 300px;

  }

  .about-section h2 {
    font-size: 23px;
    margin-top: 30px;
  }

  .phone-navbar {
    display: block !important;
  }
}