@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


: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: "Montserrat", sans-serif;
  --nav-font: "Montserrat", sans-serif;
}

:root { 
  --background-color: #ffffff;
  --default-color: #3d4348;
  --heading-color: #38022f;
  --accent-color: #38022f; 
  --surface-color: #ffffff;
  --contrast-color: #ffffff; 
}

:root {
  --nav-color: #313336;
  --nav-hover-color: #38022f; 
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #313336;
  --nav-dropdown-hover-color: #38022f; 
}



.light-background {
  --background-color: #f8fbfc;
  --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: var(--heading-color);
  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: var(--default-color);
  background-color: var(--background-color);
  padding: 2px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
  padding-block: 5px;
}

.header .logo img {
  max-height: 75px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 480px) {
  .header .logo img {
    max-height: 24px;
  }

  .header .logo h1 {
    font-size: 24px;
  }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 12px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.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
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 600;
    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: 12px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 6px;
    z-index: 99;
     box-shadow: 0px 0px 30px rgba(83, 83, 83, 0.1); 
    border: 1px solid #bcbcbc;
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 12px 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 .megamenu {
    position: static;
  }

  .navmenu .megamenu 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 .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@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%);
    transition: all 0.5s ease-in-out;
    box-shadow: none;
  }

  .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;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color) !important;
  background-color: #fff;
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

footer#footer {
    /* border-top: 1px solid #ccc;
    border-radius: 150px 150px 0 0; */
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 10px;
}

.footer .footer-about .logo img {
  max-height: 75px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  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 {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.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 {
  color: var(--default-color);
  display: inline-block;
  line-height: 1;
  font-size: 16px;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
   font-size: 15px !important;
   line-height: 25px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 10px;
  width: 100%;
  background-color: var(--contrsast-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.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;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 55px;
  height: 55px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 4px solid #f1d6f2;
}

.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;
  bottom: 15px;
}

/*--------------------------------------------------------------
# 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 {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 160px 0 40px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
    background-image:linear-gradient(to bottom, rgba(247, 207, 253, 0.921), rgba(250, 229, 255, 0.762),rgb(254, 249, 255), #ffffffc4);
}

.hero .hero-bg{
   width: 100%;
  height: 100%;
    position: absolute;
    top: 0;
}

.hero .hero-bg img {

  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

 /* .hero .hero-bg::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 2;
}  */

/* Glow */
.hero::before,
.hero::after{
  content:'';
  position:absolute;
  width:320px;
  height:320px;
  border-radius:50%;
  filter: blur(90px);
  z-index:1;
}

.hero::before{
  top:-40px;
  left:-40px;
  background: rgb(255 245 253 / 84%)
}

.hero::after{
  bottom:150px;
  right:-140px;
  background:rgba(98, 177, 186, 0.35);
}



.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  color: #38022f;
   margin-block: 25px;
}

.hero h3{
  margin-block: 25px;
font-size: 20px;
line-height: 30px;
  font-weight: 700;
  color: #333;
}

.hero h1 span {
 color: #42004c;
 font-style: italic;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 17px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero .hero-img {
    max-width: 600px;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  padding: 18px 35px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(109, 109, 109, 0.058);
  border: 1px solid var(--accent-color);;
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.button-group{
  gap: 15px;
  align-items: center;
}
.button-group a{
  height: 100%;
}
.button-group .sec-btn{
    background: #ffe9fe;
    color: #38022f;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    border: 1px solid #38022f;

}
.button-group .sec-btn:hover{
 background: #38022f;
    color: #ffe9fe;
}

.whatsapp-badge{
  background:#38022f;
  border-radius:60px;
    padding: 18px 40px;
    color: #fff;
  gap:12px;
  text-decoration:none;
  box-shadow:0 12px 30px rgba(0, 0, 0, 0.058);
  transition:.3s;
}

.whatsapp-badge:hover{
  transform:translateY(-2px);
  color: #fff !important;
}


@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  padding: 40px 0;
  border-top: 1px solid #b88faa;
  border-radius: 60px 60px 0 0;
  height: 100%;
}

.topbanner h2{
  font-size: 45px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1.2;
  margin-bottom: 0px;
}

.featured-services .service-item {
  position: relative;
  padding: 10px;
  padding-top: 25px;
   border: 1px solid #b88faa;
   margin-bottom: 20px;
   border-radius: 15px;
   height: 100%;
  
}

.featured-services .service-item .icon {
  background-color:#fff;
  width: 72px;
  height: 72px;
  position: relative;
  margin-right: 15px;
  padding: 10px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  border-radius: 15px;
   border: 1px solid #b88faa;
 
}

.featured-services .service-item .icon img {
 width: 100%;
 height: 100%;
 object-fit: cover;
  position: relative;
}

.featured-services .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.featured-services .service-item .title a {
  color: var(--heading-color);
}

.featured-services .service-item .title a:hover {
  color: var(--accent-color);
}

.featured-services .service-item .description {
  font-size: 14px;
}

.featured-services .service-item:hover .icon {
  background-color: #fff;
  transform: translateY(-5px);
}

.featured-services .service-item:hover .icon i {
  color: var(--contrast-color);
}





/* ===== FEATURES SECTION ===== */
.features{
  position:relative;
  padding:110px 0;
  background-image: linear-gradient(to right,#1c0117 ,#1a0216,#00111c);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  overflow:hidden;
  z-index: 1;
}

/* Floating Decorative Shapes */
.features::before,
.features::after{
  content:'';
  position:absolute;
  width:420px;
  height:420px;
  background-size:contain;
  background-repeat:no-repeat;
  opacity:.9;
  z-index:-1;
  background-repeat: no-repeat;
  background-size: contain;
}

.features::before{
  top:0px;
  left:0px;
  background-image:url('../img/new-img/wave-1.png');
  
}

.features::after{
  bottom:0px;
  right:0px;
  background-image:url('../img/new-img/wave.png');
  animation-delay:3s;
      background-position: bottom right;
    background-repeat: no-repeat;
}

.features .container{
  position:relative;
  z-index:1;
}

/* Section Title */
.features .section-title h2{
  color:#ffe9fe;
  font-weight:700;
}

.features .section-title p{
  color:#f3c6ef;
  max-width:640px;
  margin:auto;
}

/* Tabs Wrapper */
.features .nav-tabs{
  border:none;
}
/* Tab Button */
.features .nav-link{
  background:transparent;
  border:none;
  border-bottom:2px solid rgba(255,233,254,.25);
  border-radius:0 !important;
  padding:22px 10px;
  display:flex;
  gap:18px;
  align-items:flex-start;
  transition:.35s ease;
  border-bottom: 1px solid #857d86 ;
}

/* Icon */
.features .nav-link i{
  font-size:28px;
  color:#ffe9fe;
  transition:.35s ease;
}



.features .nav-link p{
  font-size:15px;
  color:#f1c6ed;
  margin:0;
}

/* Hover */
.features .nav-link:hover{
  border-bottom-color:#c2b4c1;
}

.features .nav-link:hover i{
  transform:translateY(-3px);
}

/* Active */
.features .nav-link.active{
  border-bottom:1px solid #727272;
}

.features .nav-link.active i{
  color:var(--accent-color);
}

/* Image */
.features .tab-content img{
  border-radius:18px;
}

/* Responsive */
@media(max-width:991px){
  .features .section-title h2{
    font-size:32px;
  }
}

/* Tab Images */
.features .tab-content img{
  border-radius:22px;
  transition:transform .5s ease, box-shadow .5s ease;
  box-shadow:0 0 40px rgba(0,0,0,.45);
}

.features .tab-content img:hover{
  transform:scale(1.02);
  box-shadow:0 0 60px rgba(0,0,0,.6);
}

/* Animation */
@keyframes floatGlow{
  0%,100%{
    transform:translateY(0) scale(1);
    opacity:.35;
  }
  50%{
    transform:translateY(-20px) scale(1.05);
    opacity:.6;
  }
}

/* Responsive */
@media(max-width:991px){
  .features{
    padding:80px 0;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-bottom: 20px;
}

.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .about-images img {
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
   border-left: 1px solid #2b292c;
}

.features .nav-item {
  width: 100%;
  margin-bottom: 15px;
 
}

.features .nav-item:last-child {
  margin-bottom: 0;
}

.features .nav-link {
  color: var(--heading-color);
  border: 0;
  padding: 30px;
  padding-left: 0;
  margin-left: 35px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
  cursor: pointer;
   border-bottom: 1px solid #2b292c;
  
}

.features .nav-link i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  width: 48px;
  height: 48px;
  font-size: 22px;
  flex-shrink: 0;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.features .nav-link h4{
  color:#ffe9fe;
  font-weight:600;
   font-size: 25px;
  line-height: 1.3;
  margin: 0 0 10px 0;
  transition: 0.3s;
}

.features .nav-link p {
  font-size: 15px;
  margin: 0;
}

.features .nav-link:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.features .nav-link.active {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  color: var(--default-color);
}

.features .tab-pane img {
  border-radius: 15px;
}

.tab-content img{
  animation: fadeEffect .4s ease-in-out;
}

@keyframes fadeEffect {
  from {opacity:0; transform:scale(.96);}
  to   {opacity:1; transform:scale(1);}
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  height: 100%;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
}

.services .service-item .icon {
  font-size: 32px;
  border-radius: 10px;
  position: relative;
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.services .service-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  font-weight: 700;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  transition: 0.3s;
  font-size: 14px;
}

.services .service-item .read-more i {
  margin-left: 10px;
}

.services .service-item.item-cyan .icon {
  color: #0dcaf0;
  border: 1px solid #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-orange .icon {
  color: #fd7e14;
  border: 1px solid #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

.services .service-item.item-teal .icon {
  color: #20c997;
  border: 1px solid #20c997;
  background: rgba(32, 201, 151, 0.1);
}

.services .service-item.item-red .icon {
  color: #df1529;
  border: 1px solid #df1529;
  background: rgba(223, 21, 4, 0.1);
}

.services .service-item.item-indigo .icon {
  color: #6610f2;
  border: 1px solid #6610f2;
  background: rgba(102, 16, 242, 0.1);
}

.services .service-item.item-pink .icon {
  color: #f3268c;
  border: 1px solid #f3268c;
  background: rgba(243, 38, 140, 0.1);
}

.services .service-item:hover {
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.services .service-item:hover h3 {
  color: var(--heading-color);
}

.services .service-item:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

/*--------------------------------------------------------------
# More Features Section
--------------------------------------------------------------*/
.more-features .features-image {
  position: relative;
  min-height: 400px;
}

.more-features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.more-features h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.more-features .icon-box {
  margin-top: 30px;
}

.more-features .icon-box i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.more-features .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.more-features .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-title {
  padding-bottom: 20px;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  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 {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
/* ===============================
   PREMIUM LIGHT TESTIMONIALS
   =============================== */

#testimonials{
   background-image: linear-gradient(to right, #1c0117, #1a0216, #00111c);
  position: relative;
 margin-top: 0;
  color:#38022f;
  padding-top: 0;
  padding-bottom: 0;

}
.tes-box{
  background-color: #fefbff;
   padding:110px 0;
  border-radius: 120px 120px 0 0;
}


/* Testimonial item */
#testimonials .testimonial-item{
  max-width:720px;
  margin:0 auto;
  text-align:center;
  background:transparent !important;
  box-shadow:none !important;
  border:none !important;
  padding:0;
  padding-bottom: 50px;
}

/* Stars */
#testimonials .stars{
  margin-bottom:18px;
}

/* Testimonial text */
#testimonials .testimonial-item p{
  font-size:22px;
  line-height:1.7;
  font-weight:300;
  color:#38022f;
  margin-bottom:40px;
}

/* Profile */
#testimonials .profile{
  text-align:center;
}

#testimonials .testimonial-img{
  width:85px;
  height:85px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:10px;
  border:none;
}

#testimonials .testimonial-item h3{
  font-size:18px;
  font-weight:600;
  color:#38022f;
}

#testimonials .testimonial-item h4{
  font-size:14px;
  opacity:.7;
}

/* Swiper dots */
#testimonials .swiper-pagination-bullet{
  background:#38022f;
  opacity:.3;
}

#testimonials .swiper-pagination-bullet-active{
  opacity:1;
}

/* Remove dim effect */
#testimonials .swiper-slide{
  opacity:1 !important;
}

/* ===============================
   Testimonial Profile Fix
   =============================== */

#testimonials .profile,
#testimonials .testimonial-profile{
  text-align:center;
  margin-top:10px;
}

#testimonials .profile img,
#testimonials .testimonial-profile img{
  width:85px;
  height:85px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:10px;
}

#testimonials .profile h3,
#testimonials .testimonial-profile h3{
  font-size:18px;
  font-weight:600;
  color:#38022f;
  margin:0;
}

#testimonials .profile h4,
#testimonials .testimonial-profile h4{
  font-size:14px;
  opacity:.7;
  margin:0;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.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: var(--surface-color);
  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] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 16px;
}

.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;
      line-height: 35px;
}

.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 */
}


/*-New css*/


.service-ticker {
  overflow: hidden;
  padding: 18px 0;
  background: transparent;
  max-width: 75%;
  margin: auto;
  margin-top: 25px;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 35s linear infinite;
}

.pill {
  background: #ffffff;
  color: #3b1b3f;
  border-radius: 40px;
  padding: 10px 22px;
  margin: 0 10px;
  font-weight: 600;
  font-size: 14.5px;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(59, 27, 63, 0.027);
  border: 1px solid rgba(46, 144, 168, 0.25);
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.customer-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #784f7a, #6f8fa1);
  padding: 10px 22px 10px 12px;
  border-radius: 40px;
  width: fit-content;
  box-shadow: 0 12px 30px rgba(59, 27, 63, 0.049);
  margin-top: 50px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  margin-left: -10px;
  object-fit: cover;
}

.avatars img:first-child {
  margin-left: 0;
}

.customer-text {
  color: #ffffff;
  line-height: 1.2;
}

.customer-text strong {
  font-size: 15px;
  font-weight: 600;
}

.rating {
  font-size: 14px;
  opacity: 0.9;
}


.text-box {
    text-align: left;
}




.lead-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #fefbff 0%, #ffffff 100%);
}


.lead-content h2 {
  color: #3b1b3f;
  font-weight: 800;
  margin-bottom: 18px;
  font-size: 50px;
}

.lead-content p {
  color: #6f6b75;
  font-size: 17px;
  margin-bottom: 22px;
  line-height: 1.7;
}

.lead-points {
  list-style: none;
  padding: 0;
}

.lead-points li {
  margin-bottom: 10px;
  color: #6f6b75;
  font-weight: 500;
}

.lead-form {
  background: #eee7ee;
  padding: 40px 36px;
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(59, 27, 63, 0.033);
}

.lead-form h4 {
  color: #3b1b3f;
  margin-bottom: 18px;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 15px 18px;
  margin-bottom: 14px;
  border-radius: 50px;
  border: 1px solid #e0dbdf;
  outline: none;
  background-color:#fffbff;
}

.lead-form textarea {
  resize: none;
  height: 100px;
}

.lead-form button {
  width: 100%;
  padding: 16px 15px;
  border: none;
  background: linear-gradient(135deg, var(--accent-color), #47b5c9);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.lead-form button:hover {
  opacity: 0.9;
}





.lead-counters{
  display:flex;
  gap:20px;
  margin-top:25px;
}


.about-img img{
  border-radius: 15px;
}
.badge-highlight {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: linear-gradient(-40deg, rgba(247, 255, 250, 0.95), rgba(242, 226, 248, 0.85));
    color: #333;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-bottom: 18px;
    border: 1px solid rgb(229, 230, 230);
    font-size: 0.95rem;
}

.about-img{
    position: relative;
}

/* Common Badge */
.trust-badge{
    position: absolute;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    animation: floatMove 4s ease-in-out infinite;
    border: 1px solid #b88faa;
  
}

/* Icons */
.trust-icon{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffe3f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon i{
    font-size: 22px;
    color: var(--accent-color);
}

/* Text */
.trust-text h6{
    margin: 0;
    font-weight: 700;
    font-size: 15px;
}

.trust-text p{
    margin: 0;
    font-size: 12px;
    color: #666;
}

/* Individual Positions */
.badge-one{
    top: 20px;
    left: 20px;
}

.badge-two{
    bottom: 20px;
    left: 20px;
    animation-delay: 1.5s;
}

/* Floating Animation */
@keyframes floatMove{
    0%{ transform: translateY(0); }
    50%{ transform: translateY(-14px); }
    100%{ transform: translateY(0); }
}

/* Responsive */
@media(max-width: 576px){
    .trust-badge{
        padding: 10px 14px;
    }
    .trust-icon{
        width: 38px;
        height: 38px;
    }
    .trust-text h6{ font-size: 13px; }
    .trust-text p{ font-size: 11px; }
}


.herobanner-about {
    position: relative;
}
.e-smooth{
  position: sticky;
  top: -180px;
}


/* =========================
   OUR WORK SECTION
========================= */

.our-work-section{
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  z-index: 1;
  background-color: #2e0126;
  background-image: 
      linear-gradient(rgba(46,1,38,0.85), rgba(46,1,38,0.85)),
      url("../img/new-img/work-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Glow Effects */
.glow{
  position:absolute;
  width:320px;
  height:320px;
  background:radial-gradient(circle, rgba(98, 8, 147, 0.45), transparent 70%);
  filter: blur(70px);
  z-index:-1;
}

.glow-top{ top:-140px; left:-140px; }
.glow-bottom{ bottom:-140px; right:-140px; }

/* Badge */
.work-badge{
  display:inline-block;
  padding:6px 16px;
  border-radius:50px;
  background:rgba(255, 87, 199, .15);
  color:#ffeffa;
  font-size:13px;
  font-weight:600;
  margin-bottom:16px;
  text-align: center;
}

/* Heading */
.work-title{
  color:#ffffff;
  font-size:50px;
  line-height: 1.3;
  font-weight:800;
}

.work-desc{
  color:#f1c6e3;
  max-width:520px;
  margin:10px auto 0;
  font-size:16px;
}

/* Cards */
.work-card{
   position: relative;
  height: auto; /* Card height */
  border-radius: 18px;
  background: rgba(228, 212, 225, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1;
  overflow: hidden;
  transition: all .35s ease;
}

/* Image */
.work-img{
   position: relative;
  height: 550px; /* SAME as card height */
  overflow: hidden;
}

.work-img img{
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 10s ease;
}

.work-card:hover .work-img img{
  transform: translateY(calc(-100% + 550px));
}



/* See All Button */
.see-all-btn{
  display:inline-block;
  padding:14px 35px;
  border-radius:50px;
  background:#ff57c7;
  color:#ffffff;
  font-weight:600;
  text-decoration:none;
  transition:.3s ease;
}

.see-all-btn:hover{
  background:#ff2ab5;
  color: #fff !important;
}

/* Responsive */
@media(max-width: 768px){
  .work-title{ font-size:28px; }
  .work-desc{ font-size:14px; }
}


.process-section{
  padding:100px 0;
  background:#fff9ff;
  position:relative;
  overflow:hidden;
}

/* Glow */
.process-section::before,
.process-section::after{
  content:'';
  position:absolute;
  width:320px;
  height:320px;
  border-radius:50%;
  filter: blur(90px);
  z-index:0;
}

.process-section::before{
  top:-140px;
  left:-140px;
  background:#ffd6f859;
}

.process-section::after{
  bottom:150px;
  right:-140px;
  background:rgb(243 254 255 / 35%);
}

/* Title Area */

.process-title{
  font-size:50px;
  font-weight:800;
  color:var(--accent-color);
  line-height: 1.2;
}

.process-desc{
  max-width:650px;
  margin:10px auto 0;
  color:#4a2345;
}

/* Cards */
.process-card{
  position:relative;
  background:rgba(255,255,255,.55);
  border-radius:22px;
  padding:40px 28px 34px;
  border:1px solid rgba(56,2,47,.15);
  backdrop-filter: blur(14px);
  z-index:1;
  transition:.35s ease;
}

.process-card:hover{
  transform:translateY(-6px);
}

/* Icon */
.process-icon{
  width:60px;
  height:60px;
  border-radius:60px;
  background:rgba(56,2,47,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
}

.process-icon i{
  font-size:24px;
  color:#38022f;
}

/* Text */
.process-card h5{
  font-size:18px;
  font-weight:600;
  color:#38022f;
}

.process-card p{
  font-size:14px;
  color:#4a2345;
  margin-top:6px;
}

/* Number */
.process-number{
  position:absolute;
  top:18px;
  right:18px;
  width:25px;
  height:25px;
  border-radius:25px;
  background:#38022f;
  color:#fff;
  font-size:12px;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:center;
}

ul.points-grow li{
  font-size: 18px !important;
}


.trust-points-wrap{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
  margin-top:40px;
}

.trust-point{
  display:flex;
  gap:14px;
  padding:16px 20px;
  border-radius:16px;
  background:rgba(255,233,254,.6);
  border:1px solid rgba(56,2,47,.18);
  backdrop-filter: blur(10px);
  transition:.35s ease;
}

.trust-point:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 26px rgba(56, 2, 47, 0.071);
}

.trust-point i{
  width:52px;
  height:52px;
  border-radius:50%;
  background:rgba(56, 2, 47, 0.093);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  color:#38022f;
  flex-shrink: 0;
}

.trust-point h5{
  margin:0 0 4px;
  font-size:16px;
  font-weight:600;
  color:#38022f;
}





.trust-point p{
  margin:0;
  font-size:14px;
  color:#4a2345;
  line-height:1.5;
}



.img-trust{
  position:relative;
  display:inline-block;
}

.experience-badge{
  position:absolute;
  right:-35px;
  bottom:50px;
  width:150px;
  height:150px;
  background:var(--accent-color);
  border:10px solid #fff;
  border-radius:10px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  box-shadow:0 0 35px rgba(97, 74, 97, 0.159);
  z-index: 99;
}

.experience-badge h2{
  font-size:48px;
  font-weight:800;
  color:#fff;
  margin:0;
  line-height:1;
}

.experience-badge h2 span{
  font-size:22px;
  font-weight:600;
}

.experience-badge p{
  margin-top:6px;
  font-size:13px;
  letter-spacing:1px;
  color:#fff;
  text-transform:uppercase;
}

.floating-contact{
  position:fixed;
  top:50%;
  right:2px;
  transform:translateY(-50%);
  background:#38022f;
  padding:10px 8px;
  border-radius:50px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:9999;
  box-shadow:0 10px 30px rgba(56,2,47,.35);
}

.fc-item{
 width: 38px;
    height: 38px;
    background: #ffe9fe;
    color: #38022f;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
  transition:.3s ease;
  position:relative;
}

.fc-item:hover{
  background:#fff;
  transform:translateY(-2px) scale(1.08);
}

.fc-item::after{
  content:'';
  position:absolute;
  inset:0;
  border-radius:50%;
  box-shadow:0 0 0 rgba(255,233,254,.7);
  animation:pulse 5s infinite;
}

@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(255,233,254,.7); }
  70%{ box-shadow:0 0 0 14px rgba(255,233,254,0); }
  100%{ box-shadow:0 0 0 0 rgba(255,233,254,0); }
}

/* Mobile adjustment */
@media(max-width:768px){
  .floating-contact{
    right:5px;
  }
}


/*----new design*/
.service-details-page .fixed-top{
  position: sticky !important;
  top: 0;
}


.startup-benefits {
  margin-top: 20px;
}

.startup-benefits h4 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 25px;
}

.benefit-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  border: 1px solid #eee;
  border-radius: 14px;
  background: #fff;
  transition: 0.3s;
}

.benefit-item:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.benefit-item i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
      background: #ffe9fe;
    color: #38022f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.benefit-item h6 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
}

.benefit-item p {
  margin: 0;
  font-size: 13px;
  color: #666;
}


.why-choose-us {
  background: var(--accent-color);
  padding: 80px 0;
  color: #fff;
}

.why-choose-us h2 {
  font-size: 36px;
  font-weight: 800;
      max-width: 720px;
    margin: 0 auto;
  margin-bottom: 10px;
  color: #fff;
}

.why-choose-us p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}

.choose-card {
  background: rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 30px 25px;
  text-align: center;
  height: 100%;
  transition: 0.35s;
  border: 1px solid rgba(255,255,255,0.12);
}

.choose-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.img-why{
  margin-bottom: 18px;
  width: 100%;
  min-height: auto;
}

.choose-card .img-why img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;

}

.choose-card h5 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #fff;
}

.choose-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}


.what-we-offer {
  background: #fff8ff;
  padding: 80px 0;
}

.section-title h3 {
  font-size: 32px;
  font-weight: 800;
  color: #38022f;
   max-width: 700px;
  margin: 0 auto;
    margin-bottom: 10px;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 15px;
  color: #6b3b65;
}


/* OFFER CARD */
.offer-card {
  background: linear-gradient(180deg, #ffffff, #fff6fd);
  border-radius: 22px;
  padding: 26px 22px 32px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid rgba(56,2,47,0.12);
  overflow: hidden;
}

/* soft top accent line */
.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #38022f, #ffe9fe);
}

/* Hover Effect */
.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(56, 2, 47, 0.085);
  border-color: rgba(56,2,47,0.35);
}

/* IMAGE BOX */
.offer-img {
  width: 100%;
  height: 220px;
  margin-bottom: 18px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.offer-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
  transition: transform 0.5s ease;
}

/* TITLE */
.offer-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #38022f;
}

/* DESCRIPTION */
.offer-card p {
  font-size: 14.5px;
  color: #5f3559;
  line-height: 1.7;
  margin: 0;
}





.service-details .services-list a{
  padding-block: 16px;
}
.service-details .help-box{
  border-radius: 16px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #38022f, #1e0019);
  position: relative;
  overflow: hidden;
}

.cta-text {
  color: #f5d9f2;
  font-size: 17px;
}

.cta-btn {
  font-size: 16px;
  font-weight: 600;
}

.cta-btn i {
  font-size: 18px;
}



:root {
  --dark: #38022f;
  --light: #f8f1f8;
}

.contact-section {
  background: #fff;
  padding: 80px 0;
}

/* LEFT SIDE */
.contact-tag {
  color: var(--dark);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.contact-info h2 {
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.icon-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 22px;
}

/* RIGHT FORM */
.contact-form-box {
  background: var(--light);
  padding: 25px;
  border-radius: 5px;
}

.contact-form-box label {
  font-weight: 600;
  margin-bottom: 6px;
}


.contact-form-box label span {
  color: red;
}

.form-control {
  height: 55px;
  border-radius: 50px;
  border: none;
  font-size:15.5px;
    border: 1px solid #cbcbcb !important;
}
.form-control:focus{
  outline: none;
  border-color: var(--accent-color) !important;
  box-shadow: none;

}
textarea.form-control.custom-input {
    border-radius: 20px;
}

textarea.form-control {
  height: auto;
}

.send-btn {
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 16px;
  width: 100%;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 1px;
}




.required {
  color: red;
}

.consultation-btn {
  background: #38022f;
  color: #fff !important;
  font-weight: 600;
}

.consultation-btn:hover {
  background: #43063f;
}


.success { background:#d4edda; color:#155724; padding:15px; margin-bottom:15px; border-radius:5px; }
.error   { background:#f8d7da; color:#721c24; padding:15px; margin-bottom:15px; border-radius:5px; }
/* form div { margin-bottom:12px; } */




.counter-strip{
  padding:70px 0;
  background:linear-gradient(90deg,#38022f,#311742);
  border-radius: 15px;
}

.counter-box h2{
  font-size:60px;
  font-weight:800;
  color:#fff;
}

.counter-box p{
  color:#fff;
  letter-spacing:2px;
  font-size:14px;
  margin-top:10px;
}

.what-we-do-section{
  background:#0f0b1f;
  padding:100px 0;
  color:#fff;
}

/* IMAGE FRAME */
.image-frame{
  position:relative;
  display:inline-block;
  padding:5px;
  background:linear-gradient(135deg,#38022f,#ffe9fe);
  border-radius: 16px;
}

.image-frame img{
  width:100%;
  border-radius:16px;
  display:block;
}

/* RIGHT CONTENT */
.content-box{
  padding-left:30px;
}

.small-title{
  color:#ffe9fe;
  letter-spacing:2px;
  font-size:13px;
}

.content-box h2{
  font-size:42px;
  font-weight:700;
  margin:15px 0 20px;
   color:#ffe9fe;
}

.content-box h4{
  margin-top:20px;
  font-size:22px;
  color:#ffe9fe;
}

/* ICONS */
.tech-icons{
  display:flex;
  gap:15px;
  margin:25px 0;
}

.icon-box-tech{
  width:55px;
  height:55px;
  border:1px solid #ffe9fe;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  color:#ffe9fe;
  font-size:24px;
}

/* BUTTON */
.learn-more-btn{
  display:inline-block;
  margin-top:25px;
  color:#ffe9fe !important;
  text-decoration:none;
  font-weight:600;
}

.learn-more-btn i{
  margin-left:6px;
}



.about-white-section{
  background:#ffffff;
  padding:90px 0;
}

/* LEFT SIDE */
.about-left .small-title{
  color:#38022f;
  font-weight:600;
  letter-spacing:1px;
  font-size:14px;
}

.about-left h2{
  font-size:36px;
  font-weight:700;
  color:#38022f;
  margin:15px 0 20px;
}

.about-left h2 span{
  color:#b0129b;
}

.about-left p{
  color:#555;
  line-height:1.7;
  margin-bottom:15px;
  font-size:16px;
}

.about-btn{
  display:inline-block;
  margin-top:20px;
  padding:12px 32px;
  background:#38022f;
  color:#ffe9fe;
  border-radius:50px;
  text-decoration:none;
  transition:0.3s;
}

.about-btn:hover{
  background:#b0129b;
  color:#fff;
}

/* RIGHT SIDE */
.about-right{
  height: 100%;
}

.about-card{
  background:#ffe9fe;
  padding:25px;
  border-radius:14px;
  transition:0.3s;
  border:1px solid rgba(56, 2, 47, 0.167);
  height: 100%;

}

.about-card h5{
  color:#38022f;
  font-weight:600;
  margin-bottom:10px;
}

.about-card p{
  color:#444;
  font-size:15px;
  line-height:1.6;
}

.about-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 25px rgba(56, 2, 47, 0.11);
}

/* MOBILE */
@media(max-width:768px){
  .about-left h2{
    font-size:28px;
  }

  .about-right{
    grid-template-columns:1fr;
  }
}




.about-big-img img{
  border-radius: 16px;
}


/* PORTFOLIO PAGE SECTION */

.portfolio-page-section{
  padding:90px 0;
  background:#ffffff;
}

.portfolio-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#ffe9fe;
  color:#38022f;
  padding:8px 18px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  margin-bottom:15px;
}

.portfolio-title{
  color:var(--accent-color);
  font-size:40px;
  font-weight:700;
  margin-bottom:12px;
}

.portfolio-desc{
  color:#333;
  max-width:650px;
  margin:0 auto;
  font-size:16px;
}

.portfolio-page-section .work-card{
  border-radius:18px;
  overflow:hidden;
  background:#1a031a;
  border:1px solid rgba(255,255,255,0.08);
}

.portfolio-page-section .work-img{
  height: 520px;
}

.work-card:hover{
  transform:translateY(-8px);
  box-shadow:0 0 25px rgba(255,233,254,0.35);
}


/* Responsive */

@media(max-width:768px){
  .portfolio-title{
    font-size:28px;
  }
}


.cta-section{
  position: relative;
  background: url("../img/new-img/work-bg.jpg") center/cover no-repeat;
  padding: 120px 20px;
  overflow: hidden;
}

.cta-overlay{
  position:absolute;
  inset:0;
  background: rgba(56,2,47,0.85); /* #38022f overlay */
}

.cta-section .container{
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.cta-tagline{
  color:#ffe9fe;
  letter-spacing:1px;
  font-weight:500;
  display:block;
  margin-bottom:15px;
}

.cta-title{
  font-size:48px;
  font-weight:800;
  color:#fff;
  margin-bottom:20px;
}

.cta-desc{
  color:#f5d9f3;
  font-size:18px;
  line-height:1.7;
  margin-bottom:35px;
}

.cta-btn{
  background:#ffe9fe;
  color:#38022f;
  padding:14px 40px;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s ease;
  display:inline-block;
}

.cta-btn:hover{
  background:#ffffff;
  transform:translateY(-3px);
}




.service-details .services-img {
    border-radius: 12px;
}


.contact-after-section{
  background: #ffe9fe;
  padding: 90px 0;
}

.after-badge{
  display:inline-block;
  background:#38022f;
  color:#fff;
  padding:6px 18px;
  border-radius:30px;
  font-size:14px;
  margin-bottom:12px;
}

.contact-after-section h2{
  font-size:34px;
  font-weight:700;
  color:#38022f;
  margin-bottom:18px;
}

.contact-after-section p{
  font-size:15px;
  color:#444;
  line-height:26px;
}

.after-list{
  list-style:none;
  padding:0;
  margin-top:20px;
}

.after-list li{
  margin-bottom:12px;
  font-size:15px;
  color:#222;
}

.after-list i{
  color:#38022f;
  margin-right:8px;
}

/* Cards */

.after-card{
  background:#fff;
  padding:30px 25px;
  border-radius:14px;
  text-align:center;
  height:100%;
  transition:.3s;
  box-shadow:0 10px 30px rgba(85, 85, 85, 0.05);
  border: 1px solid #ccc;
}

.after-card i{
  width:50px;
  height:50px;
  background:#ffe9fe;
  color:#38022f;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:22px;
  margin-bottom:15px;
}

.after-card h5{
  font-size:18px;
  font-weight:600;
  margin-bottom:10px;
  color:#38022f;
}

.after-card p{
  font-size:14px;
  color:#555;
}

.after-card:hover{
  transform:translateY(-6px);
}


/*---new contact*/


.toast-success,
.toast-error{
  position:fixed;
  bottom:20px;
  right:20px;
  padding:10px 16px;
  border-radius:15px;
  font-size:14px;
  width:auto;
  display:inline-block;
  z-index:9999;
  box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.toast-success{
  background:#d1e7dd;
  color:#0f5132;
  border: 1px solid;
}

.toast-error{
  background:#f8d7da;
  color:#842029;
    border: 1px solid;
}


section.business-benefits-section {
    border-bottom: 1px solid #ded1de;
}


/* Responsive */

@media(max-width:991px){
#service-details .row.gy-5 {
    flex-direction: column-reverse;
}

}

@media(max-width:820px){
  .cta-title{
    font-size:34px;
  }
  .featured-services {
    padding: 20px 0;
    border-radius: 50px 50px 0 0;
    }
    .e-smooth {
    position: relative;
    top: 0px;
}
 .lead-content h2,.topbanner h2 ,.process-title,.startup-benefits h4{
    font-size: 32px;
}
    .hero h1 {
        font-size: 38px;
        line-height: 1.4;
        font-weight: 900;
    }
        .hero p {
        font-size: 17px;
        line-height: 27px;
        }
}

@media(max-width:620px){
.button-group {
    gap: 10px;
    flex-direction: column;
}
    .hero p {
        font-size: 16px;
    }
    .button-group a {
    width: 270px;
}
.whatsapp-badge {
    padding: 20px 40px;
}
}

@media(max-width:520px){

.e-smooth {
    position: relative;
    top: 0px;
}

    .hero p {
        font-size: 16px;
        line-height: 28px;
    }
    .hero::before {
    background: rgb(255 233 251 / 84%);
}
    .header .logo img {
        max-height: 65px;
    }
    .header {
    padding: 8px 0;
    }
    .featured-services {
    padding: 20px 0;
    border-radius: 50px 50px 0 0;
    }
    .tes-box {
    padding: 20px 0;
    border-radius: 10px 10px 0 0;
    }
    .lead-section {
    padding: 50px 0;
    }
    .lead-content h2,.topbanner h2 ,.process-title,.startup-benefits h4{
    font-size: 27px;
}
.floating-contact{
 display: none;
}
.lead-content {
    padding-bottom: 32px;
}
.process-section::before {
    background: rgb(146 29 126 / 8%);
}
.experience-badge {
    position: absolute;
    right: 7px;
    bottom: 8px;
}
.process-title {
    line-height: 1.4;
}

#testimonials .testimonial-item p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.features::before, .features::after {
    opacity: .3;
}
.features .nav-link {
    margin-left: 9px;
    gap: 5px;
}
.contact-form-box {
    padding: 15px;
}
.form-control {
    height: 50px;
}

    .hero .btn-get-started, .hero .btn-watch-video {
        font-size: 16px;
    }
        .hero h1 {
        font-size: 32px;
        line-height: 44px;
    }
    .section-title h3,.why-choose-us h2 {
    font-size: 24px;
    line-height: 1.4;
    }
}


div#captchaMsg {
    color: red;
}



/* HOW WE WORK SECTION */
.how-we-work {
  padding: 80px 0;
  background: #fffbff;
}

.section-heading h2 {
  color: #38022f;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-heading p {
  max-width: 650px;
  margin: auto;
  color: #555;
}

/* Cards */
.how-we-work .work-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  height: 100%;
  transition: 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.016);
  margin-top: 15px;
  border: 1px solid #ccc;
}

.how-we-work .work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

/* Icon Circle */
.work-icon {
  width: 70px;
  height: 70px;
  background: #38022f;
  color: #ffe9fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.how-we-work .work-card h5 {
  color: #38022f;
  font-weight: 600;
  margin-bottom: 10px;
}

.how-we-work .work-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}


.service-page {
    border-radius: 0;
}

.side-service{
    position: sticky;
    top: 120px;
}




.process-section-about{
  background:#fff;
  padding:80px 20px;
}

.process-tag{
  color:#38022f;
  font-weight:600;
  letter-spacing:1px;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.process-tag .line{
  width:40px;
  height:2px;
  background:#38022f;
}

.process-title{
  margin-top:15px;
  font-size:38px !important;
  font-weight:700 !important;
  color:#38022f;
}

.process-wrapper{
  margin-top:60px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.process-box{
  max-width:260px;
  text-align:center;
}

.circle{
  width:90px;
  height:90px;
  border:3px solid #e3c9df;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  font-weight:700;
  color:#38022f;
  margin:0 auto 15px;
  background:#ffe9fe;
}

.process-box h5{
  color:#38022f;
  font-size:18px;
  margin-bottom:8px;
  font-weight: 700;
}

.process-box p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}

.arrow{
  font-size:30px;
  color:#38022f;
  margin-top:30px;
}

/* Responsive */
@media(max-width:768px){
  .process-wrapper{
    flex-direction:column;
  }
  .arrow{
    display:none;
  }
}


/*---------21-02-2026---*/



.hero-about {
  background: #fff;
  padding-bottom: 100px !important;
}

.top-line {
  color: #ff4a17;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 15px;
}

.main-heading {
  font-size: 42px;
  font-weight: 700;
  color: #0b1c39;
  margin-bottom: 20px;
  line-height: 1.2;
}

.description {
  color: #6c757d;
  line-height: 1.7;
  font-size: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 22px;
  font-weight: 500;
}



.btn-explore {
  background: #38022f;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #38022f;
}

.btn-explore:hover {
  background: transparent;
  color: #38022f;
}

.contact-box span {
  display: block;
  font-size: 14px;
  color: #6c757d;
}

.contact-box strong {
  font-size: 18px;
  color: #0b1c39;
}

/* IMAGE STYLE */
.image-main {
  width: 100%;
}

.image-overlay {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 56%;
  border: 8px solid #fff;
  border-radius: 20px;
}

.experience-box {
  position: absolute;
  bottom: -40px;
  left: -20px;
  background: #fff;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}

.experience-box h2 {
  font-size: 36px;
  color: #0b1c39;
  margin: 0;
  font-weight: 800;
}

.experience-box span {
  color: #38022f; 
}

.hero-about .feature-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 0px;
    font-weight: 500;
    display: flex;
    gap: 5px;
    color:#4a2345;
}

.hero-about .feature-list li i{
   color: #38022f; 
}

@media(max-width:920px){
.process-title {
    font-size: 30px !important;
}
}
    
@media(max-width:620px){
.process-title {
    font-size: 25px !important;
    
}
.image-overlay{
    display:none;
}
.experience-box {
    position: absolute;
    bottom: -22px;
    left: 12px;
}
}



@media (max-width: 420px) {
    .header .logo img {
        max-height: 51px;
    }
}