/*------------------------------------------------

CSS STRUCTURE:

1. VARIABLES

2. GENERAL TYPOGRAPHY
  2.1 General Styles
  2.2 Floating & Alignment
  2.3 Forms
  2.4 Lists
  2.5 Code
  2.6 Tables
  2.7 Spacing
  2.8 Utilities
  2.9 Misc
    - Row Border
    - Zoom Effect
  2.10 Buttons
    - Button Sizes
    - Button Shapes
    - Button Color Scheme
    - Button Aligns
  2.11 Section
    - Hero Section
    - Section Title
    - Section Paddings
    - Section Margins
    - Section Bg Colors
    - Content Colors
    - Content Borders

3. EXTENDED TYPOGRAPHY
  3.1 Blockquote / Pullquote
  3.2 Text Highlights

4. CONTENT ELEMENTS
  4.1 Tabs
  4.2 Accordions
  4.3 Brand Carousel
  4.4 Category Carousel

5. BLOG STYLES
  5.1 Blog Single Post
  5.2 About Author
  5.3 Comments List
  5.4 Comments Form3

6. SITE STRUCTURE
  6.1 Header
    - Header Menu
    - Nav Sidebar
  6.2 Billboard
  6.3 About Us Section
  6.4 Video Section
  6.5 Selling Products Section
  6.6 Quotation Section
  6.7 Latest Blogs Section
  6.8 Newsletter Section
  6.9 Instagram Section
  6.10 Footer
    - Footer Top
    - Footer Bottom

7. OTHER PAGES
  7.1 Product detail
  7.2 Shop page

    
/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
  /* widths for rows and containers
     */
  --header-height: 160px;
  --header-height-min: 80px;
}

/* on mobile devices below 600px
 */
@media screen and (max-width: 600px) {
  :root {
    --header-height: 100px;
    --header-height-min: 80px;
  }
}

/* Theme Colors */
:root {
  --accent-color: #003399;
  --dark-color: #222222;
  --light-dark-color: #727272;
  --light-color: #fff;
  --grey-color: #dbdbdb;
  --light-grey-color: #fafafa;
  --primary-color: #003399;
  --light-primary-color: #eef1f3;
}

/* Fonts */
:root {
  --body-font: 'Arial', cursive;
  --heading-font: 'Arial', cursive;
  --secondary-font: 'Arial', sans-serif;
}


body {
  --bs-link-color: #333;
  --bs-link-hover-color: #333;

  --bs-link-color-rgb: 40, 40, 40;
  --bs-link-hover-color-rgb: 0, 0, 0;

  --bs-light-rgb: 248, 248, 248;

  --bs-font-sans-serif: 'Arial', cursive;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 2;
  --bs-body-color: #41403E;

  --bs-primary: #003399;
  --bs-primary-rgb: 222, 173, 111;

  --bs-primary-bg-subtle: #FFF9EB;
  --bs-border-color: #F7F7F7;

  --bs-secondary-rgb: 230, 243, 251;

  --bs-success-rgb: 238, 245, 228;
  --bs-danger-rgb: 249, 235, 231;
  --bs-warning-rgb: 255, 249, 235;
  --bs-info-rgb: 230, 243, 250;
}

.btn-primary {
  padding: 1.2rem 3rem;
  --bs-btn-color: #fff;
  --bs-btn-bg: #003399;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #486bb0;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #003399;
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #d3d7dd;
  --bs-btn-disabled-border-color: transparent;
}

.btn-outline-primary {
  transition: all 0.3s ease-in;
  padding: 1.2rem 3rem;
  letter-spacing: 0.02375rem;
  --bs-btn-color: #003399;
  --bs-btn-border-color: #003399;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #003399;
  --bs-btn-hover-border-color: #003399;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #003399;
  --bs-btn-active-border-color: #003399;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #003399;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #003399;
  --bs-gradient: none;
}

.btn-outline-dark {
  transition: all 0.3s ease-in;
  padding: 1.2rem 3rem;
  letter-spacing: 0.02375rem;
  text-transform: uppercase;
  --bs-btn-color: #41403E;
  --bs-btn-border-color: #41403E;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #41403E;
  --bs-btn-hover-border-color: #41403E;
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #41403E;
  --bs-btn-active-border-color: #41403E;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #41403E;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #41403E;
  --bs-gradient: none;
}

.btn-dark {
  padding: 1.2rem 3rem;
  font-size: 1.1875rem;
  text-transform: uppercase;
  --bs-btn-color: #fff;
  --bs-btn-bg: #41403E;
  --bs-btn-border-color: #41403E;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #363533;
  --bs-btn-hover-border-color: #363533;
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #41403E;
  --bs-btn-active-border-color: #41403E;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #41403E;
  --bs-btn-disabled-border-color: #41403E;
}

@media screen and (max-width:991px) {

  .btn-primary,
  .btn-outline-primary,
  .btn-outline-dark,
  .btn-dark {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
  }
}

body {
  letter-spacing: 0.01625rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: var(--bs-body-color);
  font-weight: 400;
  text-transform: capitalize;
}

a {
  text-decoration: none;
}

.breadcrumb.text-white {
  --bs-breadcrumb-divider-color: #fff;
  --bs-breadcrumb-item-active-color: var(--bs-primary);
}

.dropdown-menu {
  --bs-dropdown-link-active-bg: var(--bs-primary);
}

.secondary-font {
  font-family: var(--secondary-font);
  font-weight: 300;
}

/* Remove dropdown arrow */
.dropdown-toggle::after {
  display: none;
}

/*----------------------------------------------*/
/* 6. SITE STRUCTURE */
/*----------------------------------------------*/
/* 6.1 Header
--------------------------------------------------------------*/
/* Preloader */
.preloader-wrapper {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 111;
  background: #fff;
}

.preloader-wrapper .preloader {
  margin: 20% auto 0;
  transform: translateZ(0);
}

.preloader:before,
.preloader:after {
  content: '';
  position: absolute;
  top: 0;
}

.preloader:before,
.preloader:after,
.preloader {
  border-radius: 50%;
  width: 2em;
  height: 2em;
  animation: animation 1.2s infinite ease-in-out;
}

.preloader {
  animation-delay: -0.16s;
}

.preloader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}

.preloader:after {
  left: 3.5em;
}

@keyframes animation {

  0%,
  80%,
  100% {
    box-shadow: 0 2em 0 -1em var(--accent-color);
  }

  40% {
    box-shadow: 0 2em 0 0 var(--accent-color);
  }
}

/* search bar style  */
.search-bar {
  border: 1px solid #EAEAEA;
}

.search-bar ::placeholder {
  font-family: var(--secondary-font);
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #86b7fe;
  outline: 0;
  box-shadow: none;
}

/* nav bar style  */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.nav-link:focus,
.nav-link:hover {
  color: var(--accent-color);
}

/* category style */
iconify-icon.category-icon {
  color: #003399;
  font-size: 100px;
  transition: all 0.3s ease-in;
}

a.categories-item:hover iconify-icon.category-icon {
  color: #003399;
}

/* banner style */
/* #banner {
  margin-top: 0;
  padding-top: 0;
} */

/* .swiper-pagination-bullet {
  border: 1px solid var(--bs-body-color);
  background-color: transparent;
  opacity: 1;
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 15px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 15px));
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--bs-body-color);
  background: var(--bs-body-color);
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px);
} */

/* pet clothing */
.card {
  --bs-card-inner-border-radius: none;
  --bs-card-bg: transparent;
  background-color: transparent;
  border: none;
}

a.btn-cart {
  border-radius: 0.25rem;
  border: 1px solid rgba(65, 64, 62, 0.20);
}

a.btn-wishlist {
  border-radius: 0.25rem;
  border: 1px solid rgba(65, 64, 62, 0.20);
}

/* pet foodies style  */
button.filter-button {
  letter-spacing: 0.02125rem;
  border: none;
  border-bottom: 2px solid #D9D9D8;
  background: transparent;
  text-transform: uppercase;
  font-size: 1.0625rem;
  transition: all 0.3s ease-in;
}

button.filter-button.active,
button.filter-button:hover {
  border-bottom: 2px solid #003399;
}

/* testimonial style  */
.testimonial-content {
  color: #908F8D;
}

iconify-icon.quote-icon {
  color: #F7EEE4;
  font-size: 14rem;
}

/* register form  */
.form-control {
  color: #908F8D;
  line-height: normal;
  letter-spacing: 0.02125rem;
  text-transform: capitalize;
  border-radius: 0.25rem;
  border: 1px solid rgba(65, 64, 62, 0.20);
  background: #FFF;
  display: flex;
  padding: 1.25rem 0rem 1.25rem 1.25rem;
  align-items: center;
  gap: 0.375rem;
  align-self: stretch;
}

.form-control:focus {
  border-color: #41403E;
}

/* blog style */
.blog-paragraph {
  color: #908F8D;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  font-family: var(--secondary-font);
}

.blog-read {
  color: #908F8D;
  font-size: 1rem;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
}

a.blog-read {
  border-bottom: 3px solid #D9D9D8;
  transition: all 0.3s ease-in;
}

a.blog-read:hover {
  border-bottom: 3px solid #8a8a8a;
}

/* services style  */
.service-icon {
  font-size: 30px;
  border-radius: 3.125rem;
  border: 1px solid #D9D9D8;
  padding: 1.25rem;
}

/* insta style  */
.instagram-item:hover:before,
.instagram-item:hover .icon-overlay {
  opacity: 1;
  cursor: pointer;
}

.icon-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  align-items: center;
  font-size: 3rem;
  cursor: pointer;
  opacity: 0;
  -moz-transition: 0.8s ease;
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
}

/* footer style */
iconify-icon.social-icon {
  color: #CACACA;
  font-size: 1.125rem;
  padding: 0.75rem;
  border-radius: 4.375rem;
  border: 1px solid #D9D9D8;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
  transition: all 0.5s ease;
}

li.social:hover iconify-icon.social-icon {
  color: #FFF;
  border: 1px solid #003399;
  background: #003399;
}

iconify-icon.send-icon {
  cursor: pointer;
  font-size: 1.125rem;
  padding: 0.75rem;
  border-radius: 4.375rem;
  color: #FFF;
  border: 1px solid #003399;
  background: #003399;
}

@media screen and (max-width: 991px) {
  /* offcanvas menu */
  .offcanvas-body .nav-item {
    font-weight: 700;
    border-bottom: 1px solid #d1d1d1;
  }

  .offcanvas-body .filter-categories {
    width: 100%;
    margin-bottom: 20px !important;
    border: 1px solid #d1d1d1 !important;
    padding: 14px;
    border-radius: 8px;
  }

  /* dropdown-menu */
  .dropdown-menu {
    padding: 0;
    border: none;
    line-height: 1.4;
    font-size: 0.9em;
  }

  .dropdown-menu a {
    padding-left: 0;
  }
}

/*--------------------------------------------------------------
faqs section style start
--------------------------------------------------------------*/
.accordion-button:not(.collapsed) {
  color: var(--body-text-color);
  background-color: transparent;
  box-shadow: none;
}

.accordion {
  --bs-accordion-color: var(--light-text-color);
  --bs-accordion-bg: none;
  --bs-accordion-btn-color: var(--body-text-color);
}

.accordion-button:not(.collapsed)::after {
  background-image: url('https://api.iconify.design/eva/arrow-down-fill.svg?color=%2341403e');
}

.accordion-button::after {
  background-image: url('https://api.iconify.design/eva/arrow-down-fill.svg?color=%2341403e');
}

.accordion-button:focus {
  z-index: 3;
  border-color: none;
  box-shadow: none;
}

/*--------------------------------------------------------------
Account section style start
--------------------------------------------------------------*/
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
Blog section style start
--------------------------------------------------------------*/
/* ------ Pagination ------*/
.pagination .page-numbers {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  color: var(--bs-body-color);
  padding: 0 10px;
  line-height: 1.4;
  transition: 0.9s all;
  border-radius: 8px;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  color: var(--accent-color);
}

iconify-icon.pagination-arrow {
  color: var(--bs-body-color);
  transition: 0.9s all;
}

iconify-icon.pagination-arrow:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
Single Product section style start
--------------------------------------------------------------*/
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: var(--light-color);
  background-color: var(--accent-color);
}
.top-bar {
  background-color: #003399;
  text-align: center;
  padding: 8px 0;
  font-weight: 600;
  color: white;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

header .main-logo img {
  max-height: 70px;
  display: block;
  width: auto;
}

.containr {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.left, .right {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.left {
  flex: 1 1 60%;
  min-width: 300px;
}

.right {
  flex: 1 1 35%;
  min-width: 300px;
}

.left:hover, .right:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.calendar {
  background: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.calendar-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  text-align: center;
}

.calendar-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #003399;
  margin: 0 10px;
}

.calendar-nav {
  display: flex;
  gap: 10px;
}

.calendar-nav button {
  background: #f8fafc;
  border: 1px solid #e0e4ea;
  border-radius: 8px;
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calendar-nav button:hover {
  background: #003399;
  color: #ffffff;
}

.calendar table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.calendar th, .calendar td {
  padding: 12px;
  font-size: 0.95rem;
}

.calendar th {
  font-weight: 500;
  color: #555;
}

.calendar td {
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.calendar td:hover:not(.disabled):not(.empty) {
  background: #e6f0ff;
  color: #003399;
}

.calendar td.active {
  background: #003399;
  color: #ffffff;
  font-weight: 500;
}

.calendar td.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.calendar td.empty {
  cursor: default;
}

.slots {
  display: none;
  margin-top: 20px;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.slots h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #003399;
  margin-bottom: 15px;
}

.slots button {
  padding: 12px 20px;
  border: 2px solid #e0e4ea;
  border-radius: 10px;
  background: #f8fafc;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slots button:hover {
  background: #003399;
  color: #ffffff;
  border-color: #003399;
}

.slots button.active {
  background: #003399;
  color: #ffffff;
  border-color: #003399;
}

.book-btn {
  display: none;
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: linear-gradient(90deg, #003399, #0055cc);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background: linear-gradient(90deg, #002266, #003399);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 51, 153, 0.3);
}

.services-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.95rem;
  color: #003399;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  margin-bottom: 20px;
}

.services-link iconify-icon {
  font-size: 1.2rem;
}

.services-link:hover {
  color: #0055cc;
  text-decoration: underline;
}

.staff-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 20px;
}

.staff-toggle h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #003399;
  text-align: center;
}

.staff-toggle iconify-icon {
  font-size: 1.5rem;
  color: #003399;
  transition: transform 0.3s ease;
}

.staff-toggle.active iconify-icon {
  transform: rotate(180deg);
}

.staff-container {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.staff-box {
  background: #f8fafc;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  border: 1px solid #e0e4ea;
  transition: all 0.3s ease;
}

.staff-box:hover {
  background: #e6f0ff;
  transform: translateY(-2px);
}

.right h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #003399;
  margin-bottom: 15px;
}

.right p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 15px;
}

.right img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.right img:hover {
  transform: scale(1.02);
}

.right ul {
  padding-left: 20px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #444;
}

.right ul li {
  margin-bottom: 10px;
}

footer {
  background: #ffffff;
  padding: 40px 0;
  margin-top: 20px;
}

.footer-menu h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #003399;
}

.social-links ul {
  justify-content: center;
  gap: 15px;
}

.social-links iconify-icon {
  font-size: 1.5rem;
  color: #333;
  transition: color 0.3s ease;
}

.social-links iconify-icon:hover {
  color: #003399;
}

#footer-bottom {
  background: #f8fafc;
  padding: 20px 0;
}

.copyright, .text-md-end {
  font-size: 0.9rem;
  color: #444;
}

@media (max-width: 992px) {
  .containr {
    flex-direction: column;
    padding: 15px;
  }
  .left, .right {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  header .main-logo img {
    max-height: 60px;
  }
  .calendar th, .calendar td {
    padding: 8px;
    font-size: 0.9rem;
  }
  .slots {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
  .slots button {
    font-size: 0.9rem;
    padding: 10px 15px;
  }
  .book-btn {
    font-size: 1rem;
    padding: 12px;
  }
  .staff-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .containr {
    padding: 10px;
  }
  .left, .right {
    padding: 20px;
  }
  .calendar-header h2, .slots h3, .staff-toggle h3 {
    font-size: 1.2rem;
  }
  .right h2 {
    font-size: 1.5rem;
  }
}
.category {
  margin: 30px 0;
}
.category h3 {
  font-size: 28px;
  color: #002F6C;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}
.options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}
.option {
  background: #e0e7ff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}
.option:hover {
  transform: translateY(-5px);
}
.option i {
  font-size: 2.5rem;
  color: #002F6C;
  background: #ffffff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.option span {
  font-weight: bold;
  color: #002F6C;
  font-size: 0.9rem;
}

/* Enquiry Form Styles */
.enquiry-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 15px;
}
/* Enquiry Form Styles */
.enquiry-form {
  background: linear-gradient(135deg, #e0e7ff 0%, #ffffff 100%);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height:350px;
}
.enquiry-form h3 {
  font-size: 1.8rem;
  color: #002F6C;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}
.enquiry-form .form-control {
  border: 1px solid #002F6C;
  border-radius: 8px;
  padding: 10px;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}
.enquiry-form .form-control:focus {
  border-color: #25D366;
  box-shadow: 0 0 5px rgba(37, 211, 102, 0.3);
}
.enquiry-form .btn-primary {
  background: #002F6C;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-weight: 500;
  transition: background 0.3s ease;
}
.enquiry-form .btn-primary:hover {
  background: #25D366;
}
/* Enquiry Toggle Button */
#enquiry-toggle img {
  background: #002F6C;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 500;
  transition: background 0.3s ease, opacity 0.3s ease;
  width: 100%;
  max-width: 200px;
}
#enquiry-toggle:hover {
  background: #25D366;
}
#enquiry-toggle:disabled {
  background: #6c757d;
  opacity: 0.7;
  cursor: not-allowed;
}
/* WhatsApp Icon Animation */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.whatsapp-icon i {
  font-size: 2.2rem;
  color: #25D366;
  animation: pulse 1.5s infinite;
  transition: transform 0.3s ease;
}
.whatsapp-icon:hover i {
  transform: scale(1.1);
}
/* Responsive Styles */
@media (max-width: 768px) {
  .enquiry-container {
    max-width: 100%;
    padding: 10px;
  }
  .enquiry-form h3 {
    font-size: 1.5rem;
  }
  .enquiry-form .form-control {
    font-size: 0.85rem;
  }
  #enquiry-toggle {
    max-width: 180px;
  }
  .option {
    width: 100%;
    max-width: 150px;
  }
  .enquiry-form {
    margin-top: 10px;
  }
}
@media (max-width: 576px) {
  .enquiry-form {
    padding: 15px;
  }
  .enquiry-form h3 {
    font-size: 1.3rem;
  }
  #enquiry-toggle {
    max-width: 150px;
    padding: 8px 15px;
  }
  .whatsapp-icon i {
    font-size: 1.8rem;
  }
}

/* added new css for banner home */
.partners-section {
  padding: 50px 0;
  background: #fff;
  text-align: center;
}

.partners-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #333;
}

.partner-slider {
  overflow: hidden;
  position: relative;
}

.partner-track {
  display: flex;
  gap: 30px;
  animation: slide 30s linear infinite;
}

.partner-logo {
  min-width: 200px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.05);
}

.partner-logo img {
  max-height: 60px;
  max-width: 100%;
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Pause on hover */
.partner-track:hover {
  animation-play-state: paused;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .partner-logo {
    min-width: 120px;
    height: 80px;
  }
}

@media (max-width: 576px) {
  .partner-logo {
    min-width: 100px;
    height: 70px;
  }
}
/* adding banner slider css*/
#banner .main-swiper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 16 / 9; /* Maintain consistent aspect ratio */
  }
  #banner .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fc;
  }
  #banner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure images fill the slide without distortion */
    transition: transform 0.5s ease;
  }
  #banner .swiper-slide:hover img {
    transform: scale(1.05); /* Subtle zoom effect on hover */
  }
  #banner .swiper-pagination {
    bottom: 20px !important;
  }
  #banner .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.7;
    transition: all 0.3s ease;
  }
  #banner .swiper-pagination-bullet-active {
    background: #002F6C;
    opacity: 1;
    transform: scale(1.2);
  }
  /* #banner .swiper-button-next,
  #banner .swiper-button-prev {
    color: #fff;
    background: rgba(0, 47, 108, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
  } */
  /* #banner .swiper-button-next:hover,
  #banner .swiper-button-prev:hover {
    background: rgba(0, 47, 108, 0.8);
    transform: scale(1.1);
  } */
  #banner .enquiry-form-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
 
  #banner .enquiry-toggle img:hover {
    transform: scale(1.03);
  }
  #banner .whatsapp-icon {
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  /* Match banner slider height to enquiry image */
  #banner .main-swiper {
    height: 100%;
    max-height: 400px; /* Match typical enquiry image height */
  }
  /* Responsive adjustments */
  @media (max-width: 992px) {
    #banner .main-swiper {
      max-height: 300px;
    }
    #banner .enquiry-toggle img {
      max-height: 300px;
    }
  }
  @media (max-width: 768px) {
    #banner .main-swiper {
      max-height: 250px;
    }
    #banner .enquiry-toggle img {
      max-height: 250px;
    }
    /* #banner .swiper-button-next,
    #banner .swiper-button-prev {
      width: 40px;
      height: 40px;
    } */
  }
  @media (max-width: 576px) {
    #banner .main-swiper {
      max-height: 200px;
    }
    #banner .enquiry-toggle img {
      max-height: 200px;
    }
    #banner .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
    }
  }
  .setting_left_bg {
    background: url('images/testimonial-bg.png') no-repeat center , url('images/left-bg.png') no-repeat left,
    url('images/right-bg.png') no-repeat right;
    background-color: #f8f9fc;
  }
  .govt_section {
    background: url('images/right-bg.png') no-repeat right, url('images/left-bg.png') no-repeat left;
    background-color: #f8f9fc;
  }

   /* New Certification Section Styles */
   #certification-section {
    padding: 60px 0;
    background-color: #f8f9fc;
    text-align: center;
  }
  .certification-image {
      max-width: 600px;
      width: 100%;
      margin: 0 auto 30px;
      border-radius: 15px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      overflow: hidden;
  }
  .certification-image img {
      width: 100%;
      height: auto;
  }
  .certification-text {
      color: #555;
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 20px;
  }
  .certification-callout {
      color: #fa0;
      font-weight: 600;
      margin-bottom: 20px;
  }
  .certification-link {
      color: #007bff;
      text-decoration: none!important;
      font-weight: 500;
      transition: color 0.3s ease;
  }
  .certification-link:hover {
      color: #0056b3;
      text-decoration: underline;
  }
  .certification-branding {
      margin-top: 30px;
      padding-top: 20px;
  }
  .certification-branding img {
      max-height: 80px;
      margin: 0 10px;
      vertical-align: middle;
  }
  .certification-branding .bima-bharosa {
      font-size: 1.5rem;
      font-weight: 700;
      color: #002F6C;
      vertical-align: middle;
      margin-right: 10px;
  }
  @media (max-width: 768px) {
      .certification-image {
          max-width: 100%;
      }
      .certification-text {
          font-size: 1rem;
      }
      .certification-branding img {
          max-height: 80px;
      }
  }
  @media (max-width: 576px) {
      .certification-text {
          font-size: 0.9rem;
      }
      .certification-branding .bima-bharosa {
          font-size: 1.2rem;
      }
  }
  /* Sticky WhatsApp Icon Styles */
.sticky-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.sticky-whatsapp .whatsapp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: #25D366; /* WhatsApp green */
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-whatsapp .whatsapp-icon i {
  font-size: 2.5rem; /* Increased for better visibility */
  color: #fff;
  animation: pulse 1.5s infinite;
  transition: transform 0.3s ease;
}

.sticky-whatsapp .whatsapp-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.sticky-whatsapp .whatsapp-tooltip {
  display: none;
  position: absolute;
  bottom: 80px; /* Adjusted for larger icon */
  right: 0;
  background-color: #25D366;
  color: #fff;
  padding: 8px 12px; /* Increased padding for readability */
  border-radius: 5px;
  font-size: 1rem; /* Increased font size */
  white-space: nowrap;
}

.sticky-whatsapp:hover .whatsapp-tooltip {
  display: block;
}

/* Media Query for Tablets (≤ 768px) */
@media (max-width: 768px) {
  .sticky-whatsapp {
      bottom: 15px;
      right: 15px;
  }
  .sticky-whatsapp .whatsapp-icon {
      width: 60px;
      height: 60px;
  }
  .sticky-whatsapp .whatsapp-icon i {
      font-size: 2.2rem;
  }
  .sticky-whatsapp .whatsapp-tooltip {
      bottom: 70px;
      font-size: 0.9rem;
      padding: 6px 10px;
  }
}

/* Media Query for Mobile (≤ 576px) */
@media (max-width: 576px) {
  .sticky-whatsapp {
      bottom: 10px;
      right: 10px;
  }
  .sticky-whatsapp .whatsapp-icon {
      width: 55px;
      height: 55px;
  }
  .sticky-whatsapp .whatsapp-icon i {
      font-size: 2rem; /* Still visible but adjusted for small screens */
  }
  .sticky-whatsapp .whatsapp-tooltip {
      bottom: 65px;
      font-size: 0.85rem;
      padding: 5px 8px;
  }
}

/* Pulse Animation */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
/* css for the header*/
@media (max-width: 576px) {
  .header-title h6 {
    font-size: 14px;
  }
}
 /* Popup Styles */
 .popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: slideIn 0.5s ease-out;
}
.popup-content h3 {
  color: #002F6C;
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.popup-content p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 20px;
}
.popup-content .btn-primary {
  background-color: #002F6C;
  border-color: #002F6C;
  padding: 10px 20px;
  font-weight: 500;
}
.popup-content .btn-primary:hover {
  background-color: #001f44;
  border-color: #001f44;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  color: #666;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.3s ease;
}
.close-btn:hover {
  color: #002F6C;
}
@keyframes slideIn {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@media (max-width: 576px) {
  .popup-content {
      padding: 20px;
      width: 85%;
  }
  .popup-content h3 {
      font-size: 1.2rem;
  }
  .popup-content p {
      font-size: 0.9rem;
  }
}

/*css for resend seller popup*/
.resend-popup {
  position: fixed;
  bottom: 90px; /* Adjust to stay above WhatsApp icon */
  right: 20px;
  background-color: #f1f1f1;
  color: #333;
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-weight: 500;
  font-size: 14px;
  z-index: 9999;
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 576px) {
  .resend-popup {
    font-size: 13px;
    padding: 10px 14px;
    bottom: 80px;
    right: 12px;
  }
}
 /* Enhanced Modal Styling */
        .modal-content {
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
            border: none;
            overflow: hidden;
        }
        .modal-header {
            background: linear-gradient(135deg, #002F6C 0%, #005566 100%);
            color: white;
            border-bottom: none;
            padding: 1.5rem;
        }
        .modal-title {
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .modal-body {
            padding: 2rem;
            background: #f8f9fa;
        }
        .modal-footer {
            border-top: none;
            padding: 1rem 2rem;
            background: #f8f9fa;
            justify-content: center;
        }
        .modal .form-control {
            border-radius: 8px;
            border: 1px solid #ced4da;
            padding: 0.75rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .modal .form-control:focus {
            border-color: #002F6C;
            box-shadow: 0 0 8px rgba(0, 47, 108, 0.2);
        }
        .modal .btn-primary {
            background: #002F6C;
            border: none;
            border-radius: 8px;
            padding: 0.75rem 2rem;
            font-weight: 500;
            transition: background 0.3s ease;
        }
        .modal .btn-primary:hover {
            background: #005566;
        }
        .modal .btn-secondary {
            border-radius: 8px;
            padding: 0.75rem 2rem;
            font-weight: 500;
        }
        .modal .form-label {
            font-weight: 500;
            color: #333;
        }
        /* Mobile Responsiveness */
        @media (max-width: 576px) {
            .modal-dialog {
                margin: 1rem;
            }
            .modal-content {
                border-radius: 10px;
            }
            .modal-title {
                font-size: 1.2rem;
            }
            .modal-body {
                padding: 1.5rem;
            }
            .modal-footer {
                flex-direction: column;
                gap: 0.5rem;
            }
            .modal .btn-primary,
            .modal .btn-secondary {
                width: 100%;
            }
        }
        /* Animation for Modal */
        .modal.fade .modal-dialog {
            transform: scale(0.8);
            opacity: 0;
            transition: all 0.3s ease;
        }
        .modal.fade.show .modal-dialog {
            transform: scale(1);
            opacity: 1;
        }
        
        
     .modal-content { border-radius: 10px; }
     .modal-header { background-color: #002F6C; color: white; }
     .modal-footer { justify-content: center; }