/* 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: "Nunito",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #012970; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f89cbe; /* Accent color that represents your brand on the website. It's 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, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #012970;  /* The default color of the main navmenu links */
  --nav-hover-color: #f89cbe; /* 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 that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f89cbe; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
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: #000;
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: #000;
  background-color: #fff;
  position: relative;
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: #000;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 15px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 500;
}

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

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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: #000;
    padding: 18px 12px;
    font-size: 15px;
    font-family: var(--nav-font);
    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;
    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);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

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

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    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);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .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;
  }
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

  .navmenu .listing-dropdown ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown ul li a:hover,
  .navmenu .listing-dropdown ul li .active,
  .navmenu .listing-dropdown ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .listing-dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
}

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

.footer .footer-top {
  padding-top: 50px;
}

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

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

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

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

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

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

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

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

.footer .footer-about a {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

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

.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;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}



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

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
}
.section-title p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 18px;
  font-weight: 400;
  margin-top: 10px;
}

.animate-border {
    position: relative;
    display: block;
    width: 115px;
	display:none;
	
    height: 3px;
    background: #f89cbe;
    overflow: hidden;
}

.aboutus h2{    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 14px;
    line-height: 1.2;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero .carousel {
  width: 100%;
  min-height: 85vh;
 
  padding: 0;
  margin: 0;
  position: relative;
  background: #0b1220;
  border-radius: 0 0 32px 32px;
  overflow: hidden;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  z-index: 1;
  transition: transform 6s ease;
}

.hero .carousel-item.active img {
  transform: scale(1.12);
}

.hero .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  /* background:
    linear-gradient(120deg, rgba(7, 12, 24, 0.82) 0%, rgba(7, 12, 24, 0.58) 45%, rgba(7, 12, 24, 0.35) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.45) 100%); */
}

.hero .carousel-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 420px;
  right: -120px;
  top: -120px;
  z-index: 2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.hero .carousel-container {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 120px 7% 90px;
}

.hero .hero-content {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 36px 34px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.hero h2 {
  margin: 0 0 18px;
  font-size: 56px;
  line-height: 1.1;
  font-weight: 800;
 text-transform: capitalize;
  letter-spacing: -0.5px;
  color: #ffffff;
  animation: fadeInDown 1s both;
}

.hero p {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  animation: fadeInDown 1s both 0.2s;
}

.hero .hero-btn-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero .btn-get-started {
  color: #fff;
  background: #f89cbe;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
  transition: all 0.35s ease;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.42);
  background: rgba(255, 255, 255, 0.16);
}

.hero .btn-secondary-hero {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  transition: all 0.35s ease;
  animation: fadeInUp 1s both 0.5s;
}

.hero .btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 70px;
  opacity: 1;
}

.hero .carousel-control-prev {
  left: 18px;
}

.hero .carousel-control-next {
  right: 18px;
}

.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  background-image: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.3s ease;
  position: relative;
}

.hero .carousel-control-prev-icon::after,
.hero .carousel-control-next-icon::after {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
}



.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.08);
}

.hero .carousel-indicators {
  margin-bottom: 28px;
  gap: 10px;
}

.hero .carousel-indicators li,
.hero .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  list-style: none;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  transition: all 0.3s ease;
}

.hero .carousel-indicators .active {
  width: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #60a5fa, #8b5cf6);
}

@media (min-width: 1200px) {
  .hero .hero-content {
    width: 850px;
  }

  .hero h2 {
    font-size: 62px;
  }

  .hero p {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .hero .carousel {
    min-height: 90vh;
    border-radius: 0 0 24px 24px;
  }

  .hero .carousel-container {
    padding: 110px 30px 80px;
    justify-content: center;
  }

  .hero .hero-content {
    max-width: 100%;
    padding: 28px 24px;
    text-align: center;
  }

  .hero .hero-btn-group {
    justify-content: center;
  }

  .hero h2 {
    font-size: 40px;
  }

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

@media (max-width: 767px) {
  .hero .carousel {
    min-height: 82vh;
    border-radius: 0 0 18px 18px;
  }

  .hero .carousel-container {
    padding: 95px 18px 65px;
  }

  .hero .hero-content {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .hero h2 {
    font-size: 30px;
    margin-bottom: 14px;
  }

  .hero p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .hero .btn-get-started,
  .hero .btn-secondary-hero {
    width: 100%;
    min-width: 100%;
    padding: 13px 20px;
    font-size: 14px;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 44px;
  }

  .hero .carousel-control-prev {
    left: 8px;
  }

  .hero .carousel-control-next {
    right: 8px;
  }

  .hero .carousel-control-prev-icon,
  .hero .carousel-control-next-icon {
    width: 40px;
    height: 40px;
  }

  .hero .carousel-indicators {
    margin-bottom: 18px;
  }
}

@media (max-width: 480px) {
  .hero .carousel {
    min-height: 78vh;
  }

  .hero h2 {
    font-size: 26px;
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 45px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -35px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
}

.features .feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.features .feature-box i {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.features .feature-box:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Alt Features Section
--------------------------------------------------------------*/
.alt-features .icon-box {
  display: flex;
}

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

.alt-features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-item .icon {
  font-size: 36px;
  padding: 20px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services .service-item h3 {
  font-size: 24px;
  font-weight: 700;
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}

.services .service-item .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.services .service-item.item-cyan {
  border-bottom: 3px solid #0dcaf0;
}

.services .service-item.item-cyan .icon {
  color: #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-cyan .read-more {
  color: #0dcaf0;
}

.services .service-item.item-cyan:hover {
  background: #0dcaf0;
}

.services .service-item.item-orange {
  border-bottom: 3px solid #fd7e14;
}

.services .service-item.item-orange .icon {
  color: #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

.services .service-item.item-orange .read-more {
  color: #fd7e14;
}

.services .service-item.item-orange:hover {
  background: #fd7e14;
}

.services .service-item.item-teal {
  border-bottom: 3px solid #20c997;
}

.services .service-item.item-teal .icon {
  color: #20c997;
  background: rgba(32, 201, 151, 0.1);
}

.services .service-item.item-teal .read-more {
  color: #20c997;
}

.services .service-item.item-teal:hover {
  background: #20c997;
}

.services .service-item.item-red {
  border-bottom: 3px solid #df1529;
}

.services .service-item.item-red .icon {
  color: #df1529;
  background: rgba(223, 21, 4, 0.1);
}

.services .service-item.item-red .read-more {
  color: #df1529;
}

.services .service-item.item-red:hover {
  background: #df1529;
}

.services .service-item.item-indigo {
  border-bottom: 3px solid #6610f2;
}

.services .service-item.item-indigo .icon {
  color: #6610f2;
  background: rgba(102, 16, 242, 0.1);
}

.services .service-item.item-indigo .read-more {
  color: #6610f2;
}

.services .service-item.item-indigo:hover {
  background: #6610f2;
}

.services .service-item.item-pink {
  border-bottom: 3px solid #f3268c;
}

.services .service-item.item-pink .icon {
  color: #f3268c;
  background: rgba(243, 38, 140, 0.1);
}

.services .service-item.item-pink .read-more {
  color: #f3268c;
}

.services .service-item.item-pink:hover {
  background: #f3268c;
}

.services .service-item:hover h3,
.services .service-item:hover p,
.services .service-item:hover .read-more {
  color: #fff;
}

.services .service-item:hover .icon {
  background: #fff;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-tem {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

@media (min-width: 1200px) {
  .pricing .pricing-tem:hover {
    transform: scale(1.1);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  }
}

.pricing h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.pricing .price {
  font-size: 36px;
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .price span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .icon {
  padding: 20px 0;
}

.pricing .icon i {
  font-size: 48px;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: var(--default-color);
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

.pricing ul li {
  padding-bottom: 10px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  text-decoration: line-through;
}

.pricing .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: var(--accent-color);
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.pricing .btn-buy:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.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 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.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-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 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);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .member-img:after {
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 100%;
  background-color: var(--surface-color);
  -webkit-mask: url("../img/team-shape.svg") no-repeat center bottom;
  mask: url("../img/team-shape.svg") no-repeat center bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 1;
}

.team .team-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  z-index: 2;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.team .team-member .social a:hover {
  color: var(--default-color);
}

.team .team-member .social i {
  font-size: 18px;
}

.team .team-member .member-info {
  padding: 10px 15px 20px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.team .team-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.team .team-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.recent-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-posts .post-item .post-content {
  padding: 30px;
}

.recent-posts .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-posts .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-posts .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-posts .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-posts .post-item:hover .post-title,
.recent-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

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

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

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

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

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

.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);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 0px;
  height: 100%;
      border-bottom: 1px solid #808080;
    background: rgb(255 255 255 / 16%);
    box-shadow: 0px 18px 56px 0px rgb(246 150 186 / 34%);
    border-radius: 11px;
    border: 1px solid #E2E2E2;
    transition: all 0.5s;
}

.blog-posts .blog-meta i {
    color: #ce3227;
    margin-right: 5px;
}
.blog-posts .post-img {
    max-height: 440px;
    margin: 0px;
    overflow: hidden;
    border-radius: 10px;

}


.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 10px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .blog-meta {
     display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(109, 4, 88, 0.08);
    padding: 12px 20px;
    font-size: 0.85rem;
    color: #ce3227;
    border-bottom: 1px solid rgba(109, 4, 88, 0.1);
    font-weight: 600;
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 0px;
}

.blog-posts .content .read-more {
  text-align: left;
}

.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}
.blog-details .content p {
 font-size: 16px;
      margin-bottom: 20px;
      line-height: 30px;
      letter-spacing: 0.5px;
      text-align: justify;
      color: #131313;
}
 .blog-details .content ul, .blog-details .content ol {
      margin-left: 25px;
      margin-bottom: 25px;
    }

    .blog-details .content ul li, .blog-details .content ol li {
      margin-bottom: 10px;
      color: #444;
      position: relative;
      padding-left: 10px;
    }

      .blog-details .content h3 {
    margin-top: 25px;
    font-size: 1.3rem;
}
   .blog-details .content h2,   .blog-details .content h3 {
    color: #000;
    font-weight: 800;
}

.blog-details .content h1{color: #c94781!important;}

    .blog-details .content ol{padding-left: 0px;}
    .blog-details .content ol li::marker{color: #6d0458;}
    .blog-details .content ul {list-style: none; padding-left:  0px;}
    .blog-details .content ul li::before {
     content: "•";
    color: #6d0458;
    position: absolute;
    left: -8px;
    font-size: 20px;
    line-height: 1;
    top: 5px;
    }


   .blog-details .content img {
          border-radius: 15px;
    transition: all 0.4s ease;
    text-align: center;
    margin: 0 auto;
    display: flex;
    }

    .blog-details .content img:hover {
      transform: scale(1.03);
    }

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background: #ffffff;
  padding: 28px;
  margin: 60px 0 30px 0;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(20, 20, 43, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 100px;
  transition: all 0.3s ease;
}

.widgets-container:hover {
  box-shadow: 0 14px 40px rgba(20, 20, 43, 0.12);
}

.widget-item {
  margin-bottom: 35px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.widget-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.widget-title {
  color: #1f1f25;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 22px 0;
  padding-left: 14px;
  position: relative;
  line-height: 1.3;
}

.widget-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 5px;
  height: 24px;
  border-radius: 10px;
  background: linear-gradient(180deg, #f597b8, #cf4d84);
}

/* Search Widget */
.search-widget form {
  background: #fff7fa;
  border: 1px solid rgba(245, 151, 184, 0.25);
  padding: 6px 8px 6px 16px;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 14px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

.search-widget form:focus-within {
  border-color: #e56b9c;
  box-shadow: 0 0 0 4px rgba(245, 151, 184, 0.12);
  background: #ffffff;
}

.search-widget form input[type="text"] {
  border: 0;
  padding: 6px 8px;
  border-radius: 10px;
  width: calc(100% - 52px);
  background: transparent;
  color: #333;
  font-size: 14px;
}

.search-widget form input[type="text"]::placeholder {
  color: #9b9b9b;
}

.search-widget form input[type="text"]:focus {
  outline: none;
}

.search-widget form button {
  background: linear-gradient(135deg, #f597b8, #cf4d84);
  color: #fff;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  border: 0;
  font-size: 15px;
  width: 42px;
  border-radius: 12px;
  transition: all 0.3s ease;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.search-widget form button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(207, 77, 132, 0.28);
}

/* Categories Widget */
.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 12px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: #4b4b55;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fafafa;
}

.categories-widget ul a:hover {
  color: #cf4d84;
  background: #fff1f6;
  transform: translateX(4px);
}

.categories-widget ul a span {
  padding-left: 8px;
  color: #8b8b95;
  font-size: 13px;
  font-weight: 500;
}

/* Recent Posts */
.recent-posts-widget .post-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.recent-posts-widget .post-item:hover {
  background: #fff6f9;
  transform: translateY(-2px);
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 85px;
  height: 75px;
  object-fit: cover;
  margin-right: 0;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.45;
}

.recent-posts-widget .post-item h4 a {
  color: #222;
  transition: color 0.3s ease;
  text-decoration: none;
}

.recent-posts-widget .post-item h4 a:hover {
  color: #cf4d84;
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: normal;
  font-size: 13px;
  color: #8a8a95;
  font-weight: 500;
}

/* Tags Widget */
.tags-widget {
  margin-bottom: -8px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: #555;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  margin: 0 8px 10px 0;
  border: 1px solid rgba(207, 77, 132, 0.18);
  border-radius: 999px;
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
  background: #fff;
}

.tags-widget ul a:hover {
  background: linear-gradient(135deg, #f597b8, #cf4d84);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(207, 77, 132, 0.22);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: inherit;
  font-size: 12px;
  opacity: 0.85;
}


/* new csss updated */

.breadcrumbinner {
    background: linear-gradient(259.44deg, #ae1651 25.03%, #f89cbe 90.57%);
    background-size: cover;
    padding-bottom: 30px;
    background-position: bottom;
}

.breadcrumbinner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15); /* slight dark overlay */
    z-index: 1;
}

/* Keep content above overlay */
.breadcrumbinner .container {
    position: relative;
    z-index: 2;
}

/* Optional: Smooth text styling */
.breadcrumbinner h1 {
    
    font-size: 46px;
    font-weight: 800;
    color:#111;
    letter-spacing: 1px;
}

.breadcrumbinner p {
    opacity: 0.9;
    font-size: 18px;
}

.contact-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fff7fa, #fff0f5);
}

.contact-card {
  max-width: 700px;
  margin: auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(245, 151, 184, 0.15);
}

.contact-us-form-left h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #1f1f25;
  text-align: center;
}

.form-subtitle {
  text-align: center;
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.modern-contact-form .contact-row {
  margin-bottom: 18px;
}

.modern-contact-form input,
.modern-contact-form select,
.modern-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
  color: #333;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.modern-contact-form input:focus,
.modern-contact-form select:focus,
.modern-contact-form textarea:focus {
  border-color: #e96c9d;
  box-shadow: 0 0 0 4px rgba(245, 151, 184, 0.12);
}

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

.modern-contact-form input::placeholder,
.modern-contact-form textarea::placeholder {
  color: #999;
}

.submit-btn {
  width: 100%;
  border: none;
  padding: 15px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f597b8, #cf4d84);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-info {
  padding: 54px 20px;
    background: linear-gradient(135deg, #fff7fa, #fff0f5);
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(207, 77, 132, 0.25);
}

@media (max-width: 768px) {
  .contact-card {
    padding: 28px 20px;
  }

  .contact-us-form-left h2 {
    font-size: 28px;
  }
}




/* product */
/* 
.product-card {
  max-width: 420px;
  margin: 30px auto;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(214, 82, 132, 0.12);
  border: 1px solid rgba(245, 151, 184, 0.18);
  transition: all 0.35s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(214, 82, 132, 0.2);
}

.product-image-box {
  padding: 24px 24px 10px;
}

.product-image-wrap {
  background: linear-gradient(135deg, #fff3f7, #fde7ef);
  min-height: 340px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  position: relative;
  overflow: hidden;
}

.product-image-wrap::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(245, 151, 184, 0.18);
  border-radius: 50%;
  top: -30px;
  right: -30px;
  filter: blur(10px);
}

.product-image-wrap::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: rgba(207, 77, 132, 0.12);
  border-radius: 50%;
  bottom: -20px;
  left: -20px;
  filter: blur(12px);
}

.product-image {
  max-width: 100%;
  width: 290px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-content {
  padding: 10px 24px 28px;
  text-align: center;
}

.product-title {
  font-size: 28px;
  font-weight: 700;
  color: #1e1e24;
  margin: 10px 0 18px;
  line-height: 1.3;
}

.product-specs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-specs li {
  background: #fff8fb;
  border: 1px solid rgba(245, 151, 184, 0.15);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  text-align: left;
  transition: all 0.3s ease;
}

.product-specs li:hover {
  background: #fff1f6;
  transform: translateX(4px);
}

.product-specs li span {
  font-weight: 700;
  color: #c94781;
  display: inline-block;
  margin-right: 4px;
}

.product-btn-wrap {
  margin-top: 24px;
}

.read-more-btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f597b8, #cf4d84);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 8px 18px rgba(207, 77, 132, 0.22);
}

.read-more-btn:hover {
  background: linear-gradient(135deg, #cf4d84, #b93870);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(207, 77, 132, 0.3);
} */


/* Product Detail Section */

  .product-detail-section {
      padding: 60px 20px;
    }

    .container {
      max-width: 1200px;
      margin: auto;
    }

    .product-detail-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      background: #fff;
      border-radius: 28px;
      padding: 35px;
      box-shadow: 0 15px 40px rgba(207, 77, 132, 0.12);
      border: 1px solid rgba(245, 151, 184, 0.16);
    }

    .product-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-image {
  background: linear-gradient(135deg, #fff3f7, #fde7ef);
  border-radius: 24px;
  padding: 30px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(207, 77, 132, 0.1);
}

.main-image img {
  max-width: 100%;
  width: 350px;
  transition: transform 0.3s ease;
}

.main-image img:hover {
  transform: scale(1.05);
}

/* Thumbnail */
.thumbnail-list {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.thumbnail-list img {
  width: 80px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumbnail-list img:hover {
  transform: scale(1.05);
  border-color: #f597b8;
}

.thumbnail-list img.active {
  border-color: #cf4d84;
  box-shadow: 0 6px 12px rgba(207, 77, 132, 0.2);
}

    .product-info {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .product-badge {
      display: inline-block;
      background: linear-gradient(135deg, #f597b8, #cf4d84);
      color: #fff;
      padding: 8px 18px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 18px;
      width: fit-content;
    }

    .product-title {
      font-size: 42px;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 16px;
      color: #1d1d25;
    }

    .product-description {
      font-size: 16px;
      line-height: 1.8;
      color: #555;
      margin-bottom: 24px;
    }

    .spec-list {
      list-style: none;
      margin-bottom: 28px;
         background: #fff8fb;
      border: 1px solid rgba(245, 151, 184, 0.16);
      padding: 14px 16px;
      border-radius: 16px;
      margin-bottom: 12px;
    }

    .spec-list li {
    border-bottom: 1px solid #000;
      font-size: 15px;
      padding: 4px 6px;
      line-height: 1.7;
      color: #444;
    }

    .spec-list li strong {
      color: #c94781;
    }

    .product-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 10px;
    }

    .btn-primary,
    .btn-secondary {
      display: inline-block;
      text-decoration: none;
      padding: 14px 28px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 700;
      transition: all 0.3s ease;
    }

    .btn-primary {
      background: linear-gradient(135deg, #f597b8, #cf4d84);
      color: #fff;
      box-shadow: 0 10px 22px rgba(207, 77, 132, 0.22);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 26px rgba(207, 77, 132, 0.28);
    }

    .btn-secondary {
      border: 2px solid #cf4d84;
      color: #cf4d84;
      background: #fff;
    }

    .btn-secondary:hover {
      background: #cf4d84;
      color: #fff;
      transform: translateY(-2px);
    }

    .product-extra-info {
      margin-top: 50px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .info-box {
      background: #fff;
      border-radius: 22px;
      padding: 24px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(245, 151, 184, 0.12);
    }

    .info-box h3 {
      font-size: 21px;
      color: #1f1f25;
      margin-bottom: 14px;
    }

    .info-box p,
    .info-box li {
      color: #555;
      font-size: 15px;
      line-height: 1.8;
    }

    .info-box ul {
      padding-left: 18px;
    }

    .info-box ul li {
      margin-bottom: 8px;
    }

    @media (max-width: 991px) {
      .product-detail-card {
        grid-template-columns: 1fr;
      }

      .product-gallery {
        min-height: 360px;
      }

      .product-title {
        font-size: 34px;
      }

      .product-extra-info {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 576px) {
      .product-detail-section {
        padding: 35px 15px;
      }

      .product-detail-card {
        padding: 20px;
        gap: 24px;
      }

      .product-title {
        font-size: 28px;
      }

      .product-description {
        font-size: 14px;
      }

      .spec-list li {
        font-size: 14px;
      }

      .btn-primary,
      .btn-secondary {
        width: 100%;
        text-align: center;
      }

      .product-gallery img {
        width: 260px;
      }
    }


  .contact-modal {
  border-radius: 24px;
  border: none;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(207, 77, 132, 0.25);
  animation: modalFadeIn 0.4s ease;
}

/* Header */
.modal-header {
  border-bottom: none;
  padding: 20px 25px;
  background: linear-gradient(135deg, #f597b8, #cf4d84);
  color: #fff;
}

.modal-title {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.btn-close {
  filter: invert(1);
  opacity: 0.8;
}

/* Body */
.modal-body {
  padding: 25px;
}

/* Labels */
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
}

/* Inputs */
.form-control {
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid #eee;
  background: #fafafa;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* Focus Effect */
.form-control:focus {
  border-color: #f597b8;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(245, 151, 184, 0.18);
}

/* Placeholder */
.form-control::placeholder {
  color: #aaa;
}

/* Submit Button */
.btn-submit {
  background: linear-gradient(135deg, #f597b8, #cf4d84);
  color: #fff;
  padding: 14px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

/* Hover Effect */
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(207, 77, 132, 0.35);
  background: linear-gradient(135deg, #cf4d84, #b93870);
}

/* Input spacing */
.mb-3 {
  margin-bottom: 16px !important;
}

/* Animation */
@keyframes modalFadeIn {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Backdrop blur effect */
.modal-backdrop.show {
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 576px) {
  .modal-dialog {
    margin: 10px;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-title {
    font-size: 18px;
  }
}

.spec-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 18px;
}

.spec-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid rgba(245, 151, 184, 0.22);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(207, 77, 132, 0.08);
}

.spec-table th,
.spec-table td {
  border: 1px solid rgba(245, 151, 184, 0.18);
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.7;
}

.spec-table th {
  width: 220px;
  background: linear-gradient(135deg, #fff4f8, #fdebf2);
  color: #c94781;
  font-weight: 700;
  white-space: nowrap;
}

.spec-table td {
  background: #ffffff;
  color: #444;
}

.spec-table tr:hover td,
.spec-table tr:hover th {
  background: #fff8fb;
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .spec-table {
    min-width: 100%;
  }

  .spec-table th,
  .spec-table td {
    padding: 12px 14px;
    font-size: 14px;
  }

  .spec-table th {
    width: 140px;
  }
}

/* 
.about {
  padding: 100px 0;
}

.about .image-block {
  position: relative;
  padding: 20px;
}

.about .image-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 65%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 16px;
  z-index: 0;
}

.about .image-block img {
  position: relative;
  z-index: 1;
  border-radius: 16px;
}

.about .image-block .experience-badge {
  position: absolute;
  bottom: -10px;
  left: 30px;
  z-index: 2;
  background-color: var(--accent-color);
  border-radius: 10px;
  padding: 18px 24px;
  max-width: 300px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

@media (max-width: 992px) {
  .about .image-block .experience-badge {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 20px;
    max-width: none;
  }
}

.about .image-block .experience-badge .badge-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--contrast-color);
}

.about .image-block .experience-badge .badge-inner i {
  font-size: 28px;
  flex-shrink: 0;
}

.about .image-block .experience-badge .badge-inner strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.about .image-block .experience-badge .badge-inner span {
  font-size: 13px;
  opacity: 0.85;
}

.about .info-panel .overline {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 16px;
  position: relative;
  padding-left: 40px;
}

.about .info-panel .overline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 2px;
  background-color: var(--accent-color);
}

.about .info-panel h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .about .info-panel h2 {
    font-size: 28px;
  }
}

.about .info-panel .intro {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 20px;
  font-weight: 400;
}

.about .info-panel .text-content p {
  font-size: 15px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 16px;
}

.about .counter-row {
  margin-top: 40px;
  margin-bottom: 40px;
}

.about .counter-row .counter-card {
  padding: 20px;
  border-left: 3px solid var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  border-radius: 0 8px 8px 0;
  transition: transform 0.3s ease;
}

.about .counter-row .counter-card:hover {
  transform: translateY(-3px);
}

.about .counter-row .counter-card .count {
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  font-family: var(--heading-font);
}

.about .counter-row .counter-card .count-suffix {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.about .counter-row .counter-card p {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 8px 0 0 0;
}

.about .discover-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about .discover-btn i {
  transition: transform 0.3s ease;
}

.about .discover-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.about .discover-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .about .info-panel {
    margin-bottom: 50px;
  }

  .about .counter-row {
    margin-top: 30px;
    margin-bottom: 30px;
  }
} */

/* new about */

/* VIDEO BACKGROUND */
#vedio {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* SECTION BASE */
.about.section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

/* DARK PINK GRADIENT OVERLAY */
.about.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    110deg,
    rgba(18, 5, 25, 0.95) 0%,
    rgba(70, 10, 60, 0.85) 35%,
    rgba(190, 24, 93, 0.65) 60%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

/* CONTENT ABOVE VIDEO */
.about .container {
  position: relative;
  z-index: 3;
}

/* IMAGE BLOCK STYLING */
.image-block {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.image-block img {
  width: 100%;
  border-radius: 20px;
}

/* EXPERIENCE BADGE */
.experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
}

/* TEXT PANEL */
.info-panel {
  padding-left: 40px;
}

.overline {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f472b6;
  font-weight: 600;
}

.info-panel h2 {
  font-size: 44px;
  font-weight: 800;
  margin: 15px 0;
  line-height: 1.2;
}

.intro {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

.text-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}

/* COUNTER CARD */
.counter-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
}

.counter-card .count {
  font-size: 28px;
  font-weight: 700;
}

.counter-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* BUTTON */
.discover-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  padding: 12px 26px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ec4899, #9333ea);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.discover-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(236,72,153,0.4);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .info-panel {
    padding-left: 0;
    margin-top: 30px;
    text-align: center;
  }

  .about.section::before {
    background: linear-gradient(
      180deg,
      rgba(18, 5, 25, 0.95) 0%,
      rgba(190, 24, 93, 0.65) 100%
    );
  }

  .info-panel h2 {
    font-size: 30px;
  }
}
/* Services Section 
 */

  .product-section {
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title h2 {
      font-size: 40px;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 12px;
    }

 

    .product-row {
      margin-bottom: 40px;
      align-items: center;
    }

    .product-badge {
      display: inline-block;
      padding: 8px 18px;
      border-radius: 30px;
      background: linear-gradient(90deg, #c94781, #cf4d84);
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 18px;
      letter-spacing: 0.5px;
    }

    .product-card h3 {
      font-size: 32px;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 18px;
      position: relative;
      z-index: 1;
    }

    .product-card p {
      font-size: 16px;
      line-height: 1.8;
      color: #000000;
      margin-bottom: 0;
      text-align: justify;
      position: relative;
      z-index: 1;
    }

    .product-image {
      position: relative;
    }

    .product-image .image-box {
     
      border-radius: 28px;
      transition: all 0.35s ease;
    }

    .product-image .image-box:hover {
      transform: scale(1.02);
      box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
    }

    .product-image img {
      width: 100%;
      border-radius: 22px;
      object-fit: cover;
      min-height: 320px;
      max-height: 420px;
      display: block;
    }

    .zigzag-reverse .text-col {
      order: 2;
    }

    .zigzag-reverse .image-col {
      order: 1;
    }

    @media (max-width: 991px) {
      .product-card {
        padding: 28px;
      }

      .product-card h3 {
        font-size: 26px;
      }

      .zigzag-reverse .text-col,
      .zigzag-reverse .image-col {
        order: unset;
      }

      .product-image {
        margin-top: 20px;
      }
    }

    @media (max-width: 576px) {
      .section-title h2 {
        font-size: 30px;
      }

      .product-card h3 {
        font-size: 22px;
      }

      .product-card p {
        font-size: 15px;
      }

      .product-image img {
        min-height: 240px;
      }
    }


    .product-row {    background: #ffffff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
    height: auto;
    transition: all 0.35s ease;
    border: 1px solid rgba(148, 163, 184, 0.15);}

        .product-row::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(14, 165, 233, 0.06));
    border-radius: 50%;
    top: -70px;
    right: -70px;
}


/* happy customer */
.stats {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, #ffd1e8 0%, #fff 100%);
}

.stats .stats-item {
  position: relative;
  height: 100%;
  padding: 32px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(236, 72, 153, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  align-items: center;
  gap: 18px;
}

.stats .stats-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.08) 0%,
    rgba(168, 85, 247, 0.06) 50%,
    rgba(59, 130, 246, 0.05) 100%
  );
  z-index: 0;
}

.stats .stats-item::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  top: -40px;
  right: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.14), transparent 70%);
  z-index: 0;
}

.stats .stats-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
  border-color: rgba(236, 72, 153, 0.18);
}

.stats .stats-item i {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  margin-right: 0;
  color: #fff!important;
  background: linear-gradient(135deg, #ec4899, #9333ea);
  box-shadow: 0 12px 25px rgba(236, 72, 153, 0.28);
}

.stats .stats-content {
  position: relative;
  z-index: 1;
}

.stats .stats-item span {
  color: #111827;
  font-size: 38px;
  line-height: 1.1;
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.6;
}

/* optional small label style */
.stats .stats-item .sub-text {
  font-size: 13px;
  color: #9ca3af;
  margin-top: 4px;
  display: block;
}

/* responsive */
@media (max-width: 991px) {
  .stats {
    padding: 60px 0;
  }

  .stats .stats-item {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .stats .stats-item i {
    width: 62px;
    height: 62px;
    min-width: 62px;
    font-size: 26px;
    border-radius: 18px;
  }

  .stats .stats-item span {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .stats .stats-item {
    padding: 20px 16px;
    gap: 14px;
    border-radius: 18px;
  }

  .stats .stats-item i {
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 22px;
    border-radius: 16px;
  }

  .stats .stats-item span {
    font-size: 28px;
  }

  .stats .stats-item p {
    font-size: 14px;
  }
}



/* MAIN WRAPPER */
.swiper {
  position: relative;
}

/* ARROWS COMMON STYLE */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  bottom: 20px;   /* 👈 bottom me shift */
  top: auto;      /* remove center */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transform: none;
  transition: 0.3s ease;
}

/* CENTER ALIGN */
.swiper-button-prev {
  left: 50%;
  transform: translateX(-120%); /* left side */
}

.swiper-button-next {
  left: 50%;
  transform: translateX(20%); /* right side */
}

/* REMOVE DEFAULT ICON */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

/* ICON STYLE */
.swiper-button-prev i,
.swiper-button-next i {
  font-size: 20px;
  color: #fff;
}

/* HOVER EFFECT */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: linear-gradient(135deg, #ec4899, #9333ea);
  transform: scale(1.1) translateX(-120%);
}

.swiper-button-next:hover {
  transform: scale(1.1) translateX(20%);
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
    bottom: 10px;
  }

  .swiper-button-prev i,
  .swiper-button-next i {
    font-size: 16px;
  }
}

/* client slider */

.clients {
  padding: 60px 0;
  background: #f8f8fb;
  position: relative;
}

.clients .clients-carousel {
  position: relative;
}

.clients .item {
  padding: 10px 6px;
}

.clients .client-card {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  height: 100px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid #f2f2f2;
}

.clients .client-card img {
  max-width: 100%;
  max-height: 95px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.clients .client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.clients .client-card:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* Owl dots */
.clients .owl-dots {
  margin-top: 20px;
  text-align: center;
}

.clients .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px;
  background: #d8d8d8;
  display: block;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.clients .owl-dots .owl-dot.active span {
  width: 28px;
  border-radius: 20px;
  background: #ec4899;
}

/* Owl nav top right */
.clients .owl-nav {
  position: absolute;
  top: -70px;
  right: 0;
  display: flex;
  gap: 10px;
}

.clients .owl-nav button.owl-prev,
.clients .owl-nav button.owl-next {
  width: 42px;
  height: 42px;
  border-radius: 10px !important;
  background: rgba(0, 0, 0, 0.75) !important;
  color: #fff !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.clients .owl-nav button.owl-prev:hover,
.clients .owl-nav button.owl-next:hover {
  background: linear-gradient(135deg, #ec4899, #9333ea) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(236, 72, 153, 0.25);
}

.clients .owl-nav button.owl-prev i,
.clients .owl-nav button.owl-next i {
  font-size: 18px;
  line-height: 1;
}

.clients .owl-nav button span {
  display: none;
}

@media (max-width: 991px) {
  .clients .client-card {
    height: 90px;
  }

  .clients .client-card img {
    max-height: 42px;
  }
}

@media (max-width: 767px) {
  .clients {
    padding: 50px 0;
  }

  .clients .owl-nav {
    top: -55px;
  }

  .clients .owl-nav button.owl-prev,
  .clients .owl-nav button.owl-next {
    width: 36px;
    height: 36px;
  }

  .clients .owl-nav button.owl-prev i,
  .clients .owl-nav button.owl-next i {
    font-size: 15px;
  }

  .clients .client-card {
    height: 80px;
    padding: 8px;
  }

  .clients .client-card img {
    max-height: 36px;
  }
}

/* hover */
.clients .client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.clients .client-card:hover img {
  opacity: 1;
  
  transform: scale(1.05);
}

.clients .swiper-pagination {
  margin-top: 24px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background: #d9d9df;
  transition: 0.3s ease;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 20px;
  background: #ec4899;
}

/* responsive */
@media (max-width: 991px) {
  .clients .client-card {
    height: 95px;
    padding: 12px 14px;
  }

  .clients .swiper-slide img {
    max-height: 45px;
  }
}

@media (max-width: 576px) {
  .clients .client-card {
    height: 85px;
    border-radius: 12px;
    padding: 10px 12px;
  }

  .clients .swiper-slide img {
    max-height: 38px;
  }
}



/* partner */


.partners {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, #fff7fb 0%, #fff 55%, #fff4fa 100%);
  overflow: hidden;
}

.partners::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.12), transparent 70%);
  pointer-events: none;
}

.partners::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.10), transparent 70%);
  pointer-events: none;
}

.partners .container-fluid {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.partners .head {
  text-align: center;
  margin-bottom: 40px;
}

.partners .head h2 {
  margin: 0 0 10px;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.5px;
}

.partners .head p {
  margin: 0;
  font-size: 16px;
  color: #6b7280;
  font-weight: 500;
}

/* logo grid / flex layout */
.partners .marquee {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

/* logo card */
.partners .image-box {
  background: #ffffff;
  border-radius: 18px;
  min-height: 110px;
  padding: 18px;
  border: 1px solid rgba(236, 72, 153, 0.08);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.partners .image-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.04) 0%,
    rgba(255, 255, 255, 0) 45%,
    rgba(147, 51, 234, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.partners .image-box a {
  width: 100%;
  height: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.partners .image-box img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 0.78;
  transition: all 0.35s ease;
}

/* hover */
.partners .image-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(236, 72, 153, 0.14);
  border-color: rgba(236, 72, 153, 0.18);
}

.partners .image-box:hover::before {
  opacity: 1;
}

.partners .image-box:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.06);
}

/* responsive */
@media (max-width: 1199px) {
  .partners .marquee {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .partners {
    padding: 65px 0;
  }

  .partners .head h2 {
    font-size: 34px;
  }

  .partners .marquee {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .partners .image-box {
    min-height: 100px;
    padding: 16px;
  }

  .partners .image-box img {
    max-height: 46px;
  }
}

@media (max-width: 767px) {
  .partners .container-fluid {
    padding: 0 16px;
  }

  .partners .head {
    margin-bottom: 28px;
  }

  .partners .head h2 {
    font-size: 28px;
  }

  .partners .head p {
    font-size: 14px;
  }

  .partners .marquee {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .partners .image-box {
    min-height: 88px;
    padding: 14px;
    border-radius: 14px;
  }

  .partners .image-box img {
    max-height: 38px;
  }
}


/* our partner */




.industry-sector {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.section-heading .subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #c94781;
  background: rgb(248 156 190 / 23%);
  padding: 8px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0;
  line-height: 1.2;
}

.section-text {
  font-size: 16px;
  line-height: 1.8;
  color: #5b6475;
}

.sector-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
  transition: all 0.35s ease;
  border: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.sector-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.04), rgba(0, 0, 0, 0));
  opacity: 0;
  transition: 0.35s ease;
}

.sector-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

.sector-card:hover::before {
  opacity: 1;
}

.sector-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.sector-number {
  font-size: 15px;
  font-weight: 700;
  color: #c94781;
  background: rgb(248 156 190 / 23%);
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sector-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #f89cbe;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.sector-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.sector-card p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #5b6475;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.sector-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  color: #c94781;
  position: relative;
  z-index: 1;
  transition: 0.3s ease;
}

.sector-link:hover {
  color: #c94781;
}

.sector-link i {
  transition: transform 0.3s ease;
}

.sector-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 991.98px) {
  .section-heading h2 {
    font-size: 30px;
  }
}

@media (max-width: 767.98px) {
  .sector-card {
    padding: 24px;
    border-radius: 20px;
  }

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

  .sector-card h3 {
    font-size: 21px;
  }
}

/* service */

.services .service-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 32px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.services .service-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 85%);
}

.services .service-card:hover .service-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.services .service-card:hover .service-link {
  color: var(--accent-color);
}

.services .service-card:hover .service-link i {
  transform: translateX(4px);
}

.services .service-icon {
  width: 64px;
  height: 64px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.services .service-icon i {
  font-size: 24px;
}

.services h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}

.services p {
  flex: 1;
  margin-bottom: 24px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-link {
  display: flex;
  align-items: center;
  font-weight: 500;
  text-decoration: none;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.services .service-link i {
  margin-left: 8px;
  font-size: 14px;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .services .service-card {
    padding: 24px 20px;
  }

  .services .service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }

  .services .service-icon i {
    font-size: 20px;
  }

  .services h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .services p {
    margin-bottom: 20px;
  }
}



.workbox-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #140814 0%, #1f0b22 45%, #2b0f2c 100%);
  position: relative;
  overflow: hidden;
}

.workbox-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.18), transparent 70%);
}

.workbox-section::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.18), transparent 70%);
}

.workbox {
  position: relative;
  width: 100%;
  padding: 28px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
  transition: all 0.35s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.workbox::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(236, 72, 153, 0.08) 0%,
    rgba(147, 51, 234, 0.06) 60%,
    rgba(255, 255, 255, 0.02) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.workbox:hover {
  transform: translateY(-10px);
  border-color: rgba(236, 72, 153, 0.28);
  box-shadow: 0 22px 45px rgba(236, 72, 153, 0.16);
}

.workbox:hover::before {
  opacity: 1;
}

.workbox .icon,
.workbox .heading {
  position: relative;
  z-index: 2;
}

.workbox .icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ec4899, #f89cbe);
  box-shadow: 0 10px 24px rgba(236, 72, 153, 0.3);
  margin-bottom: 18px;
}

.workbox .icon span {
  font-size: 32px;
  line-height: 1;
}

.workbox .heading h3 {
  margin: 0 0 14px;
  color: #000;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
}

.workbox .heading p {
  margin: 0;
  color: #f89cbe;
  font-size: 15px;
  line-height: 1.8;
}

.mt-20 {
  margin-top: 20px;
}

.mt-16 {
  margin-top: 16px;
}

@media (max-width: 991px) {
  .workbox-section {
    padding: 60px 0;
  }

  .workbox {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .workbox .icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .workbox .icon span {
    font-size: 28px;
  }

  .workbox .heading h3 {
    font-size: 21px;
  }
}

@media (max-width: 767px) {
  .workbox .heading h3 {
    font-size: 20px;
  }

  .workbox .heading p {
    font-size: 14px;
    line-height: 1.7;
  }
}



/* out vision & mission */

.vision-mission-section {
  position: relative;
  background: linear-gradient(180deg, #fff7fb 0%, #fff 45%, #fff4fa 100%);
  overflow: hidden;
}

.vision-mission-section::before {
  content: "";
  position: absolute;
  top: -90px;
  left: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.14), transparent 70%);
}

.vision-mission-section::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.12), transparent 70%);
}

.vision-mission-section .container {
  position: relative;
  z-index: 2;
}

.section-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(236, 72, 153, 0.1);
  color: #db2777;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.8;
  color: #6b7280;
  max-width: 760px;
  margin: 0 auto;
}

.vm-card {
  position: relative;
  padding: 35px 30px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(236, 72, 153, 0.08);
  box-shadow: 0 15px 40px rgba(17, 24, 39, 0.08);
  transition: all 0.35s ease;
  overflow: hidden;
}

.vm-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(236, 72, 153, 0.05) 0%,
    rgba(147, 51, 234, 0.03) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(236, 72, 153, 0.14);
  border-color: rgba(236, 72, 153, 0.18);
}

.vm-card:hover::before {
  opacity: 1;
}

.vm-icon,
.vm-card h3,
.vm-card p {
  position: relative;
  z-index: 2;
}

.vm-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ec4899, #f89cbe);
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.28);
  margin-bottom: 22px;
}

.vm-icon span {
  font-size: 30px;
  line-height: 1;
}

.vm-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.vm-card p {
  font-size: 16px;
  line-height: 1.9;
  color: #4b5563;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .section-title {
    font-size: 34px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .vm-card {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .vm-card h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
    line-height: 1.7;
  }

  .vm-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
  }

  .vm-icon span {
    font-size: 26px;
  }

  .vm-card h3 {
    font-size: 22px;
  }

  .vm-card p {
    font-size: 15px;
    line-height: 1.8;
  }
}


.assits-outer {    background-size: cover !important;
    padding: 60px 0px 70px; background: linear-gradient(259.44deg, #ae1651 25.03%, #f89cbe 90.57%); }


    .assits-head h2{color: #fff; font-size: 38px; line-height: 1.2; font-weight: 800; margin-bottom: 14px; letter-spacing: -0.5px;  text-align: center; }

    .assits-head .learn-more {display: inline-block; margin-top: 20px; padding: 10px 22px; background: #fff; color: #c94781; font-weight: 600; border-radius: 50px; text-decoration: none; transition: all}


    .whatsapp-float {
      position: fixed;
      right: 20px;
      bottom: 150px;
      width: 65px;
      height: 65px;
      background: #25d366;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 32px;
      z-index: 9999;
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
      animation: pulseGlow 1.8s infinite;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow:
        0 0 0 10px rgba(37, 211, 102, 0.10),
        0 0 0 20px rgba(37, 211, 102, 0.06),
        0 8px 30px rgba(37, 211, 102, 0.60);
    }

    @keyframes pulseGlow {
      0% {
        transform: scale(1);
        box-shadow:
          0 0 0 0 rgba(37, 211, 102, 0.55),
          0 8px 25px rgba(37, 211, 102, 0.45);
      }
      70% {
        transform: scale(1.08);
        box-shadow:
          0 0 0 18px rgba(37, 211, 102, 0),
          0 8px 30px rgba(37, 211, 102, 0.55);
      }
      100% {
        transform: scale(1);
        box-shadow:
          0 0 0 0 rgba(37, 211, 102, 0),
          0 8px 25px rgba(37, 211, 102, 0.45);
      }
    }

    @media (max-width: 576px) {
      .whatsapp-float {
        width: 58px;
        height: 58px;
        font-size: 28px;
        right: 15px;
        bottom:120px;
      }
    }



@media (max-width: 767px) {
    .navmenu a i, .navmenu a:focus i {
        font-size: 25px;
        line-height: 0;
        margin-left: 5px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        border-radius: 50%;
        transition: 0.3s;
        background-color: #ff4e90;
    }
}


.certificate {
  padding: 70px 0;
  background: #f8f9fc;
}

.certificate .head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 45px;
}

.certificate .head .sub-title {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #0d6efd;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.certificate .head h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.certificate .head p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  align-items: center;
}

.image-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

.image-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

@media (max-width: 991px) {
  .certificate {
    padding: 50px 0;
  }

  .certificate .head h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .certificate .head h2 {
    font-size: 26px;
  }

  .certificate .head p {
    font-size: 15px;
  }

  .certificate-grid {
    gap: 18px;
  }
}














  .career-section {
      padding: 80px 0;
    }

    .heading h2 {
      text-align: center;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .animate-border {
      display: block;
      width: 80px;
      height: 3px;
      background: #f89cbe;
      margin: 0 auto 40px;
      border-radius: 20px;
    }

    .career-wrapper {
          background: #fed2e2;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
      border-radius: 20px;
      overflow: hidden;
    }

    /* LEFT SIDE */
    .career-left {
      background: linear-gradient(135deg, #f89cbe, #ffd6e5);
      color: #fff;
      padding: 60px 40px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .career-left h2 {
      font-size: 48px;
      font-weight: 600;
    }

    .career-left .dots {
      width: 60px;
      height: 5px;
      border-bottom: 3px dotted #fff;
      margin: 20px 0;
    }

    .career-left p {
      font-size: 18px;
      line-height: 1.6;
    }

    /* RIGHT SIDE */
    .career-right {
      padding: 50px;
    }

    .form-label {
      font-weight: 500;
      font-size: 14px;
    }

    .form-control,
    .form-select {
      border-radius: 10px;
      border: 1px solid #ddd;
      padding: 10px 12px;
      transition: 0.3s;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: #f89cbe;
      box-shadow: 0 0 0 0.2rem rgba(248, 156, 190, 0.25);
    }

    .btn-submit {
      background: #f89cbe;
      border: none;
      color: #fff;
      padding: 12px;
      font-weight: 500;
      border-radius: 10px;
      transition: 0.3s;
    }

    .btn-submit:hover {
      background: #e87aa3;
    }

    .form-note {
      font-size: 13px;
      color: #666;
      margin-top: 10px;
      text-align: center;
    }

    @media(max-width: 768px) {
      .career-left {
        text-align: center;
        padding: 40px 20px;
      }

      .career-left h2 {
        font-size: 36px;
      }

      .career-right {
        padding: 30px 20px;
      }
    }
