/**
* Template Name: Devin
* Template URL: https://bootstrapmade.com/devin-bootstrap-template/
* Updated: Jul 23 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Poppins", "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: "Poppins", "Roboto", sans-serif;
  --nav-font: "Poppins", "Roboto", 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: #333333; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1D497C; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #8460F6; /* 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: rgba(29, 73, 124, 0.875);  /* The default color of the main navmenu links */
  --nav-hover-color: #1D497C; /* 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: #333333; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #8460F6; /* 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: #f8fbff;
  --surface-color: #ffffff;
  --default-color: #333333;
  --heading-color: #1D497C;
}

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

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
/* body {
  color: var(--default-color);
  background-color:#F3F6FA;
  font-family: var(--default-font);
  font-weight: 400;
  line-height: 1.6;
} */

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.3;
}

p {
  color: #333333;
  font-family: var(--default-font);
  font-weight: 400;
  line-height: 1.6;
}

/* 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
--------------------------------------------------------------*/

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

input[type=text],
input[type=email],
textarea {
  color: #333333;
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, #333333, transparent 80%);
}

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

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, #333333, transparent 70%);
}

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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s 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: linear-gradient(135deg, #1D497C, #8460F6);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background: linear-gradient(135deg, #8460F6, #1D497C);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(132, 96, 246, 0.4);
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: #ffffff;
  background-color: var(--background-color);
  background: url(../img/breadcrumbs-bg.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  padding-top: 80px;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color:#ffffff;
  font-family: var(--heading-font);
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  font-weight: 400;
  font-family: var(--default-font);
}

.page-title .breadcrumbs ol a {
  color: #ffffff;
  font-weight: 700;
}

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: #ffffff;
}

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

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

.products-section{
 padding: 50px; 
 background: linear-gradient(135deg, #f0f8ff 0%, #f5f0ff 100%);
}
.section-title {
  text-align: center;
  position: relative;
}

.section-title h2 {
  font-size:25px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--heading-color);
  font-family: var(--heading-font);
}



.section-title p {
  margin-bottom: 0;
  font-size: 18px;
  color: #333333;
  font-family: var(--default-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding: 120px 0 60px 0;
  min-height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color) 10%, var(--accent-color) 45%, transparent 45%, transparent 100%);
  opacity: 0.05;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 80px 15px;
}

.hero .hero-content {
  padding-right: 30px;
}

@media (max-width: 991px) {
  .hero .hero-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 50px;
  }
}

.hero .hero-content h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.hero .hero-content h1 span {
  color: var(--accent-color);
  position: relative;
}

.hero .hero-content h1 span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  border-radius: 1px;
  opacity: 0.3;
}

@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .hero .hero-content h1 {
    font-size: 32px;
  }
}

.hero .hero-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 35px;
  max-width: 500px;
  font-family: var(--default-font);
}

@media (max-width: 991px) {
  .hero .hero-content p {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .hero .hero-content p {
    font-size: 16px;
  }
}

.hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .hero .hero-actions {
    flex-direction: column;
    gap: 20px;
  }
}

.hero .btn-primary {
  background: linear-gradient(135deg, #1D497C, #8460F6);
  color: #ffffff;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(29, 73, 124, 0.3);
  border: 2px solid transparent;
  text-decoration: none;
  display: inline-block;
  font-family: var(--default-font);
}

.hero .btn-primary:hover {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px rgba(132, 96, 246, 0.3);
  transform: translateY(-2px);
}

.hero .btn-video {
  color: #333333;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: var(--default-font);
  text-decoration: none;
}

.hero .btn-video i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1D497C, #8460F6);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(132, 96, 246, 0.3);
}

.hero .btn-video:hover {
  color: var(--accent-color);
}

.hero .btn-video:hover i {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 12px 35px rgba(132, 96, 246, 0.4);
  transform: scale(1.1);
}

.hero .hero-image {
  position: relative;
  text-align: center;
}

@media (max-width: 991px) {
  .hero .hero-image {
    margin-top: 50px;
  }
}

.hero .hero-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

@media (max-width: 768px) {
  .hero .hero-image::before {
    width: 300px;
    height: 300px;
  }
}

.hero .floating {
  max-width: 85%;
  height: auto;
  animation: floating 3s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px color-mix(in srgb, #333333, transparent 85%));
}

@media (max-width: 768px) {
  .hero .floating {
    max-width: 90%;
  }
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.1;
  }
}

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

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

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

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

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, #333333, transparent 80%);
}

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
:root {
  --primary: #1D497C;
  --primary-dark: #153258;
  --primary-light: #2563b3;
  --secondary: #8460F6;
  --dark: #1f2937;
  --light: #f9fafb;
  --gray: #666666;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.about-section {
  max-width: 100%;
  margin: 0 auto;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}

.about-content {
  flex: 1;
  min-width: 300px;
  position: relative;
  z-index: 2;
}

.about-image-container {
  flex: 1;
  min-width: 300px;
  position: relative;
}

/* Fix: Added more specific selector for the about section title only */
.about-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Fallback for non-webkit browsers */
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  font-family: var(--heading-font);
}

/* Ensure all other headings have normal colors */
h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.about-text {
  font-size: 1rem;
  color: #333333;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.2s forwards;
  font-family: var(--default-font);
  line-height: 1.6;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  flex: 1;
  min-width: 120px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.stat-label {
  font-size: 0.9rem;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-family: var(--default-font);
}

.cta-button-header{
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;

  background: linear-gradient(135deg,#735CE1, #3A4F9F);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(29, 73, 124, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.6s forwards;
  position: relative;
  overflow: hidden;
  font-family: var(--default-font);
}

.cta-button-header::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: 0.5s;
}

.cta-button-header::before {
  left: 100%;
}
.cta-button-header:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(29, 73, 124, 0.4);
  background: linear-gradient(235deg,#735CE1, #3A4F9F);
  color: white;
}

.cta-button-header i {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.cta-button-header:hover i {
  transform: translateX(5px);
}


.cta-button {
   display: block;
  margin-left: auto;
  width: fit-content;
  margin-right: 30%;
  margin-bottom: 50px;

  /* display: inline-flex; */
  align-items: center;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(29, 73, 124, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.6s forwards;
  position: relative;
  overflow: hidden;
  font-family: var(--default-font);
}

.cta-button::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: 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(29, 73, 124, 0.4);
  color: white;
}

.cta-button i {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.cta-button:hover i {
  transform: translateX(5px);
}

.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 0.8s ease 0.3s forwards;
}

.image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(29, 73, 124, 0.1), rgba(132, 96, 246, 0.1));
  z-index: 1;
  opacity: 0;
  transition: var(--transition);
}

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

.about-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition);
}

.image-container:hover .about-image {
  transform: scale(1.05);
}

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

.shape {
  position: absolute;
  background: rgba(29, 73, 124, 0.05);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  bottom: 15%;
  right: 8%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  top: 40%;
  right: 15%;
  animation-delay: 4s;
}

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

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column-reverse;
    gap: 40px;
  }
  
  .about-section .section-title {
    font-size: 2.5rem;
  }
  
  .stats-container {
    justify-content: center;
  }
  
  .about-image {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 20px;
  }
  
  .about-section .section-title {
    font-size: 2.2rem;
  }
  
  .stat-item {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .about-section .section-title {
    font-size: 1.8rem;
  }
  
  .stat-item {
    flex: 0 0 100%;
  }
  
  .about-image {
    height: 300px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  /* padding-bottom: 80px; */
}

/* Product Card */
.product-card {
  background: rgb(255, 255, 255);
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.product-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

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

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #1D497C, #8460F6);
  color: white;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  font-family: var(--default-font);
}

.product-content {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.product-description {
  color: #333333;
  margin-bottom: 20px;
  flex-grow: 1;
  font-family: var(--default-font);
  line-height: 1.6;
}

.product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  font-family: var(--default-font);
}

.product-link:hover {
  color: var(--heading-color);
}

.product-link i {
  margin-left: 5px;
  transition: all 0.4s ease;
}

.product-link:hover i {
  transform: translateX(5px);
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.feature-tag {
  background: #e2e8f0;
  color: var(--heading-color);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: var(--default-font);
}

/* Responsive Design */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .product-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .section-title {
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .product-content {
    padding: 20px;
  }
  
  .product-title {
    font-size: 1.2rem;
  }
}

/* --------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding: 50px;
background: linear-gradient(135deg, #f0f8ff 0%, #f5f0ff 100%);
}

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

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  font-family: var(--heading-font);
}



.section-title p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--default-font);
}

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

.features-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.features-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.features-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.features-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.features-card:hover:before {
  width: 8px;
}

.icon-container {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.features-card:hover .icon-container {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(132, 96, 246, 0.3);
}

.icon-container i {
  font-size: 30px;
  color: #ffffff;
}

.features-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.features-card p {
  color: #333333;
  margin-bottom: 0;
  font-family: var(--default-font);
  line-height: 1.6;
}

.image-box {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.image-box img {
  width: 100%;
  height: 98%;
  margin-top: -50px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease;
}

.image-box img.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Animation delays for cards */
.features-card:nth-child(1) { transition-delay: 0.1s; }
.features-card:nth-child(2) { transition-delay: 0.2s; }
.features-card:nth-child(3) { transition-delay: 0.3s; }
.features-card:nth-child(4) { transition-delay: 0.4s; }

/* Responsive adjustments */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .image-box {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .features {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .features-card {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .features-card {
    padding: 20px;
  }
  
  .icon-container {
    width: 60px;
    height: 60px;
  }
  
  .icon-container i {
    font-size: 25px;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters-wrapper {
  text-align: center;
  margin-bottom: 80px;
}

.portfolio .portfolio-filters {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.portfolio .portfolio-filters::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: color-mix(in srgb, #333333, transparent 90%);
}

.portfolio .portfolio-filters li {
  position: relative;
  cursor: pointer;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: color-mix(in srgb, #333333, transparent 30%);
  transition: all 0.4s ease-out;
  letter-spacing: 0.5px;
  font-family: var(--default-font);
}

.portfolio .portfolio-filters li::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: all 0.4s ease-out;
  transform: translateX(-50%);
}

.portfolio .portfolio-filters li:hover {
  color: #333333;
}

.portfolio .portfolio-filters li.filter-active {
  color: #333333;
}

.portfolio .portfolio-filters li.filter-active::after {
  width: 100%;
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}

.portfolio .portfolio-card {
  background: var(--surface-color);
  transition: all 0.4s ease-out;
  overflow: hidden;
}

.portfolio .portfolio-card:hover {
  transform: translateY(-8px);
}

.portfolio .portfolio-card:hover .image-container img {
  transform: scale(1.05);
}

.portfolio .portfolio-card:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.portfolio .portfolio-card:hover .content h3 {
  color: var(--accent-color);
}

.portfolio .image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 20px;
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  border: 6px double #1D497C;
}

.portfolio .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}

.portfolio .image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out;
  backdrop-filter: blur(2px);
}

.portfolio .image-container .overlay-content {
  display: flex;
  gap: 20px;
  transform: translateY(20px);
  transition: transform 0.4s ease-out 0.1s;
}

.portfolio-card:hover .portfolio .image-container .overlay-content {
  transform: translateY(0);
}

.portfolio .image-container .overlay-content a {
  width: 50px;
  height: 50px;
  background: var(--surface-color);
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 18px;
}

.portfolio .image-container .overlay-content a:hover {
  background: var(--accent-color);
  color: #ffffff;
  transform: scale(1.1);
}

.portfolio .content {
  padding: 30px 0;
  text-align: center;
}

.portfolio .content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.portfolio .content p {
  color: #333333;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.3px;
  font-family: var(--default-font);
}

@media (min-width: 992px) {
  .portfolio .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .portfolio .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
  }
}

/*--------------------------------------------------------------
# How We Work Section
--------------------------------------------------------------*/
.how-we-work {
  padding-top: 60px;
  padding-bottom: 40px;
}

.how-we-work .step-item {
  text-align: center;
  padding: 20px;
  position: relative;
  margin-bottom: 30px;
}

.how-we-work .step-item::after {
  content: "";
  position: absolute;
  top: 45px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 70%) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
  z-index: 0;
}

.how-we-work .step-item:last-child::after {
  display: none;
}

.how-we-work .step-circle {
  width: 70px;
  height: 70px;
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.how-we-work .step-circle span {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.how-we-work .step-item:hover .step-circle {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: scale(1.1);
}

.how-we-work .step-item:hover .step-circle span {
  color: #ffffff;
}

.how-we-work h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.how-we-work p {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  font-family: var(--default-font);
}

@media (max-width: 991px) {
  .how-we-work .step-item::after {
    display: none;
  }

  .how-we-work .step-circle {
    width: 60px;
    height: 60px;
  }

  .how-we-work .step-circle span {
    font-size: 1.3rem;
  }

  .how-we-work h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .how-we-work .step-circle {
    width: 50px;
    height: 50px;
  }

  .how-we-work .step-circle span {
    font-size: 1.1rem;
  }

  .how-we-work h3 {
    font-size: 1.1rem;
  }

  .how-we-work p {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-choose-us {
  max-width: 100%;
  width: 100%;
  /* margin: 0 auto; */
  padding: 50px;

  background: white;
}


.section-header {
  text-align: center;
  /* margin-bottom: 60px; */
  padding: 50px;
  background: #ffffff;
}

.section-header h2 {
  font-size: 2.8rem;
  background: linear-gradient(135deg, #1D497C 0%, #8460F6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-header p {
  font-size: 1.2rem;
  color: #666666;
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--default-font);
}





.intro-section {
  background: linear-gradient(135deg, #1D497C 0%, #8460F6 100%);
  color: white;
  padding: 50px 40px;
  border-radius: 16px;
  margin-bottom: 60px;
  box-shadow: 0 10px 30px rgba(29, 73, 124, 0.2);
}

.intro-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: white;
  font-family: var(--heading-font);
}

.intro-section p {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.95;
  font-family: var(--default-font);
  color: white;
}

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

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #1D497C, #8460F6);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(29, 73, 124, 0.15);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #e0e7ff 0%, #ede9fe 100%);
  color: #1D497C;
  font-size: 1.8rem;
}

.feature-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--heading-font);
}

.feature-content p {
  color: #333333;
  margin-bottom: 20px;
  font-family: var(--default-font);
  line-height: 1.6;
}

.feature-highlight {
  display: inline-block;
  background: #e0e7ff;
  color: #1D497C;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--default-font);
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .intro-section {
    padding: 35px 25px;
  }
  
  .intro-section h1 {
    font-size: 2rem;
  }
  
  .features-container {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials .testimonial-slider {
  position: relative;
  padding-bottom: 50px;
}

.testimonials .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%);
  border-radius: 20px;
  padding: 0;
  height: 100%;
  border: 1px solid color-mix(in srgb, #333333, transparent 90%);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonials .testimonial-item:hover {
  border-color: var(--accent-color);
}

.testimonials .testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonials .testimonial-item:hover .testimonial-header img {
  transform: scale(1.05);
}

.testimonials .testimonial-item:hover .quote-icon {
  color: var(--accent-color);
  transform: scale(1.1);
}

.testimonials .testimonial-item .testimonial-header {
  position: relative;
  text-align: center;
  padding: 30px 30px 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%);
}

.testimonials .testimonial-item .testimonial-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item .testimonial-header .rating {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonials .testimonial-item .testimonial-header .rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonials .testimonial-item .testimonial-body {
  padding: 0 30px 20px;
}

.testimonials .testimonial-item .testimonial-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
  margin: 0;
  font-style: italic;
  text-align: center;
  position: relative;
  font-family: var(--default-font);
}

.testimonials .testimonial-item .testimonial-body p::before,
.testimonials .testimonial-item .testimonial-body p::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--accent-color);
  opacity: 0.6;
  font-family: serif;
  position: absolute;
}

.testimonials .testimonial-item .testimonial-body p::before {
  top: -5px;
  left: -10px;
}

.testimonials .testimonial-item .testimonial-body p::after {
  bottom: -20px;
  right: -5px;
}

.testimonials .testimonial-item .testimonial-footer {
  padding: 20px 30px 30px;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-item .testimonial-footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 5px;
  font-family: var(--heading-font);
}

.testimonials .testimonial-item .testimonial-footer span {
  font-size: 0.85rem;
  color: #666666;
  display: block;
  margin-bottom: 15px;
  font-family: var(--default-font);
}

.testimonials .testimonial-item .testimonial-footer .quote-icon {
  position: absolute;
  bottom: 15px;
  right: 25px;
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.testimonials .swiper-navigation {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static;
  width: 45px;
  height: 45px;
  margin: 0 10px;
  background: linear-gradient(135deg, #1D497C, #8460F6);
  border-radius: 50px;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: linear-gradient(135deg, #8460F6, #1D497C);
  transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

.testimonials .swiper-pagination {
  position: static;
  margin-top: 30px;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, #333333, transparent 70%);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, #333333, transparent 90%);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.pricing .pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px color-mix(in srgb, #333333, transparent 85%);
}

.pricing .pricing-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.02);
}

.pricing .pricing-card.featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.pricing .pricing-card.featured .featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #1D497C, #8460F6);
  color: #ffffff;
  padding: 0.5rem 1.25rem;
  border-radius: 0 0 8px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: var(--default-font);
}

.pricing .pricing-card .plan-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pricing .pricing-card .plan-header .plan-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  font-family: var(--heading-font);
}

.pricing .pricing-card .plan-header .plan-description {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 0;
  font-family: var(--default-font);
}

.pricing .pricing-card .pricing-display {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pricing .pricing-card .pricing-display .price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.pricing .pricing-card .pricing-display .price .currency {
  font-size: 1.25rem;
  color: color-mix(in srgb, #333333, transparent 40%);
  font-weight: 500;
  font-family: var(--default-font);
}

.pricing .pricing-card .pricing-display .price .amount {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--heading-color);
  letter-spacing: -0.02em;
  font-family: var(--heading-font);
}

.pricing .pricing-card .pricing-display .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, #333333, transparent 40%);
  font-weight: 400;
  font-family: var(--default-font);
}

.pricing .pricing-card .features-list {
  margin-bottom: 2.5rem;
}

.pricing .pricing-card .features-list .feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.pricing .pricing-card .features-list .feature i {
  color: var(--accent-color);
  font-size: 1rem;
  flex-shrink: 0;
}

.pricing .pricing-card .features-list .feature span {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.5;
  font-family: var(--default-font);
}

.pricing .pricing-card .btn-plan {
  display: block;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background-color: transparent;
  border: 1.5px solid var(--accent-color);
  color: var(--accent-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
  font-family: var(--default-font);
}

.pricing .pricing-card .btn-plan:hover {
  background: linear-gradient(135deg, #1D497C, #8460F6);
  color: #ffffff;
  transform: translateY(-1px);
}

.pricing .pricing-card.featured .btn-plan {
  background: linear-gradient(135deg, #1D497C, #8460F6);
  color: #ffffff;
}

.pricing .pricing-card.featured .btn-plan:hover {
  background: linear-gradient(135deg, #8460F6, #1D497C);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

/*--------------------------------------------------------------------------------------
# Contact Section
----------------------------------------------------------------------------------------------------*/

       .ae-contact-section {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f0f8ff 0%, #f5f0ff 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 100%;
}

.ae-contact-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    animation: ae-fadeIn 1s ease-out;
    transform: translateY(0);
}

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

.ae-contact-info {
    flex: 1;
    min-width: 300px;
    padding: 50px 40px;
    background: linear-gradient(135deg, #4a00e0 0%, #8e2de2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.ae-contact-info::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.ae-contact-info::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.ae-contact-form {
    flex: 1;
    min-width: 300px;
    padding: 50px 40px;
    animation: ae-slideIn 1s ease-out 0.3s both;
}

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

.ae-contact-h2 {
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.ae-contact-info .ae-contact-h2 {
    color: white;
}

.ae-contact-form .ae-contact-h2 {
    color: #4a00e0;
}

.ae-contact-h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    border-radius: 2px;
}

.ae-contact-info .ae-contact-h2:after {
    background: #8e2de2;
}

.ae-contact-form .ae-contact-h2:after {
    background: #4a00e0;
}

.ae-contact-p {
    margin-bottom: 25px;
    font-size: 16px;
    position: relative;
    z-index: 1;
    color: white;
}

.ae-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    animation: ae-fadeInUp 0.8s ease-out;
}

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

.ae-info-item:nth-child(1) { animation-delay: 0.5s; }
.ae-info-item:nth-child(2) { animation-delay: 0.7s; }
.ae-info-item:nth-child(3) { animation-delay: 0.9s; }

.ae-info-item i {
    font-size: 22px;
    margin-right: 15px;
    margin-top: 5px;
    color: #ffffff;
    animation: ae-pulse 2s infinite;
}

@keyframes ae-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.ae-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.ae-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    animation: ae-bounceIn 1s ease-out 1.1s both;
}

@keyframes ae-bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.ae-social-icons a:nth-child(2) { animation-delay: 1.3s; }
.ae-social-icons a:nth-child(3) { animation-delay: 1.5s; }

.ae-social-icons a:hover {
    background: white;
    color: #4a00e0;
    transform: translateY(-5px);
}

/* Updated Form Layout for Two Columns */
.ae-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    animation: ae-formField 0.8s ease-out;
}

.ae-form-group {
    flex: 1;
    margin-bottom: 0;
}

@keyframes ae-formField {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ae-form-row:nth-child(1) { animation-delay: 0.5s; }
.ae-form-row:nth-child(2) { animation-delay: 0.6s; }
.ae-form-row:nth-child(3) { animation-delay: 0.7s; }

.ae-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4a00e0;
}

.ae-form-input, .ae-form-textarea {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.ae-form-input:focus, .ae-form-textarea:focus {
    outline: none;
    border-color: #4a00e0;
    box-shadow: 0 0 0 3px rgba(74, 0, 224, 0.1);
    transform: translateY(-2px);
}

.ae-form-textarea {
    min-height: 150px;
    resize: vertical;
    animation: ae-formField 0.8s ease-out 0.8s both;
}

.ae-submit-button {
    background: linear-gradient(to right, #4a00e0, #8e2de2);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(74, 0, 224, 0.3);
    animation: ae-pulse 2s infinite 1.5s;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.ae-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 0, 224, 0.4);
}

.ae-success-message {
    display: none;
    background: #e6f7ff;
    color: #4a00e0;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 5px solid #4a00e0;
    animation: ae-fadeIn 0.5s ease-out;
}

@media (max-width: 768px) {
    .ae-contact-container {
        flex-direction: column;
    }
    
    .ae-contact-info, .ae-contact-form {
        width: 100%;
        padding: 40px 30px;
    }
    
    .ae-contact-section {
        padding: 10px;
    }
    
    .ae-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .ae-form-group {
        margin-bottom: 25px;
    }
}

.ae-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.ae-form-header i {
    font-size: 50px;
    color: #4a00e0;
    margin-bottom: 15px;
    animation: ae-bounce 2s infinite;
}

@keyframes ae-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.ae-contact-h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}
/*--------------------------------------------------------------------------------------
# Buttons Global Styles
------------------------------------------------------------------------*/
.btn-primary {
  background: linear-gradient(135deg, #1D497C, #8460F6);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(29, 73, 124, 0.3);
  font-family: var(--default-font);
  cursor: pointer;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #8460F6, #1D497C);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(132, 96, 246, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--heading-color);
  border: 2px solid var(--heading-color);
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: var(--default-font);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--heading-color);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Focus section styles */
.industry-card .card-title {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.industry-card .card-description {
  color: #333333;
  font-family: var(--default-font);
}

/* Brands section styles */
.brands-section .section-title {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.brands-section .brands-description {
  color: #333333;
  font-family: var(--default-font);
}

/* Offers section styles */
.offers .section-title h2 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.offers .section-title p {
  color: #333333;
  font-family: var(--default-font);
}

.offer-card h5 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.offer-card p {
  color: #333333;
  font-family: var(--default-font);
}

/* Slider section styles */
.slide-content .cta-button {
  background: linear-gradient(135deg, #1D497C, #8460F6);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(29, 73, 124, 0.3);
  font-family: var(--default-font);
}

.slide-content .cta-button:hover {
  background: linear-gradient(135deg, #8460F6, #1D497C);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(132, 96, 246, 0.4);
}

/* Add these styles to ensure all text elements use the new color scheme */
.hero .tagline,
.hero .description,
.slide .tagline,
.slide .description,
.grid-item p,
.feature-content p,
.card-description,
.brands-description,
.section-title p,
.about-text,
.product-description,
.features-card p,
.how-we-work p,
.feature-content p,
.testimonials .testimonial-body p,
.pricing .pricing-card .plan-description,
.contact .contact-form-container .form-intro p{
  color: #333333;
  font-family: var(--default-font);
}

.hero .hero-content h1,
.section-title h2,
.about-section .section-title,
.product-title,
.features-card h3,
.how-we-work h3,
.feature-content h3,
.testimonials .testimonial-footer h5,
.pricing .pricing-card .plan-name,
.contact .contact-form-container .form-intro h2,
.footer h4,
.grid-item p,
.industry-card .card-title,
.brands-section .section-title,
.offers .section-title h2,
.offer-card h5,
.slide .tagline {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Ensure all buttons use the new gradient */
.inquiry-btn,
.hero .btn-primary,
.footer .newsletter-form .btn-subscribe,
.scroll-top,
.testimonials .swiper-button-prev,
.testimonials .swiper-button-next,
.pricing .pricing-card.featured .btn-plan,
.slide-content .cta-button,
.cta-button,
.btn-primary {
  background: linear-gradient(135deg, #1D497C, #8460F6);
  color: #ffffff;
  border-radius: 50px;
}

.inquiry-btn:hover,
.hero .btn-primary:hover,
.footer .newsletter-form .btn-subscribe:hover,
.scroll-top:hover,
.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover,
.pricing .pricing-card.featured .btn-plan:hover,
.slide-content .cta-button:hover,
.cta-button:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, #8460F6, #1D497C);
}

/* **************************image box css***************************** */
body {
  font-family: var(--default-font);
  background: #f9f9f9;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 20px;
}

.grid-item {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 12px rgba(0,0,0,0.15);
  border-color: #1D497C;
}

.grid-item a {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
  padding: 15px;
}

.grid-item img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: #fff;
  margin-bottom: 10px;
}

.grid-item p {
  font-size: 14px;
  font-weight: bold;
  margin: 10px 0 0;
  color: #333333;
  transition: color 0.2s;
  font-family: var(--default-font);
}

.grid-item:hover p {
  color: #1D497C;
}

@media (max-width: 500px) {
  .grid-item img {
    height: 140px;
  }
}

.elementor-element, .elementor-lightbox {
    --swiper-theme-color: #000;
    --swiper-navigation-size: 44px;
    --swiper-pagination-bullet-size: 6px;
    --swiper-pagination-bullet-horizontal-gap: 6px;
}
.elementor-element {
    --widgets-spacing: 0px 0px;
    --widgets-spacing-row: 0px;
    --widgets-spacing-column: 0px;
}
.elementor-section {
    position: relative;
}
.elementor-element {
    --flex-direction: initial;
    --flex-wrap: initial;
    --justify-content: initial;
    --align-items: initial;
    --align-content: initial;
    --gap: initial;
    --flex-basis: initial;
    --flex-grow: initial;
    --flex-shrink: initial;
    --order: initial;
    --align-self: initial;
    align-self: var(--align-self);
    flex-basis: var(--flex-basis);
    flex-grow: var(--flex-grow);
    flex-shrink: var(--flex-shrink);
    order: var(--order);
}
.elementor *, .elementor :after, .elementor :before {
    box-sizing: border-box;
}

/* **************************************hero section slider start   ********************************/

.slider-container {
  position: relative;
  margin-top:0px;
  width: 100%;
  height: 530px;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 100%;
  height: 550px;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 20px;  
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.arrow:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.prev { left: 20px; }
.next { right: 20px; }

.dots-container {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: white;
  transform: scale(1.2);
}

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

@media (max-width: 1000px) {
 
 .slider-container,.slides, .slide {
  height: 300px;
  
 }

}

@media (max-width: 768px) {
 
 .tagline {
      font-size: 2.2rem;
  }
  
  .description {
      font-size: 1rem;
  }
  
  .hero-cta-button {
      padding: 10px 25px;
      font-size: 1rem;
  }
  
  .arrow {
      width: 40px;
      height: 40px;
      font-size: 1.5rem;
  }
}

@media (max-width: 499px) {

  .slider-container,.slides, .slide {
  /* height: 100%; */
  /* margin-top: 30px; */
  height:28vh;
  
 }

  .tagline {
      font-size: 1.8rem;
  }
  
  .description {
      font-size: 0.9rem;
  }
  
  .slide-content {
      padding: 20px;
  }
  
  .arrow {
      width: 35px;
      height: 35px;
      font-size: 1.2rem;
  }
  
  .prev { left: 10px; }
  .next { right: 10px; }
}

/* *************************************** hero section slider end     ********************************* */

/* **************************************** focous section end *********************************** */

 .industries {
            padding: 50px;
            /* max-width: 1200px; */
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #1e293b;
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #1D497C, #8460F6);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .industry-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .industry-card {
            /* background: white; */
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            cursor: pointer;
        }

        .card-img-container {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .industry-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .industry-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1D497C;
            font-size: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .card-content {
            padding: 25px 20px;
        }

        .card-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1D497C;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .card-description {
            color: #333333;
            font-size: 0.95rem;
            line-height: 1.5;
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        /* Hover Effects */
        .industry-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(29, 73, 124, 0.15);
        }

        .industry-card:hover img {
            transform: scale(1.1);
        }

        .industry-card:hover .industry-icon {
            transform: scale(1.1);
            background: white;
            color: #8460F6;
        }

        .industry-card:hover .card-title {
            color: #1D497C;
        }

        .industry-card:hover .card-description {
            max-height: 100px;
            opacity: 1;
        }

        /* Button Styling */
        .btn-container {
            text-align: center;
        }

        .btn-primary {
            display: inline-block;
            background: linear-gradient(to right, #1D497C, #8460F6);
            color: white;
            padding: 14px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(29, 73, 124, 0.3);
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(29, 73, 124, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .industry-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .industry-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
                gap: 20px;
            }
            
            .card-img-container {
                height: 180px;
            }
        }

        @media (max-width: 576px) {
            .industries {
                padding: 60px 15px;
            }
            
            .section-title {
                font-size: 1.75rem;
                margin-bottom: 40px;
            }
            
            .industry-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .card-img-container {
                height: 160px;
            }
        }

        /* Animation for cards on load */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .industry-card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .industry-card:nth-child(1) { animation-delay: 0.1s; }
        .industry-card:nth-child(2) { animation-delay: 0.2s; }
        .industry-card:nth-child(3) { animation-delay: 0.3s; }
        .industry-card:nth-child(4) { animation-delay: 0.4s; }
        .industry-card:nth-child(5) { animation-delay: 0.5s; }
        .industry-card:nth-child(6) { animation-delay: 0.6s; }
        .industry-card:nth-child(7) { animation-delay: 0.7s; }
        .industry-card:nth-child(8) { animation-delay: 0.8s; }

        /* ****************************** focus section end ********************************* */

        /* ****************************** brand marque section start   ********************************* */
         .brands-section {
            padding: 60px 20px;
            max-width: 100%;
            margin: 0 auto;
            background: linear-gradient(135deg, #f0f8ff 0%, #f5f0ff 100%);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .brands-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #1D497C, #8460F6, #10b981);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: #1D497C;
            position: relative;
        }


       
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #1D497C, #8460F6);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .brands-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            /* padding: 20px 0; */
        }

        .brands-track {
            display: flex;
            width: max-content;
            animation: scroll 40s linear infinite;
        }
        .brand-item img{
          width:1200px;
          height: 850px;
        }

        .brand-item {
            flex: 0 0 auto;
            width: 180px;
            height: auto;
            margin: 0 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .brand-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(29, 73, 124, 0.05) 0%, rgba(132, 96, 246, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .brand-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(29, 73, 124, 0.15);
        }

        .brand-item:hover:before {
            opacity: 1;
        }

        .brand-logo {
            max-width: 170px;
            max-height: 140px;
            object-fit: contain;
            filter: grayscale(30%);
            transition: all 0.3s ease;
        }

        .brand-item:hover .brand-logo {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        .brand-name {
            position: absolute;
            bottom: -25px;
            left: 0;
            width: 100%;
            text-align: center;
            font-size: 0.8rem;
            color: #666666;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .brand-item:hover .brand-name {
            bottom: 10px;
            opacity: 1;
        }

        .brands-track:hover {
            animation-play-state: paused;
        }

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

        .controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 15px;
        }

        .control-btn {
            background: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            color: #1D497C;
            font-size: 1.2rem;
        }

        .control-btn:hover {
            background: #1D497C;
            color: white;
            transform: translateY(-3px);
        }

        .brands-description {
            text-align: center;
            max-width: 700px;
            margin: 30px auto 0;
            color: #666666;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .brand-item {
                width: 160px;
                height: 110px;
                margin: 0 20px;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .brand-item {
                width: 140px;
                height: 100px;
                margin: 0 15px;
            }
            
            .brand-logo {
                max-width: 100px;
                max-height: 60px;
            }
        }

        @media (max-width: 576px) {
            .brands-section {
                padding: 40px 15px;
            }
            
            .section-title {
                font-size: 1.75rem;
                margin-bottom: 40px;
            }
            
            .brand-item {
                width: 120px;
                height: 90px;
                margin: 0 12px;
            }
            
            .brand-logo {
                max-width: 80px;
                max-height: 50px;
            }
            
            .brands-description {
                font-size: 1rem;
            }
        }

        /* ********************************* brand marque section end *********************************** */

        /* ********************************* What we offer start *********************************** */

         .offers {
            padding: 50px;
            /* background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ee 100%); */
            position: relative;
            overflow: hidden;
        }
        
        .container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .text-center {
            text-align: center;
        }
        
        .section-title {
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1D497C;
            margin-bottom: 0px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .section-title h2 span {
            color: #1D497C;
            position: relative;
        }
        
        /* .section-title h2 span::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #1D497C, #8460F6);
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: left;
            animation: lineExpand 1s ease 0.5s forwards;
        } */
        
        .section-title p {
            color: #333333;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease 0.3s forwards;
        }
        
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }
        
        .col-lg-4 {
            flex: 0 0 33%;
            max-width: 33%;
            padding: 0 15px;
            margin-bottom: 30px;
        }
        
        .offer-card {
            background: #fff;
            padding: 40px 25px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .offer-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #1D497C, #8460F6);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .offer-card:hover::before {
            transform: scaleX(1);
        }
        
        .offer-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(29, 73, 124, 0.15);
        }
        
        .icon {
            font-size: 50px;
            color: #1D497C;
            margin-bottom: 25px;
            display: inline-block;
            position: relative;
            z-index: 1;
            transition: transform 0.4s ease;
        }
        
        .offer-card:hover .icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .offer-card h5 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1D497C;
            position: relative;
            z-index: 1;
        }
        
        .offer-card p {
            font-size: 0.95rem;
            color: #333333;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }
        
        .offer-card .card-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(135deg, rgba(29, 73, 124, 0.03) 0%, rgba(132, 96, 246, 0.03) 100%); */
            background: linear-gradient(135deg, #f0f8ff 0%, #f5f0ff 100%);
            opacity: 1;
            transition: opacity 0.4s ease;
        }
        
        .offer-card:hover .card-bg {
            opacity: 0;
        }
        
        /* Animation classes */
        .animate-card {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        /* Keyframes */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes lineExpand {
            to {
                transform: scaleX(1);
            }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .col-lg-4 {
                flex: 0 0 50%;
                max-width: 50%;
            }
        }
        
        @media (max-width: 768px) {
            .col-lg-4 {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }

        /* ********************************* What we offer end *********************************** */
        /* *********************************about paage mission vision start ******************* */

        .ari-mvv-section {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f8fbff 0%, #f5f0ff 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .ari-mvv-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .ari-mvv-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .ari-mvv-title {
            font-size: 42px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .ari-mvv-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #4a00e0, #8e2de2);
            border-radius: 2px;
        }

        .ari-mvv-grid-layout {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .ari-mvv-card-item {
            background: white;
            padding: 50px 30px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(74, 0, 224, 0.1);
        }

        .ari-mvv-card-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .ari-mvv-card-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #4a00e0, #8e2de2);
        }

        .ari-mvv-icon-box {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #4a00e0, #8e2de2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            position: relative;
        }

        .ari-mvv-icon-box::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border-radius: 50%;
            background: linear-gradient(135deg, #4a00e0, #8e2de2);
            opacity: 0.2;
            z-index: -1;
        }

        .ari-mvv-icon {
            font-size: 32px;
            color: white;
        }

        .ari-mvv-card-title {
            font-size: 24px;
            color: #1a1a1a;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .ari-mvv-card-text {
            font-size: 16px;
            line-height: 1.7;
            color: #555;
        }

        /* Mission Card Specific */
        #ari-mission-card .ari-mvv-icon-box {
            background: linear-gradient(135deg, #4a00e0, #6a11cb);
        }

        /* Vision Card Specific */
        #ari-vision-card .ari-mvv-icon-box {
            background: linear-gradient(135deg, #8e2de2, #4a00e0);
        }

        /* Values Card Specific */
        #ari-values-card .ari-mvv-icon-box {
            background: linear-gradient(135deg, #6a11cb, #8e2de2);
        }

        

        /* Responsive Design */
        @media (max-width: 600px) {
            .ari-mvv-grid-layout {
                grid-template-columns: 1fr;
                gap: 30px;
                max-width: 600px;
                margin: 0 auto;
            }
            
            .ari-mvv-title {
                font-size: 36px;
            }
            
            .ari-mvv-card-item {
                padding: 40px 30px;
            }
        }

        @media (max-width: 768px) {
            .ari-mvv-section {
                padding: 60px 0;
            }
            
            .ari-mvv-title {
                font-size: 32px;
            }
            
            .ari-mvv-card-item {
                padding: 35px 25px;
            }
            
            .ari-mvv-icon-box {
                width: 70px;
                height: 70px;
                margin-bottom: 25px;
            }
            
            .ari-mvv-icon {
                font-size: 28px;
            }
            
            .ari-mvv-card-title {
                font-size: 22px;
            }
        }

        @media (max-width: 576px) {
            .ari-mvv-title {
                font-size: 28px;
            }
            
            .ari-mvv-card-item {
                padding: 30px 20px;
            }
            
            .ari-mvv-icon-box {
                width: 60px;
                height: 60px;
                margin-bottom: 20px;
            }
            
            .ari-mvv-icon {
                font-size: 24px;
            }
            
            .ari-mvv-card-title {
                font-size: 20px;
                margin-bottom: 15px;
            }
            
            .ari-mvv-card-text {
                font-size: 15px;
            }
        }