
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}


:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the text content across the entire website */
  --heading-color: #111111; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #702c78; /* Accent color used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections*/
  --contrast-color: #ffffff; /* Contrast color for text*/
}


:root {
  --nav-color: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #702c78; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #702c78; /* this color is applied to dropdown navigation links when they are hovered over. */
}


.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1b1b1b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #353535;
  --contrast-color: #ffffff;
}


:root {
  scroll-behavior: smooth;
}


body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}



/*Global Header*/
.header {
  position: sticky;
  top: 0;
  z-index: 997;
  background-color: var(--background-color);
  color: var(--default-color);
  padding: 12px 40px;              
  display: flex;
  align-items: center;
  
}


.logo img {
  height: 80px;
  width: auto;
  display: block;
  
  margin-right: 24px;
}


.navmenu {                       
  margin-left: auto;
}

.navmenu ul {                  
  display: flex;
  gap: 32px;                    
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}

.navmenu a {
  color: var(--default-color);
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s;
}

.navmenu a:hover,
.navmenu a.active {
  color: var(--accent-color);
}


.btn-getstarted,
.btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin-left: 24px;             
  border-radius: 4px;
  transition: background 0.3s;
}

.btn-getstarted:hover,
.btn-getstarted:focus:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}


@media (max-width: 1200px) {
  .logo      { order: 1; }
  .btn-getstarted,
  .btn-getstarted:focus {
    order: 2;
    margin: 0 0 0 15px;          
    padding: 6px 15px;
  }
  .navmenu   { order: 3; }
}


.scrolled .header {
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}

/*Navigation Menu*/

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
  color: var(--nav-color);
  font-size: 28px;
  line-height: 0;
  cursor: pointer;
  transition: color 0.3s;
  position: absolute;
  top: 50%;               
  right: 20px;            
  transform: translateY(-50%);
  z-index: 10000;
}

@media (max-width: 768px) {
  .gallery-item {
    text-align: left !important; 
    padding-left: 20px; 
    padding-top: 10px;
  }

  .gallery-item a {
    display: inline-block !important; 
  }
}


  .navmenu {
    padding: 0;
    z-index: 9997;
    display: flex;
  align-items: center;
  }

  .navmenu ul {
  display: none;
  list-style: none;
  position: absolute;
  inset: 60px 20px auto 20px;  
  bottom: auto;               
  padding: 10px 0;
  margin: 0;
  border-radius: 6px;
  background-color: var(--nav-mobile-background-color);
  overflow-y: auto;
  max-height: calc(100vh - 100px);  
  transition: 0.3s;
  z-index: 9998;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }


  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*Global Footer*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 10px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  border-color: var(--accent-color);
}


.footer .footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}


.footer .footer-links ul li a:hover {
  color: var(--accent-color); 
}


.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 10px;
}


.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}


.footer .footer-links ul li:first-child {
  padding-top: 0;
}


.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-links ul {
  padding-left: 0;
  margin: 0;
}

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

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #555;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

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

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*Scroll Top Button*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}


@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*Global Sections*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

.section-bg {
  background-color: transparent;
  padding: 160px 0;
  position: relative;
}

.section-bg:before {
  content: "";
  background-color: var(--background-color);
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

.section-bg .container {
  position: relative;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}


/*Global Section Titles*/
.section-title {
  text-align: center;
  padding-bottom: 10px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
  text-transform: capitalize;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*Hero Section*/
.hero {
  --default-color: #ffffff;
  --background-color: #000000;
  --heading-color: #ffffff;
  width: 100%;
  min-height: calc(100vh - 100px);
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.hero .btn-get-started {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}



@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}


/* Stats Section*/
.stats {
  padding: 10px 10px; 
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-box {
  
  border-radius: 8px;
  padding: 35px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-6px);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-color);
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: var(--default-color);
  letter-spacing: 0.5px;
}

/* Optional subtle entrance animation with AOS */
[data-aos="fade-up"] .stat-box {
  opacity: 0;
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate .stat-box {
  opacity: 1;
  transform: translateY(0);
}


/*About Section*/
.about.section {
  padding-left: 10px;
  padding-right: 10px;
}

.about .row {
  justify-content: space-between; 
}

.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.about .content p {
  margin-bottom: 30px;
}

.about .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: var(--default-color);
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--accent-color);
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about .content .about-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.about .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.about .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

.about .icon-box:hover h4 a {
  color: var(--accent-color);
}

/*Stats Section*/
.stats i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 15px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}


@media (max-width: 600px) {      
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);   
  }
}

.bw-pixel-stats {
  background-color: #fff;
  color: #000;
  padding: 10px 10px;
  
}

.stats-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 10px 10px;
}

.stat {
  text-align: center;
  padding: 15px;
  flex: 1 1 250px;
}

.stat h2 {
  font-size: 3rem;
  margin: 0;
  font-weight: bold;
  color: var(--accent-color);
}

.stat span {
  font-size: 1.5rem;
}

.stat p {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.4;
  color: #666;
}

.stars {
  margin-top: 5px;
}

.stars span {
  color: var(--accent-color); 
  font-size: 1.5rem;
  letter-spacing: 2px;
}


.divider {
  height: 60px;
  width: 1px;
  background-color: #ccc;
}

/*workflow Section*/
.workflow-section {
  padding: 10px 10px;
  background-color: #fff;
  padding-top: 5px;
}

.badge {
  display: inline-block;
  background: linear-gradient(to right, #d4e1ff, #e9f0ff);
  color: #2457e6;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
}

.workflow-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.step-number {
  min-width: 48px;
  height: 48px;
  background-color: #f3f3f3;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  border-left: 2px solid #ccc;
}

.step-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.step-content h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.step-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.hover-red {
  transition: color 0.3s ease;
}

.hover-red:hover {
  color: var(--accent-color); 
}


.workflow-img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  animation: float 1.5s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); } 
  100% { transform: translateY(0px); }
}


.bw-services-section {
  padding: 10px 10px;
  background: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
}

/* Title */
.bw-services-title {
  text-align: center;
  margin-bottom: 60px;
}

.bw-services-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 12px;
  transition: color 0.3s ease;
}

.bw-services-title h2:hover {
  color: var(--accent-color);
}

.bw-services-title p {
  font-size: 15px;
  color: #666;
  margin: 0;
}

.bw-services-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.bw-service-card {
  display: flex;
  align-items: flex-start;
  padding: 24px; 
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease;
}

.bw-service-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Icon Box */
.bw-icon-box {
  margin-right: 20px;
  font-size: 28px;
  color: var(--accent-color);
  flex-shrink: 0;
}

/* Info */
.bw-service-info h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px;
  transition: color 0.3s ease;
}

.bw-service-info h3:hover {
  color: var(--accent-color);
}

.bw-service-info p {
  font-size: 15px;
  color: #666;
  margin: 0 0 12px;
}

.bw-service-info a {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
  text-decoration: none;
}

.bw-service-info a:hover {
  color: var(--accent-color);
}


.bw-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 30px;
}

@media (max-width: 768px) {
  .bw-services-grid {
    grid-template-columns: 1fr;
  }
}

.faq {
  padding: 80px 10px; 
  .faq {
  margin-bottom: 0;
  padding-bottom: 10px; 
}
}

.faq .faq-container {
  max-width: 1000px;  
  margin: 0 auto;     
  marign-top: 5px;      
}

.faq h2,
.faq .section-title {
  margin-bottom: 10px; 
}


.faq .faq-container .faq-item {
  position: relative;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
  width: 100%; 
  box-sizing: border-box;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 15px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: white; 
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color); 
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

@media (min-width: 768px) {
  .faq {
    padding: 80px 40px; 
  }
}

/* Contact Section*/
.contact .info-item {
  background-color: #fff;
  box-shadow: 0px 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 10px;

}

#contact {
  margin-top: 0;
  padding-top: 0;
}

.equal-height {
  min-height: 200px; 
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
  border-radius: 50%;
  margin: 0 auto 15px;
}

.contact .info-item h3 {
  font-size: 24px;
  font-weight: 700;
}

/* Contact Form container */
.contact-form-container {
  background-color: var(--surface-color);
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact-form-container > p {
  font-size: 15px;
  color: var(--default-color);
  margin-bottom: 25px;

}

.custom-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-pair {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  padding-top: 5px;
}

.input-pair input {
  flex: 1;
  padding : 0px;
}

.custom-contact-form input,
.custom-contact-form textarea {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  outline: none;
  font-size: 16px;
  width: 100%;
  margin-bottom: 10px;
}

.full-width {
  width: 100%;
}

textarea {
  resize: none;
  margin-bottom:5px;
}



.submit-btn {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top:10px;
}

.submit-btn:hover {
  background-color: var(--accent-color);
}
.contact .info-item {
  min-height: 240px; 
}


.mapouter {
  position: relative;
  text-align: right;
  height: 350px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
}

.gmap_canvas {
  overflow: hidden;
  background: none !important;
  height: 350px;
  width: 100%;
}

/*Service Details Section */

.page-title.dark-background {
  background-color: var(--accent-color); 
  padding: 20px 0; 
  color: #fff; 
}

.page-title.dark-background h1 {
  color: #fff; 
  font-weight: 600;
}

.page-title.dark-background .breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 5px;
}

.page-title.dark-background .breadcrumbs li {
  color: #fff; 
}

.page-title.dark-background .breadcrumbs li a {
  color: #fff;
  text-decoration: none;
}


.page-title.dark-background .breadcrumbs li + li::before {
  content: "/"; 
  color: #fff;
  margin: 0 8px;
}

.page-title.dark-background .breadcrumbs li a:hover {
  text-decoration: underline;
}

.page-title.dark-background .breadcrumbs li.current {
  font-weight: 600;
}


.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
  text-align :justify;
  
}

.service-details .container {
  padding-left: 20px;
  padding-right: 20px;
}


.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--accent-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--accent-color);
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-color);
}

.service-details p {
  font-size: 15px;
  text-align: justify;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

.services-img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  animation: float 1.5s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); } 
  100% { transform: translateY(0px); }
}

    .page-title {
      background-color: #333;
      color: #fff;
      padding: 20px 0;
    }

    .page-title .container {
      max-width: 1200px;
      margin: auto;
      padding: 0 20px;
      display: flex;
      flex-direction: column;
    }

    @media (min-width: 992px) {
      .page-title .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
    }

    .page-title h2 {
      margin: 0;
      font-size: 28px;
      font-weight: 600;
    }

    .breadcrumbs {
      margin-top: 10px;
    }

    .breadcrumbs ol {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      gap: 8px;
      font-size: 14px;
    }

    .breadcrumbs li::after {
      content: "";
      margin-left: 8px;
    }

    .breadcrumbs li:last-child::after {
      content: "";
    }

    .breadcrumbs a {
      text-decoration: none;
      color: #ddd;
      font-weight: 600;
    }

    .breadcrumbs .current {
      color: #fff;
      font-weight: bold;
    }

    /* Explore Categories Section */
    h2.section-title {
      font-size: 26px;
      padding: 30px 20px 0;
      color: #333;
    }

    .scroll-container {
      position: relative;
      overflow: hidden;
      padding: 20px 60px;
    }

    .scroll-wrapper {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      gap: 40px;
      padding: 20px 0;
    }

    .scroll-wrapper::-webkit-scrollbar {
      display: none;
    }

    .category-card {
  flex: 0 0 auto;
  text-align: center;
  width: 280px;          
  cursor: pointer;
  text-decoration: none;
  color: #333;
}

  
  .category-card img {
  width: 260px;         
  height: 260px;        
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ccc;
  transition: transform 0.3s ease;
}

    .category-card:hover img {
      transform: scale(1.08);
    }

    .category-card p {
      margin-top: 12px;
      font-weight: bold;
      font-size: 16px;
    }

    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 45px;
      height: 45px;
      background: rgba(0, 0, 0, 0.6);
      color: white;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      font-size: 22px;
      z-index: 10;
    }

    .arrow.left {
      left: 10px;
    }

    .arrow.right {
      right: 10px;
    }



header 
{
      background: var(--accent-color);
      color: white;
      padding: 10px 0;
      text-align: center;
    }

    header h2 {
      margin-bottom: 0;
      font-size: 28px;
      color : white;
      font-weight: 600;
      padding : 10px 10px;
    }

    header p {
      padding: 10px 10px;
    }


/* Back link */
.back-link {
  display: inline-block;
  margin: 20px 40px 10px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.back-link:hover {
  text-decoration: underline;
}


.product-section {
      padding: 10px 10px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 30px;
    }

    .product-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }

    .product-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .product-card .info {
      padding: 20px;
      text-align: center;
    }

    .product-card .info h4 {
      margin: 0;
      font-size: 18px;
      font-weight: 600;
    }

/* Product detail layout */
.product-detail {
  display: flex;
  gap: 30px;
  padding: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}


.product-detail .product-image img {
  max-width: 400px;
  border-radius: 10px;
  width: 100%;
  height: auto;
}


.product-detail .product-info {
  flex: 1;
  min-width: 280px;
}


@media (max-width: 768px) {
  .product-detail {
    flex-direction: column;
    padding: 20px;
  }

  .product-detail .product-info {
    margin-top: 20px;
  }
}
   
/*bags*/
  .product-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: 10px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.product-image img {
  max-width: 450px;
  border-radius: 12px;
  width: 100%;
  
}

.product-info {
  flex: 1;
  padding: 10px 20px;
}

.product-info h2 {
  font-size: 28px;
  color: var(--accent-color);
  font-weight: 600;
}

.product-info ul {
  margin: 15px 0;
  padding-left: 20px;
}


.product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  padding-top: 20px;
}

.product-image {
  flex: 1 1 40%;
  max-width: 500px;
}

.product-image img {
  width: 100%;
  border-radius: 10px;
}

.product-info {
  flex: 1 1 50%;
  max-width: 600px;
}

.product-info h2 {
  color: var(--accent-color);
  margin-bottom: 15px;
}

.product-info ul {
  margin-bottom: 20px;
}

.buy-now {
  padding: 10px 20px;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


.buy-now {
  background: var(--accent-color);
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.buy-now:hover {
  background: var(--accent-color);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: 20px;
}


/* Modal Content */
.modal-content {
  background: #fff;
  border-radius: 12px;
  max-width: 450px;
  width: 100%;
  padding: 30px;
  position: relative;
  
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { transform: translateY(-30px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
}

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

.form-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 22px;
  color: var(--accent-color);
  font-weight: 600;
}

.form-title h3 {
  font-size : 28px;
  font-weight: 600;
}

.form-title h3 :hover {
  background-color: var(--accent-color);
}


.form-clean input,
.form-clean select {
  padding: 10px 15px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  outline: none;
}

.form-clean label {
  font-weight: 500;
  margin-top: 10px;
  color: #555;
}


.quantity-selector {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-selector button {
  padding: 8px 14px;
  font-size: 18px;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.quantity-selector input[type="number"] {
  width: 60px;
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.submit-btn {
  background-color: var(--accent-color);
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background-color: var(--accent-color);
}











