/**
* Template Name: Bocor
* Template URL: https://bootstrapmade.com/bocor-bootstrap-template-nice-animation/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* 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: #213b52; /* Color for headings, subheadings and title throughout the website */
  --accent-color: rgb(191, 47, 36);; /* 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: #e7f4ff;  /* The default color of the main navmenu links */
  --nav-hover-color: rgb(191, 47, 36);; /* 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: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: rgb(191, 47, 36);; /* 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: #f5f9fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #223b51;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #315575;
  --contrast-color: #223b51;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
 

  font-family: var(--default-font);
}

a {
  color: red;
  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);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: 
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* 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 {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  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: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 30px;
  font-weight: 700;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 6px 30px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(34, 59, 81, 0.9);
}

/*--------------------------------------------------------------
# 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: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: white;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: rgb(22, 20, 20);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  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 {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 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 {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

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

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# 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:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/




/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 10px 0;
}

.clients .swiper {
  padding: 10px 0;
}

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

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .img {
  border-radius: 8px;
  overflow: hidden;
}

.featured-services .img img {
  transition: 0.6s;
}

.featured-services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.featured-services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--contrast-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
}

.featured-services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.featured-services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.featured-services .service-item:hover .details h3 {
  color: var(--accent-color);
}

.featured-services .service-item:hover .details .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.featured-services .service-item:hover .details .icon i {
  color: var(--accent-color);
}

.featured-services .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 50px 30px;
  margin-top: 36px;
  transition: all ease-in-out 0.3s;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  text-align: center;
}

.services .service-item .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  margin: 0;
  width: 72px;
  height: 72px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid var(--background-color);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  background: var(--background-color);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}

.services .service-item:hover .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.services .service-item:hover .icon i {
  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: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-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 0 10px 0;
  }
}

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

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

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

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
}

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

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--heading-color);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

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

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

.team .team-member .member-info {
  padding: 25px 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

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

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--background-color);
  padding: 60px 40px;
  height: 100%;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 400;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

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

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

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

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

.pricing .featured {
  border-top-color: var(--accent-color);
}

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

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

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

.faq .faq-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 10px;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

.faq .faq-item p {
  font-size: 15px;
}

.faq .faq-item:first-child {
  padding-top: 0;
  margin-top: 0;
}

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.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;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  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);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

@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%);
}

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

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

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

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

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

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

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

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

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

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

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

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

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

.service-details h4 {
  font-size: 20px;
  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 */
}




/* Shrisha innotech */
 
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
           
            min-height: 100vh;
        }

        .top-bar {
     background: #591209;
    color: white;
    padding: 5px 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item:hover {
    transform: translateY(-2px);
    color: #3498db;
}

.contact-item i {
    font-size: 16px;
}

.social-media {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-media a {
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.social-media a:hover {
    transform: translateY(-3px) scale(1.1);
    background: rgba(52, 152, 219, 0.8);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.quote-btn {
    background:rgb(191, 47, 36);
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quote-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.quote-btn:hover::before {
    left: 100%;
}

.quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 10px 20px;
    }

    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    .contact-item {
        font-size: 14px;
    }

    .contact-item i {
        font-size: 14px;
    }

    .social-media {
        display: flex;
        gap: 15px;
        margin-bottom: 10px;
    }

    .quote-btn {
        padding: 8px 16px;
        font-size: 14px;
        margin-top: 10px;
    }

    .top-bar > div:last-child {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    .top-bar {
        font-size: 13px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .top-bar-content {
        display: none;
    }

    .quote-btn {
        width: 100%;
        text-align: center;
    }

    .social-media {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

        /* Custom Header */
.custom-header {
  background: white;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  height: 75px;
}

.custom-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 40px rgba(31, 38, 135, 0.5);
}

.custom-header-content {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.custom-logo-icon {
  width: 170px;
  height: auto;
}

.custom-logo-icon img {
  max-width: 100%;
  height: 61px;
}

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

.custom-nav-item {
  position: relative;
}

.custom-nav-link {
  text-decoration: none;
  color: rgb(99 99 99);
  font-weight: 700;
  font-size: 13px;
  padding: 10px;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  
}



.custom-nav-link:hover,
.custom-nav-link.active {
  color: (191, 47, 36);
}

.custom-nav-link:hover::before,
.custom-nav-link.active::before {
  width: 100%;
}

/* Mobile Toggle Button */
.custom-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #2c3e50;
  font-size: 24px;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
  .custom-nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

  .custom-nav-menu.active {
    display: flex;
  }

  .custom-nav-link {
    padding: 15px;
    text-align: center;
  }

  .custom-mobile-toggle {
    display: block;
  }
}




      
      



        .about-section {
            padding: 60px 20px;
            background: linear-gradient(to right, #f8f9ff, #eef2fb);
            display: flex;
            justify-content: center;
        }

        .about-container {
            display: flex;
            max-width: 1200px;
            gap: 40px;
            align-items: center;
            flex-wrap: wrap;
        }

        .about-left {
            flex: 1;
            min-width: 300px;
        }

        .about-left img {
            width: 100%;
            max-width: 500px;
            border-radius: 15px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        }

        .about-right {
            flex: 1;
            min-width: 300px;
        }

        .about-right h2 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: rgb(36, 34, 34);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 4s ease-in-out infinite;
            position: relative;
        }

        .about-right h2 span {
            background: rgb(36, 34, 34);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-right p {
            color: #555;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .usp-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 15px;
            margin-top: 25px;
        }

        .usp-item {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(12px);
            border-radius: 15px;
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
            transition: transform 0.3s ease, background 0.3s ease;
            cursor: pointer;
        }

        .usp-item:hover {
            transform: translateY(-5px);
            background: #fff;
        }

        .usp-item i {
            font-size: 1.4rem;
            color: rgb(191, 47, 36);;
        }

        .usp-item span {
            font-weight: 600;
            color: #333;
        }

        .about-button {
            margin-top: 30px;
        }

        .about-button a {
            display: inline-block;
            background: rgb(191, 47, 36);;
            color: #fff;
            text-decoration: none;
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 600;
            transition: background 0.3s ease;
        }

        .about-button a:hover {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .about-container {
                flex-direction: column;
                text-align: center;
            }

            .usp-item {
                justify-content: center;
            }

            .about-button {
                text-align: center;
            }
        }




    /* our services */

   /* Animated background particles */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .particle {
            position: absolute;
            background: linear-gradient(45deg, rgba(191, 47, 36, 0.3), rgba(59, 130, 246, 0.3));
            border-radius: 50%;
            animation: floatParticle 8s infinite ease-in-out;
        }

        .particle:nth-child(1) { width: 6px; height: 6px; top: 20%; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { width: 8px; height: 8px; top: 60%; left: 80%; animation-delay: 2s; }
        .particle:nth-child(3) { width: 4px; height: 4px; top: 80%; left: 20%; animation-delay: 4s; }
        .particle:nth-child(4) { width: 10px; height: 10px; top: 40%; left: 60%; animation-delay: 6s; }
        .particle:nth-child(5) { width: 5px; height: 5px; top: 10%; left: 50%; animation-delay: 1s; }

        @keyframes floatParticle {
            0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.7; }
            25% { transform: translateY(-30px) translateX(20px) scale(1.2); opacity: 1; }
            50% { transform: translateY(-60px) translateX(-10px) scale(0.8); opacity: 0.5; }
            75% { transform: translateY(-30px) translateX(-20px) scale(1.1); opacity: 0.8; }
        }

        .services-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 2rem;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 6rem;
            position: relative;
        }

        .section-header::before {
            content: '';
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, transparent, #bf2f24, #3b82f6, transparent);
            border-radius: 2px;
            animation: pulseGlow 3s ease-in-out infinite;
        }

        @keyframes pulseGlow {
            0%, 100% { opacity: 0.6; width: 120px; }
            50% { opacity: 1; width: 200px; }
        }

        .section-header h2 {
               font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: rgb(36, 34, 34);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s 
ease-in-out infinite;
    position: relative;
        }

        @keyframes titleGlow {
            0%, 100% { filter: drop-shadow(0 0 10px rgba(31, 41, 55, 0.3)); }
            50% { filter: drop-shadow(0 0 20px rgba(31, 41, 55, 0.5)); }
        }

        .section-header p {
            font-size: 1.4rem;
            color: #64748b;
            line-height: 1.8;
            max-width: 600px;
            margin: 0 auto;
            font-weight: 400;
        }

        .tabs-container {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .tabs-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(191, 47, 36, 0.3), transparent);
            animation: shimmer 3s linear infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .tab-navigation {
            display: flex;
            justify-content: center;
            padding: 2rem 2rem 0;
            gap: 2rem;
        }

        .tab-btn {
            padding: 1.5rem 3rem;
            background: rgba(255, 255, 255, 0.6);
            color: #475569;
            border: 1px solid rgba(203, 213, 225, 0.5);
            border-radius: 20px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            min-width: 200px;
        }

        

        .tab-btn:hover::before {
            left: 100%;
        }

        .tab-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            border-color: rgba(191, 47, 36, 0.5);
        }

        .tab-btn.active {
            background: linear-gradient(135deg, #bf2f24 0%, #e53e3e 100%);
            color: white;
            border-color: #bf2f24;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(191, 47, 36, 0.4);
        }

        .tab-content-area {
            padding: 4rem 3rem;
        }

        .tab-content {
            display: none;
            animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .tab-content.active {
            display: block;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2.5rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            padding: 3rem 2.5rem;
            border: 1px solid rgba(226, 232, 240, 0.8);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            group: hover;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(191, 47, 36, 0.1), rgba(59, 130, 246, 0.1));
            opacity: 0;
            transition: opacity 0.5s ease;
            border-radius: 25px;
        }

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

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
            border-color: rgba(191, 47, 36, 0.3);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #bf2f24 0%, #3b82f6 100%);
            position: relative;
            transition: all 0.5s ease;
            box-shadow: 0 10px 20px rgba(191, 47, 36, 0.3);
        }

        .service-card:hover .service-icon {
            transform: rotateY(360deg) scale(1.1);
            box-shadow: 0 20px 40px rgba(191, 47, 36, 0.5);
        }

        .service-icon img {
            width: 60px;
            height: 60px;
            transition: all 0.3s ease;
        }

        .service-card h3 {
            color: #1f2937;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            text-align: center;
            position: relative;
        }

        .service-card h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #bf2f24, #3b82f6);
            border-radius: 1px;
            transition: width 0.5s ease;
        }

        .service-card:hover h3::after {
            width: 80px;
        }

        .service-card p {
            color: #64748b;
            font-size: 1rem;
            line-height: 1.7;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        /* Modern glass morphism effect */
        .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 2rem;
            }
            
            .tab-navigation {
                gap: 1rem;
            }
            
            .tab-btn {
                min-width: 150px;
                padding: 1.2rem 2rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 768px) {
            .services-section {
                padding: 60px 1rem;
            }
            
            .tab-navigation {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
            
            .tab-btn {
                width: 100%;
                max-width: 300px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .service-card {
                padding: 2.5rem 2rem;
            }
            
            .tab-content-area {
                padding: 3rem 2rem;
            }
        }

        @media (max-width: 480px) {
            .section-header p {
                font-size: 1.2rem;
            }
            
            .service-card {
                padding: 2rem 1.5rem;
            }
        } 

       



        /* industry served */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #ffffff;
            min-height: 100vh;
          
            color: #333;
        }

        .industries-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            animation: fadeInUp 1s ease-out;
        }

       

        @keyframes slideIn {
            from { width: 0; opacity: 0; }
            to { width: 200px; opacity: 1; }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

       

        

       

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .section-header p {
            font-size: 1.3rem;
            color: #6b7280;
            line-height: 1.8;
            font-weight: 400;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            padding: 1rem 2rem;
            transition: all 0.3s ease;
        }

        .section-header p::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
            width: 0;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #06b6d4);
            border-radius: 2px;
            transition: width 0.6s ease;
        }

       

        .section-header:hover p {
            color: #4b5563;
        }

        .industries-container {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 30px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
        }

        .industries-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: rgb(191, 47, 36);;
            background-size: 300% 100%;
            animation: borderGlow 3s linear infinite;
        }

        @keyframes borderGlow {
            0% { background-position: 0% 0%; }
            100% { background-position: 300% 0%; }
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            animation: fadeInStagger 1.5s ease-out;
        }

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

        .industry-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            border: 2px solid #f1f5f9;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transform-origin: center;
        }

        .industry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
            transition: left 0.6s;
        }

        .industry-card:hover::before {
            left: 100%;
        }

        .industry-card:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
            border-color: rgb(191, 47, 36);
        }

        .industry-card:nth-child(odd):hover {
            transform: translateY(-15px) scale(1.05) rotate(2deg);
        }

        .industry-card:nth-child(even):hover {
            transform: translateY(-15px) scale(1.05) rotate(-2deg);
        }

        .industry-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            background: rgb(191, 47, 36);;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: all 0.4s ease;
            position: relative;
            display: inline-block;
        }

        .industry-card:hover .industry-icon {
            transform: rotateY(360deg) scale(1.2);
            filter: drop-shadow(0 10px 20px rgba(59, 130, 246, 0.3));
        }

        .industry-icon::after {
            content: '';
            position: absolute;
            top: -10px;
            right: -10px;
            width: 20px;
            height: 20px;
            background: linear-gradient(45deg, #10b981, #06b6d4);
            border-radius: 50%;
            opacity: 0;
            transform: scale(0);
            transition: all 0.3s ease;
        }

        .industry-card:hover .industry-icon::after {
            opacity: 1;
            transform: scale(1);
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .industry-card h3 {
            color: #1f2937;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            transition: color 0.3s ease;
            position: relative;
        }

        .industry-card:hover h3 {
            color: #3b82f6;
        }

        .industry-card h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #3b82f6, #06b6d4);
            border-radius: 1px;
            transition: width 0.4s ease;
        }

        .industry-card:hover h3::after {
            width: 60px;
        }

        .industry-card p {
            color: #6b7280;
            font-size: 1rem;
            line-height: 1.6;
            transition: color 0.3s ease;
        }

        .industry-card:hover p {
            color: #374151;
        }

        .industry-stats {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 20px;
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: #3b82f6;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .industry-card:hover .industry-stats {
            opacity: 1;
            transform: translateY(0);
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .floating-shape {
            position: absolute;
            background: linear-gradient(45deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .floating-shape:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .floating-shape:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 70%;
            right: 10%;
            animation-delay: 3s;
        }

        .floating-shape:nth-child(3) {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: 15%;
            animation-delay: 6s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-30px) rotate(120deg); }
            66% { transform: translateY(-15px) rotate(240deg); }
        }

        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2.5rem;
            }
            
            .industries-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .industry-card {
                padding: 2rem;
            }
            
            .industry-icon {
                font-size: 3rem;
            }
            
            .industries-container {
                padding: 2rem;
                border-radius: 20px;
            }
        }

        @media (max-width: 480px) {
            .section-header h2::before {
                display: none;
            }
            
            .section-header p {
                padding: 1rem;
                font-size: 1.1rem;
            }
        }

/*  Featured Projects styles */

.project-showcase-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
            overflow: hidden;
        }

        .project-showcase-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 20%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .project-showcase-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .project-showcase-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: #1e293b;
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: project-gradientShift 4s ease-in-out infinite;
            position: relative;
        }

        .project-showcase-subtitle {
            font-size: 1.2rem;
            color: #b0b3c1;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
            font-weight: 400;
        }

        .project-bg-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .project-bg-element {
            position: absolute;
            background: linear-gradient(135deg, rgba(120, 119, 198, 0.1), rgba(255, 119, 198, 0.1));
            border-radius: 50%;
            animation: project-float 8s ease-in-out infinite;
        }

        .project-bg-element:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .project-bg-element:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 70%;
            right: 10%;
            animation-delay: 2s;
        }

        .project-bg-element:nth-child(3) {
            width: 80px;
            height: 80px;
            top: 40%;
            left: 80%;
            animation-delay: 4s;
        }

        .project-display-toggle {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .project-display-btn {
            position: relative;
            padding: 12px 28px;
            background: rgba(20, 20, 30, 0.7);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 60px;
            color: white;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            backdrop-filter: blur(20px);
            font-weight: 600;
            font-size: 1rem;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .project-display-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s;
        }

        .project-display-btn:hover::before {
            left: 100%;
        }

        .project-display-btn.project-active {
            background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
            border-color: rgba(255, 255, 255, 0.3);
            color: white;
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(120, 119, 198, 0.3);
        }

        .project-display-btn:hover:not(.project-active) {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.2);
        }

        /* Enhanced Slider Styles */
        .project-slider-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 24px;
            margin-bottom: 40px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }

        .project-slider-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .project-slider-item {
            min-width: 100%;
            position: relative;
            height: 500px;
            background: linear-gradient(135deg, rgba(120, 119, 198, 0.1) 0%, rgba(255, 119, 198, 0.1) 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
            display: flex;
        }

        .project-item-image-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .project-item-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .project-slider-item:hover .project-item-image {
            transform: scale(1.05);
        }

        .project-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, rgba(10, 10, 15, 0.9) 0%, transparent 100%);
        }

        .project-item-content {
            position: absolute;
            left: 0;
            top: 0;
            width: 50%;
            height: 100%;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            z-index: 2;
        }

        .project-item-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: white;
            line-height: 1.1;
        }

        .project-item-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #b0b3c1;
            margin-bottom: 30px;
            font-weight: 400;
        }

        .project-item-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }

        .project-tag {
            padding: 8px 16px;
            background: rgba(120, 119, 198, 0.2);
            border-radius: 30px;
            font-size: 0.9rem;
            color: #7877c6;
            border: 1px solid rgba(120, 119, 198, 0.3);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .project-tag:hover {
            background: rgba(120, 119, 198, 0.3);
            transform: translateY(-2px);
        }

        .project-item-link {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: linear-gradient(135deg, #bf2f24 0%, #e53e3e 100%);
            border-radius: 60px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            align-self: flex-start;
            box-shadow: 0 20px 40px rgba(120, 119, 198, 0.3);
            position: relative;
            overflow: hidden;
        }

        .project-item-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s;
        }

        .project-item-link:hover::before {
            left: 100%;
        }

        .project-item-link:hover {
            transform: translateY(-4px);
            box-shadow: 0 30px 60px rgba(120, 119, 198, 0.4);
        }

        .project-link-arrow {
            transition: transform 0.3s ease;
        }

        .project-item-link:hover .project-link-arrow {
            transform: translateX(4px);
        }

        /* Navigation */
        .project-slider-nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .project-nav-indicator {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }

        .project-nav-indicator.project-active {
            transform: scale(1.4);
        }

        .project-progress-bar {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
            border-radius: 50%;
            animation: project-progress 5s linear;
        }

        .project-autoplay-control {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .project-autoplay-btn {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .project-autoplay-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        /* Enhanced Layout Styles */
        .project-layout-wrapper {
            display: none;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            animation: project-fadeInUp 0.8s ease;
        }

        #project-grid-view.project-active-view {
            display: grid;
        }

        #project-slider-view.project-active-view {
            display: block;
        }

        .project-layout-card {
            background: linear-gradient(135deg, rgba(120, 119, 198, 0.1) 0%, rgba(255, 119, 198, 0.1) 100%);
            border-radius: 24px;
            overflow: hidden;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            position: relative;
        }

        .project-layout-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(120, 119, 198, 0.1), rgba(255, 119, 198, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 24px;
        }

        .project-layout-card:hover::before {
            opacity: 1;
        }

        .project-layout-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
            border-color: rgba(120, 119, 198, 0.5);
        }

        .project-card-image-container {
            position: relative;
            width: 100%;
            height: 220px;
            overflow: hidden;
        }

        .project-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .project-layout-card:hover .project-card-image {
            transform: scale(1.1);
        }

        .project-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .project-layout-card:hover .project-card-overlay {
            opacity: 1;
        }

        .project-overlay-content {
            text-align: center;
        }

        .project-view-project-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
            border-radius: 50px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .project-view-project-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(120, 119, 198, 0.4);
        }

        .project-card-content {
            padding: 30px;
            position: relative;
            z-index: 1;
        }

        .project-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: white;
            transition: all 0.3s ease;
        }

        .project-layout-card:hover .project-card-title {
            color: #7877c6;
        }

        .project-card-description {
            color: #b0b3c1;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 1rem;
        }

        /* Animations */
        @keyframes project-gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes project-float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-20px) rotate(10deg); }
            66% { transform: translateY(10px) rotate(-10deg); }
        }

        @keyframes project-fadeInUp {
            from { 
                opacity: 0; 
                transform: translateY(40px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }

        @keyframes project-progress {
            0% { width: 0%; }
            100% { width: 100%; }
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .project-slider-item {
                flex-direction: column;
                height: auto;
            }
            
            .project-item-image-container {
                width: 100%;
                height: 300px;
            }
            
            .project-item-content {
                position: relative;
                width: 100%;
                padding: 40px;
            }
            
            .project-image-overlay {
                background: linear-gradient(0deg, rgba(10, 10, 15, 0.9) 0%, transparent 100%);
            }
        }

        @media (max-width: 768px) {
            .project-showcase-container {
                padding: 60px 16px;
            }

            .project-showcase-title {
                font-size: 2.2rem;
            }
            
            .project-item-content {
                padding: 30px 20px;
            }

            .project-item-title {
                font-size: 2rem;
            }

            .project-layout-wrapper {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .project-display-toggle {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }

            .project-display-btn {
                width: 200px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .project-item-content {
                padding: 25px 16px;
            }

            .project-item-title {
                font-size: 1.8rem;
            }

            .project-item-description {
                font-size: 1rem;
            }

            .project-card-content {
                padding: 25px;
            }
            
            .project-layout-wrapper {
                grid-template-columns: 1fr;
            }
        }

       


/* Footer Section */


        .site-footer {
            background: rgb(20, 20, 20);
            color: white;
            padding: 60px 0 30px;
            position: relative;
            overflow: hidden;
        }

        .site-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        }

        .footer-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-main {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            color: #ffffff;
        }

        .footer-section h3 i {
            margin-right: 8px;
           color: white;
        }

        .footer-section ul {
            list-style: none;
        }

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

        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-section ul li a i {
            margin-right: 8px;
            width: 16px;
            text-align: center;
            color: white
        }

        .footer-section ul li a:hover {
            color:white;
            transform: translateX(5px);
        }

        .contact-details p {
           
            margin-bottom: 12px;
            font-size: 14px;
            display: flex;
            align-items: center;
        }

        .contact-details p i {
            margin-right: 10px;
            width: 16px;
        }

        .social-media {
            display: flex;
            gap: 15px;
           
        }

        .social-media a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .social-media a:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .social-media a.facebook-link:hover {
            background: rgb(191, 47, 36);
        }

        .social-media a.linkedin-link:hover {
            background: rgb(191, 47, 36);;
        }

        .social-media a.whatsapp-link:hover {
            background: #25d366;
        }

          .social-media a.twitter-x-link:hover {
            background: #262927;
        }

        .social-media a i {
            font-size: 15px;
        }

        .footer-copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
        }

        .footer-copyright p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .footer-main {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 30px;
            }
            
            .site-footer {
                padding: 40px 0 20px;
            }
        }

      



        /* Testi-monials section */
 .testimonials-section {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            position: relative;
            padding: 60px 20px;
            border-radius: 30px;
            overflow: hidden;
            background: linear-gradient(135deg, #bf2f24 0%, #e53e3e 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
        }

       

        .section-subtitle {
            font-size: 1.4rem;
            color: #ffffff;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            font-weight: 400;
        }

        .rating-summary {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            margin: 40px auto;
            padding: 30px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            max-width: 600px;
            flex-wrap: wrap;
        }

        .rating-display {
            text-align: center;
            flex: 1;
            min-width: 200px;
        }

        .overall-rating {
            font-size: 3.5rem;
            font-weight: 900;
            color: rgb(255, 92, 100);
            line-height: 1;
            text-shadow: 0 0 20px rgba(255, 92, 100, 0.5);
        }

        .rating-stars-main {
            display: flex;
            gap: 8px;
            margin: 15px 0;
            justify-content: center;
        }

        .star-main {
            color: rgb(255, 92, 100);
            font-size: 1.8rem;
            filter: drop-shadow(0 0 10px rgba(255, 92, 100, 0.6));
            animation: starTwinkle 2s ease-in-out infinite alternate;
        }

        .rating-count {
            color: #ffffff;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .rating-breakdown {
            display: flex;
            flex-direction: column;
            gap: 8px;
            min-width: 250px;
        }

        .rating-row {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .rating-label {
            color: #ffffff;
            font-size: 0.9rem;
            width: 50px;
        }

        .rating-bar {
            flex: 1;
            height: 8px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            overflow: hidden;
            position: relative;
        }

        .rating-fill {
            height: 100%;
            background: linear-gradient(90deg, rgb(255, 92, 100), #ffffff);
            border-radius: 4px;
            transition: width 2s ease;
            position: relative;
            width: 0;
        }

        .rating-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            animation: shimmer 2s infinite;
        }

        .rating-percent {
            color: #ffffff;
            font-size: 0.9rem;
            min-width: 35px;
            text-align: right;
        }

        /* Slider container */
        .slider-wrapper {
            position: relative;
            margin-bottom: 60px;
            overflow: hidden;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 20px;
        }

        .testimonials-slider {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
        }

        .testimonials-track {
            display: flex;
            width: 600%;
            height: 100%;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slider-item {
            width: calc(100% / 6);
            flex-shrink: 0;
            padding: 0 15px;
        }

        .testimonial-card {
            background: #ffffff;
            border-radius: 25px;
            padding: 35px;
            width: 100%;
            height: 460px;
            position: relative;
            overflow: hidden;
            border: 2px solid rgb(255, 92, 100);
            box-shadow: 0 10px 30px rgba(89, 18, 10, 0.2);
            display: flex;
            flex-direction: column;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #bf2f24 0%, #e53e3e 100%);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .client-avatar {
            position: relative;
            flex-shrink: 0;
        }

        .avatar-ring {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(45deg, #bf2f24, rgb(255, 92, 100));
            padding: 3px;
        }

        .avatar-inner {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            overflow: hidden;
            position: relative;
            background: white;
        }

        .avatar-inner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .online-indicator {
            position: absolute;
            bottom: 5px;
            right: 5px;
            width: 18px;
            height: 18px;
            background: rgb(255, 92, 100);
            border: 2px solid white;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .client-details {
            flex: 1;
        }

        .client-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: rgb(36, 34, 34);
            margin-bottom: 5px;
        }

        .client-title {
            font-size: 1rem;
            color: rgb(89, 18, 10);
            margin-bottom: 5px;
        }

        .client-company {
            font-size: 0.9rem;
            color: rgb(89, 18, 10);
            font-weight: 500;
        }

        .testimonial-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 20px;
        }

        .rating-stars {
            display: flex;
            gap: 3px;
        }

        .star {
            color: rgb(255, 92, 100);
            font-size: 1.2rem;
            filter: drop-shadow(0 0 8px rgba(255, 92, 100, 0.4));
        }

        .star.filled {
            animation: starGlow 1.5s ease-in-out infinite alternate;
        }

        .rating-text {
            margin-left: 10px;
            color: rgb(89, 18, 10);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .project-tag {
            background: linear-gradient(135deg, #bf2f24 0%, #e53e3e 100%);
            color: #ffffff;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .testimonial-content {
            font-size: 1.1rem;
            line-height: 1.7;
            color: rgb(36, 34, 34);
            margin-bottom: 25px;
            position: relative;
            font-style: italic;
        }

        .testimonial-content::before {
            content: '"';
            font-size: 4rem;
            color: rgba(255, 92, 100, 0.3);
            position: absolute;
            top: -20px;
            left: -20px;
            font-family: serif;
            z-index: 1;
        }

        .testimonial-footer {
            padding-top: 20px;
            border-top: 2px solid rgba(255, 92, 100, 0.2);
        }

        .project-type {
            font-size: 0.9rem;
            color: rgb(89, 18, 10);
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .project-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: rgb(36, 34, 34);
        }

        .floating-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: floatParticle 8s ease-in-out infinite;
        }

        /* Slider controls */
        .slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .nav-indicators {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .nav-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-indicator.active {
            background: rgb(255, 92, 100);
            transform: scale(1.2);
        }

        .nav-indicator .progress-bar {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(255, 92, 100);
            border-radius: 50%;
            transform: scale(0);
            transform-origin: center;
        }

        .nav-indicator.active .progress-bar {
            transform: scale(1);
        }

        .control-button {
            background: linear-gradient(135deg, #bf2f24 0%, #e53e3e 100%);
            color: #ffffff;
            border: none;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .control-button:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(191, 47, 36, 0.4);
        }

        .control-button:active {
            transform: scale(0.95);
        }

        /* Progress bar animation */
        @keyframes progress {
            from {
                transform: scale(0);
            }
            to {
                transform: scale(1);
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes starTwinkle {
            0% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(255, 92, 100, 0.6)); }
            100% { transform: scale(1.1); filter: drop-shadow(0 0 20px rgba(255, 92, 100, 1)); }
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.2); opacity: 0.7; }
            100% { transform: scale(1); opacity: 1; }
        }

        @keyframes starGlow {
            0% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(255, 92, 100, 0.4)); }
            100% { transform: scale(1.05); filter: drop-shadow(0 0 15px rgba(255, 92, 100, 0.8)); }
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        @keyframes floatParticle {
            0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
            25% { transform: translateY(-30px) translateX(10px) scale(1.2); opacity: 0.8; }
            50% { transform: translateY(-50px) translateX(-5px) scale(0.8); opacity: 0.5; }
            75% { transform: translateY(-20px) translateX(15px) scale(1.1); opacity: 0.7; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .testimonials-section {
                padding: 40px 15px;
            }

            .section-title {
                font-size: 2.5rem;
                letter-spacing: -1px;
            }

            .section-subtitle {
                font-size: 1.2rem;
            }

            .rating-summary {
                flex-direction: column;
                gap: 20px;
                padding: 25px;
            }

            .testimonial-card {
                padding: 25px;
            }

            .testimonial-header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .rating-breakdown {
                min-width: auto;
            }

            .overall-rating {
                font-size: 2.8rem;
            }

            .testimonial-card {
                padding: 20px;
            }
        }
         

        


        /* technology stack */
 
    body {
      margin: 0;
      font-family: 'Roboto', sans-serif;
      color: #fff;
     
    }

    .tech-stack-section {
      padding: 60px 20px;
      text-align: center;
       background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 25%, #2d1b69 50%, #1a1a2e 75%, #0a0a0f 100%);
    }

    .tech-slider {
      display: flex;
      gap: 115px;
      overflow-x: auto;
      white-space: nowrap;
      scroll-behavior: smooth;
      padding: 10px 0;
      scrollbar-width: none;
    }

    .tech-slider::-webkit-scrollbar {
      display: none;
    }

    .tech-item {
      flex: 0 0 auto;
      background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
      padding: 30px;
      border-radius: 20px;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      cursor: pointer;
      backdrop-filter: blur(12px);
      box-shadow: 0 6px 30px rgba(0,0,0,0.3);
    }

    .tech-item:hover {
      transform: scale(1.15) rotateZ(-2deg);
      box-shadow: 0 8px 40px rgba(255,255,255,0.3);
    }

    .tech-item img {
      max-width: 90px;
      height: auto;
      filter: brightness(1.3) drop-shadow(0 0 6px rgba(255,255,255,0.2));
      transition: transform 0.3s;
    }

    .tech-item:hover img {
      transform: rotateY(10deg);
    }

    @media (max-width: 768px) {
      .tech-slider {
        gap: 40px;
      }

      .tech-item img {
        max-width: 70px;
      }
    }



   

    .ctaX-container {
      position: relative;
      width: 100%;
    
      background: #ffffff;
      border-radius: 24px;
      padding: 4rem 2rem;
      overflow: hidden;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
      border: 1px solid #e5e5e5;
    }

    .ctaX-background {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,0,0,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
      opacity: 0.3;
    }

    .ctaX-floating-elements {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      pointer-events: none;
    }

    .ctaX-floating-circle {
      position: absolute;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
      animation: ctaX-float 6s ease-in-out infinite;
    }

    .ctaX-circle-1 {
      width: 120px;
      height: 120px;
      top: 10%;
      right: 10%;
      animation-delay: 0s;
    }

    .ctaX-circle-2 {
      width: 80px;
      height: 80px;
      bottom: 20%;
      left: 15%;
      animation-delay: 2s;
    }

    .ctaX-circle-3 {
      width: 60px;
      height: 60px;
      top: 30%;
      left: 20%;
      animation-delay: 4s;
    }

    @keyframes ctaX-float {
      0%, 100% { transform: translateY(0px) scale(1); }
      50% { transform: translateY(-20px) scale(1.1); }
    }

    .ctaX-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: #333333;
    }

    .ctaX-badge {
      display: inlrgb(191, 47, 36);;
      color: white;
      padding: 0.5rem 1.5rem;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 2rem;
      animation: ctaX-glow 2s ease-in-out infinite alternate;
    }

    @keyframes ctaX-glow {
      from { box-shadow: 0 0 20px rgba(102, 126, 234, 0.3); }
      to { box-shadow: 0 0 30px rgba(102, 126, 234, 0.5); }
    }

    .ctaX-headline {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      background: rgb(36, 34, 34);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: ctaX-slideUp 1s ease-out;
    }

    .ctaX-subtitle {
      font-size: 1.3rem;
      font-weight: 400;
      line-height: 1.6;
      margin-bottom: 3rem;
      opacity: 0.8;
      color: #666666;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      animation: ctaX-slideUp 1s ease-out 0.2s both;
    }

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

    .ctaX-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      animation: ctaX-slideUp 1s ease-out 0.4s both;
    }

    .ctaX-btn-primary {
      background: rgb(191, 47, 36);;
      color: #ffffff;
      padding: 1rem 2.5rem;
      border: none;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
      position: relative;
      overflow: hidden;
    }

    .ctaX-btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.5s;
    }

    .ctaX-btn-primary:hover::before {
      left: 100%;
    }

    .ctaX-btn-primary:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    }

    .ctaX-btn-secondary {
      background: transparent;
      color: rgb(191, 47, 36);
      padding: 1rem 2.5rem;
      border: 2px solid rgb(191, 47, 36);
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .ctaX-btn-secondary:hover {
      background: rgb(191, 47, 36);
      color: white;
      transform: translateY(-2px);
    }

    .ctaX-features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-top: 4rem;
      animation: ctaX-slideUp 1s ease-out 0.6s both;
    }

    .ctaX-feature-item {
      text-align: center;
      padding: 1.5rem;
      background: #f8f9ff;
      border-radius: 16px;
      border: 1px solid #e5e5e5;
      transition: all 0.3s ease;
    }

    .ctaX-feature-item:hover {
      transform: translateY(-5px);
      background: #f0f2ff;
      box-shadow: 0 10px 25px rgba(102, 126, 234, 0.1);
    }

    .ctaX-feature-icon {
      width: 60px;
      height: 60px;
      background: rgb(191, 47, 36);;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      font-size: 1.5rem;
      color: white;
    }

    .ctaX-feature-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: #333333;
    }

    .ctaX-feature-desc {
      font-size: 0.9rem;
      opacity: 0.7;
      line-height: 1.4;
      color: #666666;
    }

    @media (max-width: 768px) {
      .ctaX-container {
        padding: 3rem 1.5rem;
      }

      .ctaX-buttons {
        flex-direction: column;
        align-items: stretch;
      }

      .ctaX-btn-primary,
      .ctaX-btn-secondary {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

      .ctaX-features-grid {
        grid-template-columns: 1fr;
      }
    }

    .ctaX-pulse {
      animation: ctaX-pulse 2s infinite;
    }

    @keyframes ctaX-pulse {
      0% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4); }
      70% { box-shadow: 0 0 0 10px rgba(102, 126, 234, 0); }
      100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0); }
    }

    .ctaX-ripple {
      position: absolute;
      border-radius: 50%;
      background-color: rgba(102, 126, 234, 0.6);
      transform: scale(0);
      animation: ctaX-ripple-animation 0.6s linear;
      pointer-events: none;
    }

    @keyframes ctaX-ripple-animation {
      to {
        transform: scale(2);
        opacity: 0;
      }
    }


    /* News latter and subscription */
    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #ffffff;
            line-height: 1.6;
            color: #333;
        }

        .newsletter-section {
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
            padding: 100px 20px;
            position: relative;
            overflow: hidden;
        }

        .newsletter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .newsletter-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            min-height: 500px;
        }

        .content-left {
            animation: slideInLeft 0.8s ease-out;
        }

        .content-right {
            animation: slideInRight 0.8s ease-out;
        }

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

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgb(191, 47, 36);;
            color: white;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 24px;
            animation: fadeInUp 0.6s ease-out 0.2s both;
        }

        .section-badge::before {
            content: '📧';
            font-size: 1rem;
        }

        h2 {
            font-size: 3rem;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 24px;
            line-height: 1.1;
            animation: fadeInUp 0.6s ease-out 0.4s both;
        }

        .highlight {
            background: rgb(191, 47, 36);;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .description {
            font-size: 1.25rem;
            color: #64748b;
            margin-bottom: 40px;
            line-height: 1.7;
            animation: fadeInUp 0.6s ease-out 0.6s both;
        }

        .features-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            font-size: 1rem;
            color: #475569;
            animation: fadeInUp 0.6s ease-out both;
        }

        .feature-item:nth-child(1) { animation-delay: 0.8s; }
        .feature-item:nth-child(2) { animation-delay: 1s; }
        .feature-item:nth-child(3) { animation-delay: 1.2s; }

        .feature-icon {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #10b981, #059669);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 16px;
            color: white;
            font-size: 0.75rem;
            font-weight: bold;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stats {
            display: flex;
            gap: 40px;
            margin-top: 32px;
        }

        .stat {
            text-align: left;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
           color: rgb(191, 47, 36);;
            display: block;
        }

        .stat-label {
            font-size: 0.875rem;
            color: #94bcf5;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .form-container {
            background: white;
            border-radius: 24px;
            padding: 48px;
            box-shadow: 
                0 20px 25px -5px rgba(0, 0, 0, 0.1),
                0 10px 10px -5px rgba(0, 0, 0, 0.04);
            border: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
            animation: slideInRight 0.8s ease-out 0.3s both;
        }

        .form-container::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
           
            border-radius: 24px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .form-container:hover::before {
            opacity: 1;
        }

        .form-container:hover {
            transform: translateY(-2px);
            transition: transform 0.3s ease;
        }

        .form-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 8px;
            text-align: center;
        }

        .form-subtitle {
            color: #64748b;
            text-align: center;
            margin-bottom: 32px;
            font-size: 0.95rem;
        }

        .input-group {
            position: relative;
            margin-bottom: 24px;
        }

        .email-input {
            width: 100%;
            padding: 16px 20px;
            background: #f8fafc;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            color: #1e293b;
            font-size: 1rem;
            outline: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: inherit;
        }

        .email-input::placeholder {
            color: #94a3b8;
        }

        .email-input:focus {
            border-color: #3b82f6;
            background: white;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
            transform: translateY(-1px);
        }

        .email-input.error {
            border-color: #ef4444;
            background: #fef2f2;
        }

        .email-input.success {
            border-color: #10b981;
            background: #f0fdfa;
        }

        .validation-message {
            position: absolute;
            bottom: -20px;
            left: 20px;
            font-size: 0.75rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .validation-message.error {
            color: #ef4444;
            opacity: 1;
        }

        .validation-message.success {
            color: #10b981;
            opacity: 1;
        }

        .subscribe-btn {
            width: 100%;
            padding: 16px 32px;
           background: rgb(191, 47, 36);;
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            font-family: inherit;
            letter-spacing: 0.025em;
        }

        .subscribe-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .subscribe-btn:hover::before {
            left: 100%;
        }

        .subscribe-btn:hover {
          
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
        }

        .subscribe-btn:active {
            transform: translateY(0);
        }

        .subscribe-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .btn-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: opacity 0.3s ease;
        }

        .loading-spinner {
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top: 2px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            display: none;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .subscribe-btn.loading .btn-content {
            opacity: 0;
        }

        .subscribe-btn.loading .loading-spinner {
            display: block;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .privacy-note {
            text-align: center;
            font-size: 0.75rem;
            color: #94a3b8;
            margin-top: 16px;
            line-height: 1.5;
        }

        .privacy-note a {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 500;
        }

        .privacy-note a:hover {
            text-decoration: underline;
        }

        .success-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-radius: 24px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .success-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .success-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #10b981, #059669);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin-bottom: 24px;
            animation: successPulse 0.6s ease-out;
        }

        @keyframes successPulse {
            0% {
                transform: scale(0);
                opacity: 0;
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .success-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 8px;
        }

        .success-message {
            color: #64748b;
            text-align: center;
            line-height: 1.6;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            width: 6px;
            height: 6px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            border-radius: 50%;
            animation: float 8s linear infinite;
            opacity: 0.6;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-10vh) rotate(360deg);
                opacity: 0;
            }
        }

        @media (max-width: 768px) {
            .newsletter-section {
                padding: 60px 20px;
            }

            .newsletter-content {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }

            h2 {
                font-size: 2.5rem;
            }

            .form-container {
                padding: 32px 24px;
            }

            .stats {
                justify-content: center;
                gap: 30px;
            }

            .content-left, .content-right {
                animation: fadeInUp 0.8s ease-out;
            }
        }

        @media (max-width: 480px) {
            h2 {
                font-size: 2rem;
            }

            .description {
                font-size: 1.125rem;
            }

            .form-container {
                padding: 24px 20px;
            }

            .stats {
                flex-direction: column;
                gap: 20px;
                align-items: center;
            }
        }


        .section-title {
          font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: rgb(36, 34, 34);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
    position: relative;
    cursor: default;
    transition: transform 0.3s ease;
        }




        /* Preloader Background */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(20, 20, 20);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Rotating Loader (Clockwise Circle) */
.rotating-loader {
  width: 80px;
  height: 80px;
  border: 8px solid rgba(255, 255, 255, 0.1);
  border-top: 8px solid #ffffff;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg); /* Clockwise */
  }
}


/* abput us  */

       

        .breadcrumb-hero {
            position: relative;
            height: 257px;
            border-radius: 20px;
            overflow: hidden;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 100%);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            margin-bottom: 30px;
        }

        .breadcrumb-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1200&h=600&fit=crop') center/cover;
            filter: blur( 1px);
            transform: scale(1.1);
            transition: all 0.3s ease;
        }

        .breadcrumb-hero:hover .breadcrumb-background {
            filter: blur(1px);
            transform: scale(1.05);
        }

        .breadcrumb-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
           
            );
            -webkit-backdrop-filter: blur(8px);
        }

        .floating-tech-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .tech-icon {
            position: absolute;
            font-size: 24px;
            color: rgba(255, 255, 255, 0.2);
            animation: float 6s ease-in-out infinite;
        }

        .tech-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: -1s; }
        .tech-icon:nth-child(2) { top: 30%; right: 15%; animation-delay: -2s; }
        .tech-icon:nth-child(3) { bottom: 25%; left: 20%; animation-delay: -3s; }
        .tech-icon:nth-child(4) { bottom: 20%; right: 25%; animation-delay: -4s; }
        .tech-icon:nth-child(5) { top: 15%; left: 50%; animation-delay: -5s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.2; }
            50% { transform: translateY(-20px) rotate(180deg); opacity: 0.4; }
        }

        .breadcrumb-content {
            position: relative;
            z-index: 10;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 40px;
        }

        .breadcrumb-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 1s ease 0.3s forwards;
        }

        .breadcrumb-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 1s ease 0.6s forwards;
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .breadcrumb-nav {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            padding: 15px 30px;
            display: flex;
            align-items: center;
            gap: 15px;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 1s ease 0.9s forwards;
            transition: all 0.3s ease;
        }

        .breadcrumb-nav:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .breadcrumb-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 15px;
            border-radius: 25px;
        }

        .breadcrumb-item:hover {
            color: white;
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        .breadcrumb-item.active {
            color: #64ffda;
            background: rgba(100, 255, 218, 0.2);
        }

        .breadcrumb-separator {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            margin: 0 5px;
        }

        .breadcrumb-icon {
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }

        .breadcrumb-item:hover .breadcrumb-icon {
            transform: scale(1.2);
        }

        /* Interactive Cards Section */
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .tech-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .tech-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .tech-card:hover::before {
            left: 100%;
        }

        .tech-card:hover {
            transform: translateY(-10px) scale(1.02);
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .tech-card-icon {
            font-size: 3rem;
            color: #64ffda;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .tech-card:hover .tech-card-icon {
            transform: scale(1.2) rotate(360deg);
        }

        .tech-card-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: white;
            margin-bottom: 15px;
        }

        .tech-card-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .breadcrumb-title {
                font-size: 2.5rem;
            }
            
            .breadcrumb-subtitle {
                font-size: 1.1rem;
            }
            
            .breadcrumb-nav {
                flex-wrap: wrap;
                justify-content: center;
                padding: 12px 20px;
            }
            
            .breadcrumb-item {
                font-size: 0.9rem;
                padding: 6px 12px;
            }
        }

        /* Loading Animation */
        .loading-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 1;
            transition: opacity 0.5s ease;
        }

        .loading-animation.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loader {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top: 4px solid #64ffda;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }


        /* software solution */
         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #ffffff;
            min-height: 100vh;
            overflow-x: hidden;
            line-height: 1.6;
        }

        .solutions-section {
            padding: 100px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }

        .section-header h1 {
            font-size: 3.5rem;
            color: #1f2937;
            margin-bottom: 24px;
            background: rgb(36, 34, 34);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }

        .section-header p {
            font-size: 1.25rem;
            color: #f3f5f9;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #9ca3af;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .solutions-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .solution-item {
            background: #ffffff;
            border-radius: 16px;
            padding: 48px 36px;
            border: 1px solid #e5e7eb;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            opacity: 0;
            transform: translateY(40px);
            animation: slideUp 0.8s ease forwards;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .solution-item:nth-child(1) { animation-delay: 0.1s; }
        .solution-item:nth-child(2) { animation-delay: 0.2s; }
        .solution-item:nth-child(3) { animation-delay: 0.3s; }
        .solution-item:nth-child(4) { animation-delay: 0.4s; }

        .solution-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
            border-color: #667eea;
        }

        .solution-icon {
            width: 72px;
            height: 72px;
            margin-bottom: 28px;
            background: rgb(191, 47, 36);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            transition: all 0.3s ease;
        }

        .solution-item:nth-child(2) .solution-icon {
            background: rgb(191, 47, 36);
        }

        .solution-item:nth-child(3) .solution-icon {
            background: rgb(191, 47, 36);
        }

        .solution-item:nth-child(4) .solution-icon {
            background: linear-gradient(135deg, #dc2626, #ea580c);
        }

        .solution-item:hover .solution-icon {
            transform: scale(1.1);
        }

        .solution-title {
            font-size: 1.5rem;
            color: #111827;
            margin-bottom: 16px;
            font-weight: 600;
        }

        .solution-description {
            color: #6b7280;
            margin-bottom: 24px;
            font-size: 1rem;
        }

        .solution-details {
            margin-bottom: 32px;
        }

        .detail-section {
            margin-bottom: 24px;
        }

        .detail-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: #374151;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }

        .detail-title::before {
            content: '';
            width: 4px;
            height: 16px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 2px;
            margin-right: 8px;
        }

        .detail-list {
            list-style: none;
            padding-left: 12px;
        }

        .detail-list li {
            color: #6b7280;
            margin-bottom: 8px;
            font-size: 0.9rem;
            position: relative;
            padding-left: 20px;
        }

        .detail-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #667eea;
            font-weight: bold;
        }

        .solution-benefits {
            background: #f8fafc;
            border-radius: 12px;
            padding: 20px;
            margin-top: 20px;
        }

        .benefits-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: #374151;
            margin-bottom: 12px;
        }

        .benefits-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .benefit-tag {
            background: #e0e7ff;
            color: rgb(36, 34, 34);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .cta-section {
            text-align: center;
            margin-top: 100px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.8s forwards;
        }

        .cta-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 2.25rem;
            color: #111827;
            margin-bottom: 16px;
            font-weight: 600;
        }

        .cta-description {
            font-size: 1.1rem;
            color: #6b7280;
            margin-bottom: 32px;
        }

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

        .btn-primary {
            padding: 16px 32px;
            background: rgb(191, 47, 36);;
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
        }

        .btn-secondary {
            padding: 16px 32px;
            background: transparent;
            color: #667eea;
            text-decoration: none;
            border: 2px solid #667eea;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: rgb(191, 47, 36);
            color: white;
            transform: translateY(-2px);
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .section-header h1 {
                font-size: 2.5rem;
            }
            
            .solutions-container {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            
            .solution-item {
                padding: 32px 24px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 280px;
            }
          }


       

   

    

    .services-container {
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 30px;
    }

    .cta-buttons a {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 24px;
      border-radius: 25px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      border: 2px solid transparent;
      transition: all 0.3s ease;
    }

    .btn-primary {
      background-color: rgb(191, 47, 36);
      color: #fff;
    }

    .btn-secondary {
      background-color: #e5e7eb;
      color: #111827;
    }

    .cta-buttons a.active {
      
      color: #fff;
     
    }

    .tab-panel {
      display: none;
      animation: fadeIn 0.4s ease-in-out;
    }

    .tab-panel.active {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 55px;
      margin-top: 35px;
    }

    .service-box {
      background-color: #fff;
      padding: 25px;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-box:hover {
      transform: translateY(-6px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .service-icon {
      font-size: 2rem;
      color: #2563eb;
      margin-bottom: 15px;
    }

    .service-title {
      font-weight: 600;
      font-size: 1.1rem;
      margin-bottom: 8px;
      color: #111827;
    }

    .service-description {
      color: #6b7280;
      font-size: 0.95rem;
      line-height: 1.5;
    }

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

    @media (max-width: 600px) {
      .cta-buttons {
        flex-direction: column;
        gap: 15px;
      }
    }


    



        

      

        .blog-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .hero-section1 {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .hero-title {
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: 800;
            background: black;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            position: relative;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            color: #64748b;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 50%;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
        .floating-element:nth-child(2) { top: 20%; right: 20%; animation-delay: 2s; }
        .floating-element:nth-child(3) { bottom: 20%; left: 15%; animation-delay: 4s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .filter-section {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 30px;
            background: rgba(0, 0, 0, 0.05);
            border: 2px solid rgba(0, 0, 0, 0.1);
            color: #1e293b;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .filter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
            transition: left 0.5s;
        }

        .filter-btn:hover::before {
            left: 100%;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: rgb(191, 47, 36);
            border-color: rgb(191, 47, 36)l
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .blog-card {
            background: rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            position: relative;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .blog-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .blog-card:hover::before {
            transform: scaleX(1);
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border-color: rgba(102, 126, 234, 0.3);
        }

        .card-image {
            height: 220px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .card-content {
            padding: 30px;
        }

        .card-category {
            display: inline-block;
            background: rgba(102, 126, 234, 0.2);
            color: 
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
            border: 1px solid rgba(102, 126, 234, 0.3);
        }

        .card-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #0f172a;
            line-height: 1.3;
        }

        .card-excerpt {
            color: #64748b;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: #94a3b8;
        }

        .read-more {
            color: rgb(36, 34, 34);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }

        .read-more::after {
            content: '→';
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .read-more:hover::after {
            transform: translateX(5px);
        }

        .newsletter-section {
            background: rgba(255, 255, 255, 0.8);
            border-radius: 30px;
            padding: 60px 40px;
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .newsletter-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

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

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

        .newsletter-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .newsletter-subtitle {
            color: #64748b;
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .newsletter-input {
            flex: 1;
            min-width: 250px;
            padding: 15px 20px;
            border: 2px solid rgba(0, 0, 0, 0.1);
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50px;
            color: #1e293b;
            font-size: 1rem;
            outline: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .newsletter-input:focus {
            border-color: #667eea;
            box-shadow: 0 0 30px rgba(102, 126, 234, 0.2);
        }

        .newsletter-input::placeholder {
            color: #94a3b8;
        }

        .newsletter-btn {
            padding: 15px 30px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border: none;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .newsletter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .newsletter-btn:hover::before {
            left: 100%;
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
        }

        @media (max-width: 768px) {
            .blog-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .filter-section {
                gap: 10px;
            }
            
            .filter-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .newsletter-form {
                flex-direction: column;
                align-items: stretch;
            }
            
            .newsletter-input {
                min-width: unset;
            }
        }

        .stats-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }

        .stat-card {
            text-align: center;
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

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

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: rgb(191, 47, 36);;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .stat-label {
            color: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
            font-weight: 600;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        /*hero-slider*/
        
   :root {
  --accent: #ff4757;
  --text: #ffffff;
  --muted: #ddd;
  --overlay-from: rgba(0,0,0,0.7);
  --overlay-to: rgba(0,0,0,0.18);
  --max-hero-height: 880px;
  --min-hero-height: 480px;
}

/* HERO / SLIDER */
.hero-section {
  width: 100%;
  height: clamp(420px, 81vh, var(--max-hero-height));
  position: relative;
  overflow: hidden;
}
.hero-section .hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Slide base */
.hero-section .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s cubic-bezier(.2,.9,.2,1), visibility 0s linear 0.95s;
  pointer-events: none;
}
.hero-section .hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

/* Image + zoom */
.hero-section .hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 6s ease;
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
}
.hero-section .hero-slide.active img {
  transform: scale(1.08);
}

/* Overlay for contrast */
.hero-section .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, var(--overlay-from), var(--overlay-to));
  pointer-events: none;
}

/* Slide content */
.hero-section .slide-content {
  position: absolute;
  bottom: 30%;
  left: clamp(18px, 5vw, 80px);
  max-width: clamp(360px, 100%, 640px);
  z-index: 2;
  color: var(--text);
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .6s ease, transform .6s ease;
  -webkit-font-smoothing: antialiased;
}
.hero-section .hero-slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-section .slide-content h3 {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  line-height: 1.05;
  margin: 0 0 .6rem 0;
  font-weight: 800;
  letter-spacing: 1px;
  animation: fadeDownUp 0.9s ease both;
  animation-delay: .15s;
  color: #FFFFFF;
}
.hero-section .slide-content p {
  margin: 0 0 1.1rem 0;
  color: var(--muted);
  font-size: clamp(.95rem, 1.3vw, 1.05rem);
  line-height: 1.6;
  animation: fadeDownUp 0.9s ease both;
  animation-delay: .4s;
}

/* Buttons */
.slide-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  animation: fadeDownUp .9s ease both;
  animation-delay: .7s;
}
.hero-section .slide-content .btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 999px;
  border: 0;
  font-weight: 600;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-section .slide-content .btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: linear-gradient(90deg, var(--accent), #ff6b6b);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
}
.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-secondary:hover {
  transform: translateY(-3px);
  color: #fff;
  background: rgba(255,255,255,0.12);
}

/* Arrows */
.hero-section .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  border: 0;
  background: rgba(0,0,0,0.45);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s ease, transform .12s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
}
.hero-section .arrow:focus {
  outline: 2px solid rgba(255,255,255,.12);
}
.hero-section .arrow:hover {
  background: rgba(0,0,0,0.7);
  transform: translateY(-50%) scale(1.05);
}
.hero-section .arrow.left {
  left: 18px;
}
.hero-section .arrow.right {
  right: 18px;
}

/* Dots */
.hero-section .dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}
.hero-section .dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.hero-section .dots button.active {
  background: var(--accent);
  transform: scale(1.3);
  box-shadow: 0 6px 14px rgba(0,0,0,.35);
}
.hero-section .dots button:focus {
  outline: 2px solid rgba(255,255,255,.12);
}

/* Animations */
.hero-section .hero-slide[aria-hidden="true"] .slide-content {
  opacity: 0;
  transform: translateY(42px);
}
@keyframes fadeDownUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-section {
    height: min(72vh, var(--max-hero-height));
    min-height: var(--min-hero-height);
  }
  .hero-section .slide-content {
    bottom: 14%;
    left: 20px;
    max-width: calc(100% - 40px);
  }
}
@media (max-width: 560px) {
  .hero-section .slide-content h3 {
    font-size: 1.5rem;
  }
  .hero-section .slide-content p {
    font-size: .95rem;
  }
  .slide-buttons {
    flex-direction: column;
    gap: 10px;
  }
 .hero-section .slide-content .btn {
    width: 100%;
    text-align: center;
    padding: 12px 18px;
  }
  .hero-section .arrow {
    width: 40px;
    height: 40px;
    font-size: .9rem;
  }
  .hero-section .dots {
    bottom: 14px;
  }
}

        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
