/**
* Template Name: Arsha
* Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
* Updated: Jun 29 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,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: Calibri, sans-serif;
  --nav-font: "Montserrat", 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: #00111e; /* 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: #37517e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #47b2e4; /* 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. */
  --background-blue-color:radial-gradient(ellipse at left, #0a1e4d 60%, #0a2a9c 100%);/* Default color we use for blue background */
  --background-beage-color:#fff7ec;
}

/* 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: #ffffff;
  --nav-hover-color: #47b2e4;
  --nav-mobile-background-color: #00111e;
  --nav-dropdown-background-color: #00111e;
  --nav-dropdown-color: #ffffff;
  --nav-dropdown-hover-color: #47b2e4;
  --background-color: #ffffff;
  --default-color: #ffffff;
  /* --heading-color: #ffffff; */
  --surface-color: #4668a2;
  --contrast-color: #ffffff;
  --button-color:#ffb300;
  --button-hover-color: #ffcb00;
}
/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
:root {
  --background-blue-color: radial-gradient(ellipse at left, #0a1e4d 60%, #0a2a9c 100%);
  --text-light: #eee;
  --link-color: #aad4ff;
  --link-hover: #ffffff;
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  z-index: -1;
}

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

/* Mega Menu Styles */
/* Ensure the navmenu stays correctly aligned */
/* Ensure the navmenu stays correctly aligned */
/* Navigation Menu Wrapper */
/* Navigation Menu Wrapper */
/* ---------------- NAV MENU ---------------- */
/* ===========================
   NAVIGATION MENU
=========================== */
  .navmenu {
    position: relative;
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;

  }

  /* Top-level nav items */
  .navmenu-ul > li {
    position: relative;
    padding-right: 20px;
  }

  /* Arrow for top-level items */
  .navmenu-ul > li::after {
    content: '▼';
    position: absolute;
    color: white;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: transform 0.3s ease;
  }

  .navmenu-ul > li:hover::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .navmenu-ul>li:hover{

    border-bottom: 2px solid var(--button-color);

  }
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: transform 0.3s ease, background 0.3s ease;
  background: transparent; /* default transparent */
}

.header.scrolled {
  background: var(--background-blue-color); /* background when scrolling up */
}/* ===========================
   MEGA MENU
=========================== */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;                     /* center horizontally by default */
  transform: translateX(-50%);   /* shift by 50% of its width */
  background: #0a1e4d;
  padding: 20px 30px;
  box-sizing: border-box;
  display: none;
  z-index: 999;
  min-width: max-content;
  max-width: 100vw;
  overflow-x: auto;
  opacity: 0;
  transition: opacity 0.5s ease; /* fade-in effect */
}

.mega-menu.show {
  opacity: 1;
  display: block;
}

.mega-menu-content {
  display: flex;
  gap: 150px;
}

/* ---------------------------
   MEGA SECTION
--------------------------- */
.mega-section {
  min-width: 160px;
}

.mega-section h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px; /* space between icon and text */
}

/* Category icon */
.category-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 8px;
  /* Filter to approximate #ffb300 exactly */
filter: invert(40%) sepia(95%) saturate(800%) hue-rotate(1deg);
}



.mega-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-section ul li {
  line-height: 1.3;
}

.mega-section ul li a {
  color: #fff;
  padding-left: 40px !important;
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 3px 0;
  transition: all 0.2s;
}

.mega-section ul li a:hover {
  color: var(--button-color, gold);
  padding-left: 6px;
}

/* ---------------------------
   3x3 GRID LAYOUT
--------------------------- */
.mega-section.grid-3x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 20px;
}

.mega-section.grid-3x3 h4 {
  grid-column: span 3;
  margin-bottom: 10px;
}

.mega-section.grid-3x3 ul {
  display: contents;
}

/* ---------------------------
   LEFT & RIGHT COLUMNS
--------------------------- */
.mega-left, .mega-right {
  display: inline-block;
  vertical-align: top;
}

.mega-right a {
  display: block;
  padding: 6px 0;
  color: #fff;
  text-decoration: none;
}

/* ---------------------------
   SHOW ON HOVER
--------------------------- */
.nav-item:hover .mega-menu {
  display: block;
}

/* ===========================
   HEADER
=========================== */
.header {
  background: transparent;
  transition: background 0.5s ease, transform 0.5s ease;
  z-index: 997;
}


.header:hover,
.header.scrolled {
  background: var(--background-blue-color);
}

/* Logo */
.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 80px;
  margin-right: 8px;
  filter: brightness(0) invert(1);
  margin-bottom: 10px;
}

.header .logo .brand-logo {
  width: 250px !important;
  height: 100px !important;
  max-width: 100%;
  display: block;
  margin-top: -6px; /* moves logo up by 10px */
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Get Started button */
.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #000;
  background-color: var(--button-color);
  font-size: 16px;
  font-weight: bold;
  padding: 8px 25px;
  margin-bottom: 11px;
  margin-left: 30px;
  border-radius: 20px;
}

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

/* ===========================
   MEDIA QUERIES
=========================== */

/* Desktop below 1200px */
@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; }
}

/* Tablet / mobile view below 991px */
@media (max-width: 991px) {
  .navmenu-ul {
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 10px 0;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .navmenu-ul.active {
    display: block;
    animation: fadeIn 0.3s ease;
  }

  .navmenu-ul li {
    margin: 10px 0;
    text-align: center;
  }

  .mobile-nav-toggle { display: block; color: #000; }

  /* Hide mega menu on mobile */
  .mega-menu {
    display: none !important;
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
  }
}

/* Small screens below 576px */
@media (max-width: 576px) {
  .header .logo h1 {
    font-size: 22px;
    letter-spacing: 1px;
  }
  .header .btn-getstarted {
    font-size: 14px;
    padding: 6px 15px;
    margin-left: 10px;
  }
  .header {
    background: linear-gradient(135deg, #00111e, #022958);
  }
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* --------------------- */
/* SERVICE SECTION */
/* --------------------- */
.services-section h6 {
  font-size: 3rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.services-section .underline {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #8f16cf, #606bff);
  margin-bottom: 25px;
}

.services-section p {
  font-size: 1.2rem;
  font-family: 'Montserrat', 'Noto Sans';
  color: #443f3f;
  line-height: 1.6;
}

.service-card {
  transition: all 0.3s ease-in-out;
  transform-origin: center;
  border-radius: 1rem;
  background: #e3e6e9;;
}

.service-card:hover {
  transform: scale(1.025);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

/* Fixed image height with cover fit */
.fixed-img {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

/* Card title */
.card-body h6 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.card-body h6:hover {
  color: #f7035a; /* #ff3c00; */
  cursor: pointer;
  text-decoration: underline;
}

/* Card description */
.card-text {
  font-size: 0.95rem;
  color: #333;
  font-family: 'Montserrat',sans-serif;
}




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


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
    margin-bottom: 13px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    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 .megamenu {
    position: static;
  }

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

  .navmenu .megamenu ul li {
    flex: 1;
  }

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

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

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

  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
}

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

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

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

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

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

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

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

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    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;
  }
}

/*--------------------------------------------------------------
# OutSourcing Services Section
--------------------------------------------------------------*/

.outsourcing-section {
  max-width: 1600px;
  margin: auto;
}

.outsourcing-section h2{
  margin-bottom: 15px;
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #242b64;
  margin-bottom: 20px;
  line-height: 1.4;
  letter-spacing: -0.5px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header p {
  text-align: left;
  max-width: 1400px;
  font-size: 18px;
  color: #1f0f35;
  font-family: sans-serif;
  line-height: 1.8;
  letter-spacing: 0.6px;
}

.outsourcing-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.left-column,
.right-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
  border-radius: 12px;
  overflow: hidden;
  /* cursor: pointer; */
  transition: all 0.3s ease-in-out;
}

.small-card {
  height: 360px;
}

.large-card {
  height: 560px;
}

.card .overlay {
  background: rgba(0, 0, 0, 0.45);
  height: 100%;
  width: 100%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.4s ease-in-out;
}

.content {
  max-width: 90%;
}

.content h3 {
  font-size: 2.3rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
}

.content h3:hover {
  cursor: pointer;
}

.content p,
.content a {
  opacity: 0;
  max-height: 0;
  font-size: 1.3rem;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

.content a:hover {
  color: #88d2e9;
  text-decoration: underline;
}
/* Show only on hover */
.card:hover .content p,
.card:hover .content a {
  opacity: 1;
  max-height: 200px;
}

/* Link style */
.content a {
  font-weight: bold;
  color: #fff;
  text-decoration: underline;
  display: inline-block;
  margin-top: 10px;
}

/* Responsive behavior */
/* @media (max-width: 1024px) {
  .outsourcing-grid {
    flex-direction: column;
  }
} */

@media (max-width: 1024px) {
  .outsourcing-grid {
    flex-direction: column;
  }

  .small-card,
  .large-card {
    height: 400px;
  }

  .section-header p {
    text-align: center;
    font-size: 17px;
    padding: 0 20px;
  }

  .content h3 {
    font-size: 2rem;
  }

  .content p,
  .content a {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .outsourcing-section {
    padding: 30px 20px;
    overflow-x: hidden;
  }

  .outsourcing-grid {
    flex-direction: column;
    gap: 20px;
  }

  .left-column,
  .right-column,
  .card {
    width: 100%;
  }

  .card {
    height: 400px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .section-header p {
    font-size: 16px;
    padding: 0 10px;
    text-align: center;
  }

  .card .overlay {
    padding: 20px;
  }

  .card h3 {
    font-size: 1.6rem;
  }

  .card p {
    font-size: 1rem;
  }
}

/* Small Mobile Devices (≤480px) */
@media (max-width: 480px) {
  .small-card,
  .large-card {
    height: 320px;
  }

  .outsourcing-section h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 15px;
    padding: 0 10px;
    line-height: 1.6;
  }

  .content h3 {
    font-size: 1.5rem;
  }

  .content p,
  .content a {
    font-size: 1rem;
  }

  .card .overlay {
    padding: 15px;
  }
}

/* ------------------------------------------------------------- */


/* ------------------------------------------------------------- */
/* Success story section */
/* ------------------------------------------------------------- */

.success-story-section {
  background-color: #fffbf4;
  padding: 60px 20px;
  font-family: sans-serif;
}

.success-story-section .container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.success-story-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}

.success-story-section p {
  font-size: 1.1rem;
  color: #2e2e2e;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

.success-story-section .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}
.card {
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.success-story-section .grid .h3:hover {
  color: var(--background-blue-color);
}

.success-story-section .card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 22px;
  background: #faf5ec;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.success-story-section .card:hover {
  cursor: pointer;
  background: #fff7e9;
}

.success-story-section .card.highlight {
  background-color: #faefdb;
}

.success-story-section .card.highlight:hover {
  background-color: #ffeece;
} 

.success-story-section .icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  background-color: #faefdb;
  border-radius: 50%;
  padding: 10px;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-story-section .card h3 {
  font-size: 1.3rem;
  margin: 0 0 8px;
  font-weight: 600;
  color: #222;
}

.success-story-section .card p {
  margin: 0;
  font-size: 17px;
  letter-spacing: 0.3px;
  font-family: sans-serif;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .success-story-section h2 {
    font-size: 2rem;
  }

  .success-story-section p {
    font-size: 1rem;
  }

  .success-story-section .grid {
    gap: 15px;
  }

  .success-story-section .card {
    flex-direction: column;
    align-items: flex-start;
    height: 250px;
  }

  .success-story-section .icon {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  .success-story-section {
    padding: 80px 20px;
  }
}

/* Medium screens (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .success-story-section h2 {
    font-size: 2.2rem;
  }
  .success-story-section p {
    font-size: 1rem;
  }
  .success-story-section .card {
    padding: 20px;
  }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .success-story-section h2 {
    font-size: 2rem;
  }
  .success-story-section p {
    font-size: 1rem;
  }
  .success-story-section .grid {
    gap: 12px;
  }
  .success-story-section .card h3 {
    font-size: 1.2rem;
  }
  .success-story-section .card p {
    font-size: 15px;
  }
}

/* Small screens (480px to 767px) */
@media (max-width: 767px) and (min-width: 480px) {
  .success-story-section {
    padding: 40px 15px;
  }
  .success-story-section h2 {
    font-size: 1.8rem;
  }
  .success-story-section p {
    font-size: 0.95rem;
  }
  .success-story-section .grid {
    gap: 10px;
  }
  .success-story-section .card {
    padding: 16px;
  }
  .success-story-section .icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

/* Extra small screens (below 480px) */
@media (max-width: 479px) {
  .success-story-section {
    padding: 30px 10px;
  }
  .success-story-section h2 {
    font-size: 1.6rem;
  }
  .success-story-section p {
    font-size: 0.9rem;
  }
  .success-story-section .grid {
    gap: 8px;
  }
  .success-story-section .card {
    padding: 14px;
  }
  .success-story-section .icon {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
  }
}



/*--------------------------------------------------------------
# Tech Expertise
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Tech Expertise
--------------------------------------------------------------*/
.tech-expertise {
  background-color: var(--background-color);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.section-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tech-logos-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.tech-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: absolute;
  width: 100%;
  transition: transform 1s ease-in-out; /* Smooth movement */
}

.logo-item {
  width: 120px; /* Adjust logo size */
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

/* Row Animations */

/* Right to Left */
.right-to-left {
  animation: moveRightToLeft 15s linear infinite;
}

@keyframes moveRightToLeft {
  0% {
    transform: translateX(0); /* Start from center */
  }
  50% {
    transform: translateX(-100%); /* Move to the left */
  }
  100% {
    transform: translateX(0); /* Move back to center */
  }
}

/* Left to Right */
.left-to-right {
  animation: moveLeftToRight 15s linear infinite;
}

@keyframes moveLeftToRight {
  0% {
    transform: translateX(0); /* Start from center */
  }
  50% {
    transform: translateX(100%); /* Move to the right */
  }
  100% {
    transform: translateX(0); /* Move back to center */
  }
}

/* Optional: Hover Effects */
.logo-item:hover img {
  opacity: 0.8;
}



/*
*******************************************************
Global-Footer
*******************************************************
*/
.footer .copyright {
  padding: 20px 0 10px;
  color: #929090;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  align-items: center;
}

.footer .copyright p {
  margin: 0;
}

.footer {
  background: var(--background-blue-color);
  color: var(--text-light);
  font-size: 14px;
  padding: 40px 20px 50px;
  font-family: var(--font-family);
  position:relative;
}
.flex-5 h4 {
  font-size: 23px !important;
 border-bottom: none !important;
  
}

.container {
  max-width: 1600px;
  width: 100%;
  margin: auto;
  padding: 0 20px;
}

.dis-flex i {
  font-size: 21px;
  margin: 0 !important; /* remove extra space */
  padding-left: 20px !important;
}


.flex-5 {
  flex: 1 1 30%;
  min-width: 120px;
  text-decoration: none;
}

.flex-5 ul li a {
  color: rgb(197, 196, 196); /* change to your desired color */
  font-size: 15px;
}


.count-col h5,
.count-col p {
  white-space: nowrap;
}

.footer a {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover,
.footer a:focus {
  color: var(--link-hover);
  text-decoration: underline;
}

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

/* Flex utilities */
.dis-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}

/* Footer Top Section */
.footer-top {
    display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 30px;
  padding-right: 10px;
  gap: 30px;
}

.count-sec {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 110px;
  flex: 1 1 65%;
  min-width: 280px;   /* prevents shrinking too much */
}

.count-col {
  min-width: 130px;
  flex: 1 1 120px; /* flexible, but min 120px */
  color: #fff;
}


.count-col h5 {
  font-size: 1.5rem;
  margin: 0 0 5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.count-col p {
  margin: 0;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.subs-box{
  margin-right: 150px !important;

}
.subs-box ul {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  align-items: center;
  
}

.subs-box ul li {
  flex-shrink: 0;
}

.subs-box img {
  display: block;
  max-width: 100%;
  /* height: auto; */
}

/* Footer Middle Section */
.footer-middle {
  gap: 32px;
  margin-bottom: 10px;
}

.flex-5 {
  flex: 1 1 18%;
  min-width: 150px;
}

.footer-middle h4 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #fff;
  border-bottom: 2px solid #aad4ff;
  padding-bottom: 8px;
}

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

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

.footer-middle li a {
  font-weight: 500;
  font-size: 0.9rem;
}

/* Footer Bottom Section */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  gap: 20px;
  padding-top: 30px;
  flex-wrap: wrap;
}

.footer-bottom > div {
  flex: 1; /* equal width for all 3 columns */
  min-width: 200px; /* ensures they don't shrink too small */
}

.footer-bottom > div {
  flex: 1; /* equal width for all 3 columns */
  min-width: 200px; /* ensures they don't shrink too small */
}

/* Optional: center-align text inside each block */
.footer-bottom > div {
  text-align: center;
}

.flex-4 {
  flex: 1 1 30%;
  min-width: 200px;
}
.flex-4 img{
  margin-right: 100px;
}
.flex-4 h3{
  font-size: 17px;
}

.logo-box h3,
.social-box h3 {
  margin-left: 20px;
  font-weight: 700;
  color: #fff;
  /* margin-bottom: 10px; */
}




.dis-flex a i {
  color: white; /* your desired color */
  font-size: 20px; /* optional: change size */
}

.dis-flex a i:hover {
  color:rgb(194, 193, 193) ; 
}

.social-box .dis-flex {
  display: flex;
  gap: 10px; /* adjust spacing between icons */
  justify-content: flex-start; /* align to the left */
}

.social-box .dis-flex a {
  margin-right: 15px;
  display: inline-block;
}

.social-box img {
  filter: brightness(0) invert(1); /* make icons white */
  transition: filter 0.3s ease;
}

.social-box a:hover img {
  filter: brightness(0) invert(0.6);
}
.footer-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  white-space: nowrap; /* Prevent line breaks */
  flex-wrap: nowrap;   /* Force one line */
}

.footer-rating .star-outer {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-rating .star-icon {
  margin-right: 20px;
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url('data:image/svg+xml;utf8,<svg fill="yellow" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polygon points="12 17.27 18.18 21 16.54 13.97 22 9.24 14.81 8.63 12 2 9.19 8.63 2 9.24 7.46 13.97 5.82 21"/></svg>') no-repeat center;
  background-size: contain;
}

.footer-rating .rating-text {
  margin-left: 6px;
  font-size: 0.9rem;
  color: #fff;
}

.footer-rating .client-outer {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-rating .rate-us {
  color: #ffd700;
  font-weight: bold;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #ffd700; /* orange frame */
  border-radius: 5px;
  text-decoration: none;
}

.footer-rating .rate-us:hover {
  text-decoration: underline;
}

.footer-rating .client-info {
  font-size: 0.85rem;
  color: #ddd;
}

/* --------------------------------- */
/* Footer Responsive Media Queries   */
/* --------------------------------- */

/* Large desktops (1200px and above) */
@media (min-width: 1200px) {
  .footer .container {
    max-width: 1400px;
    padding: 0 30px;
  }
  .count-sec {
    gap: 20px 120px;
  }
  .subs-box {
    margin-right: 150px !important;
  }
}

/* Medium desktops / laptops (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .footer .container {
    max-width: 1000px;
    padding: 0 20px;
  }
  .count-sec {
    gap: 20px 80px;
  }
  .subs-box {
    margin-right: 100px !important;
  }
  .flex-5 h4 {
    font-size: 20px;
  }
  .footer-middle li a {
    font-size: 0.85rem;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .footer .container {
    max-width: 750px;
    padding: 0 15px;
  }
  .footer-middle {
    flex-wrap: wrap;
    gap: 20px;
  }
  .flex-5 {
    flex: 1 1 45%;
    min-width: auto;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .count-sec {
    flex-wrap: wrap;
    gap: 15px 40px;
  }
  .subs-box {
    margin-right: 0 !important;
    justify-content: center;
  }
  .footer-rating {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}

/* Mobile devices (<768px) */
@media (max-width: 767px) {
  .footer .container {
    max-width: 100%;
    padding: 0 10px;
  }

  .footer-top,
  .footer-middle,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .count-sec {
    flex-direction: column;
    gap: 10px 0;
  }

  .count-col {
    flex: 1 1 100%;
    min-width: auto;
  }

  .flex-5 {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .subs-box ul {
    justify-content: center;
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .social-box h3,
  .social-box .dis-flex {
    margin-left: 0;
  }

  .footer-rating {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    white-space: normal;
  }

  .footer-bottom > div {
    text-align: center;
    min-width: 100%;
  }

  .footer-middle h4 {
    font-size: 1rem;
  }

  .footer-middle li a {
    font-size: 0.8rem;
  }

  .count-col h5 {
    font-size: 1.2rem;
  }

  .count-col p {
    font-size: 0.75rem;
  }
}




/*--------------------------------------------------------------
# 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);
  }
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

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

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

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

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  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
--------------------------------------------------------------*/
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 60px 0;
  text-align: center;
  background: #000; /* Black background */
}

/* Make canvas interactive under hero text */
canvas#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Place above overlay but below content */
  pointer-events: auto; /* Allow hover interaction */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2; /* Keep text above particles */
  max-width: 1500px;
}

.hero-title {
  font-size: 5.5rem;
  font-family: sans-serif;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 2rem;
  color: #f0f0f0;
  max-width: 80%;
  margin: 0 auto;
}

.btn-get-started {
  color: #25138b;
  background: #fcecd9;
  font-weight: bold;
  font-size: 15px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 20px;
}

.btn-get-started:hover {
  background: #f78a0f;
  color: #0000008f;
}

/* Large screens */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }
  .hero-subtitle {
    font-size: 1.8rem;
    max-width: 90%;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .hero {
    padding: 100px 20px 50px 20px;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 130px 15px 40px 15px; /* Added gap from navbar */
  }
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.3;
  }
  .hero-subtitle {
    font-size: 1.2rem;
    max-width: 95%;
  }
  .btn-get-started {
    font-size: 14px;
    padding: 8px 20px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero {
    padding: 140px 10px 30px 10px; /* More gap for smaller devices */
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .btn-get-started {
    font-size: 13px;
    padding: 8px 18px;
  }
}



/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  /* padding: 12px 0; */
  color: black;
  text-align: center; /* Center align text */
  /* background: #00111e; */

}

.text-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.text-section h1 {
  font-size: 55px;
  background: linear-gradient(90deg, #4285f4, #9b72cb, #d96570);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  margin: 10px 0; /* Optional margin */

  /* Highlight effect */
  position: relative;
  display: inline-block;

}

.text-section h1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url('/assets/img/pen_circle.png'); */
  z-index: -1;
  transform: translate(2px, 2px); /* Offset the highlight */
  border-radius: 5px; /* Optional: gives a rounded effect */
}

.text-section h2 {
  text-transform: uppercase;
  font-size: 24px;
}

.text-section p {
  margin: 10px 0;
  font-size: 22px;
}


/* -------------------------------------------------------------- */
/* Who we are section */
/* -------------------------------------------------------------- */
.who-we-are-section {
  padding: 0px 20px;
  background-color: #fff;
  text-align: center;
  /* font-family: sans-serif; */
}

/* === STATISTICS SECTION === */
.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  /* margin-bottom: 30px; */
}

.stat-box {
  padding: 0px 40px;
  text-align: center;
}

.stat-box h2 {
  font-size: 3.4rem;
  font-family: Arial;
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  font-weight: bold;
  /* color: #ffffff; */
  color: #0d0000;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  line-height: 0.8;
  margin-bottom: 1rem;
}

.stat-box p {
  font-size: 16px;
  color: #000;
  margin-top: 5px;
  font-weight: 500;
}

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

/* === DIVIDER LINE BETWEEN SECTIONS === */
.divider {
  border: none;
  height: 1px;
  background: #ccc;
  margin: 40px auto;
  width: 80%;
}

/* === TRUST SECTION === */
.trust-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 60px;
    padding-bottom: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 1.25rem;
    transform: scale(1.1);
}

.trust-box {
  background: linear-gradient(135deg, #002766, #003a8c);
  color: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: left;
  width: 300px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.trust-box h4 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #a0c4ff;
  margin-bottom: 10px;
}

.trust-box h2 {
  font-size: 2.2rem;
  text-align: center;
  font-family: Arial;
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
  color: #e5eaf0fd;
}

.trust-box p {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin: 10px 0;
}

.trust-box a {
  color: #ffcc00;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
}

.logos-container {
  max-width: 24 0px;
  flex-shrink: 0;
}

.logo-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* === MEDIA QUERIES === */
@media (max-width: 992px) {
  .stats-container {
    flex-direction: column;
    align-items: center;
  }

  .vertical-divider {
    display: none;
  }

  .trust-section {
    flex-direction: column;
    gap: 30px;
  }

  .trust-box {
    text-align: center;
  }

  .trust-box h2 {
    font-size: 28px;
  }

  .trust-box h4,
  .trust-box p,
  .trust-box a {
    text-align: center;
  }

  .logos-container {
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .stat-box h2 {
    font-size: 28px;
  }

  .stat-box p {
    font-size: 14px;
  }

  .trust-box {
    width: 100%;
    padding: 30px 20px;
  }

  .logos-container {
    max-width: 90%;
  }
}


/* Section Base */
.ehr-tech-section {
  padding: 60px 20px;
  background: #fdf6ec;
  text-align: center;
  overflow: hidden;
}
.ehr-tech-link{
color: black !important;
  -webkit-text-fill-color: black !important;   text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 20px;
  display: inline-block;
}
.ehr-tech-link:hover {
  color: var(--button-color);
  text-decoration: underline;
}
.ehr-tech-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #224069;
}

.ehr-tech-description {
  max-width: 860px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
}

/* Marquee */
.ehr-tech-marquee {
  position: relative;
  width: 71%;
  overflow: hidden;
  margin: 0 auto 4px auto;
}

.ehr-tech-track {
  display: flex;
  gap: 40px;
  animation: ehr-scroll 40s linear infinite;
  will-change: transform; /* smoother performance */
}

.ehr-tech-item {
  flex: 0 0 auto;
  text-align: center;
  min-width: 120px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ehr-tech-item img {
  max-width: 100px; /* increased from 80px */
  margin: 0 auto 12px;
  display: block;
}

.ehr-tech-marquee:hover .ehr-tech-track {
  animation-play-state: paused;
}


@keyframes ehr-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-45%); } /* only half, because we duplicated */
}

@media (max-width: 568px) {
  .ehr-tech-title {
    font-size: 2.2rem;
  }
  .ehr-tech-track {
    display: flex;
    gap: 10px;
    animation: ehr-scroll 10s linear infinite;
    will-change: transform; /* smoother performance */
  }
  .ehr-tech-description {
    font-size: 1rem;
  }
  .ehr-tech-marquee {
    width: 90%;
  }
  .ehr-tech-item img {
    max-width: 80px; /* smaller logos on mobile */
  }
}
@media (max-width: 768px) {
  .ehr-tech-title {
    font-size: 2.2rem;
  }
  .ehr-tech-track {
    display: flex;
    gap: 10px;
    animation: ehr-scroll 10s linear infinite;
    will-change: transform; /* smoother performance */
  }
}
@media (max-width: 992px) {
  .ehr-tech-title {
    font-size: 2.2rem;
  }
  .ehr-tech-track {
    display: flex;
    gap: 10px;
    animation: ehr-scroll 20s linear infinite;
    will-change: transform; /* smoother performance */
  }
}






/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services-section {
  padding: 60px 40px;
  max-width: 1700px;
  margin: 0 auto;
  background: #ffffff;
}

.services-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.services-intro {
  flex: 0 0 35%;
  position: sticky;
  top: 10%;
  align-self: flex-start;
  padding-right: 20px;
}

.services-intro h2 {
  font-size: 44.8px;
  /* font-size: 2.8em; */
  font-weight: 900;
  font-weight: bold;
  color: #242b64;
  margin-bottom: 20px;
  line-height: 1.4;
  letter-spacing: -0.5px;
}

.services-intro p {
  font-size: 18px;
  color: #1f0f35;
  font-family: sans-serif;
  line-height: 1.8;
}

.digital-first-promo {
  position: relative;
  background: #fdfdfd;
  border-radius: 12px;
  padding: 32px 24px;
  margin-top: 30px;
  box-shadow: 0 0 0 1px #eee;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  overflow: hidden;
}

.promo-icon {
  margin-bottom: 40px;  
}

.promo-content h3 {
  font-size: 32px;
  font-weight: 800;
  color: #121212;
  margin-bottom: 12px;
}

.promo-content h3 .highlight {
  color: #08868fbe;
}

.promo-content p {
  font-size: 18px;
  color: #313131;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 700px;
  font-family: sans-serif;
  /* letter-spacing: 0.6px; */

}

.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--button-color);
  color: #000;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.promo-btn:hover {
background: var(--button-hover-color);

  color: #000;
}

.promo-btn .arrow {
  font-size: 16px;
}


.promo-pattern {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
}


.service-icon-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

.service-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

/* Shared Icon Button Base Style */
.icon-button {
  width: 48px;
  height: 48px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* Light Theme Arrow Button */
.service-card.light .icon-button {
  border: 3px solid #9c9494;
  background-color: transparent;
}

.service-card.light .icon-button:hover {
  height: 42px;
  width: 42px;
}

.service-card.light .icon-button svg {
  stroke: #555;
}

/* Dark Theme Arrow Button */
.service-card.gradient .icon-button {
  border: 3px solid rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0.1);
}

.service-card.gradient .icon-button:hover {
  height: 42px;
  width: 42px;
}

.service-card.gradient .icon-button svg {
  stroke: #ffffff;
}

.icon-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
}

.services-cards-container.vertical {
  flex: 1;
  max-height: 80vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-right: 10px;
  scroll-behavior: smooth;
}

/* Service Card */
.service-card {
  padding: 30px 25px;
  border-radius: 16px;
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); */
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  /* font-family: 'Montserrat', 'Noto Sans'; */
}

.service-card p {
  font-size: 18px;
  font-family: sans-serif;
  letter-spacing: 0.4px;
  color: inherit;
  margin-bottom: 18px;
  line-height: 1.6;
}

.service-card.light {
  background-color: #f6f7f2;
  color: #222;
}

.service-card.light h3 {
  color: #000000;
}

/* .service-card.light h3:hover {
  text-decoration: underline;
  cursor: pointer;
} */

.service-card.gradient {
  background: linear-gradient(135deg, #00111e, #0053ba);
  color: #fff;
}

.service-card.gradient h3 {
  color: #ffffff;
}
 
/*.service-card.gradient h3:hover {
  text-decoration: underline;
  cursor: pointer;
} */

/* Bullet Format: Custom pills */
.service-card ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}


.service-card ul li {
  position: relative;
  font-size: 17px;
  padding: 8px 12px 8px 36px;
  padding-left: 36px; 
  border-radius: 30px;
  color: inherit;
  letter-spacing: 0.4px;
}

/* .service-card ul li:hover {
  cursor: pointer;
  text-decoration: underline;
} */


.service-card ul li::before {
  content: "✔";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--button-color);
  font-size: 14px;
}

/* Scrollbar */
.services-cards-container.vertical::-webkit-scrollbar {
  width: 6px;
}
.services-cards-container.vertical::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 8px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .services-wrapper {
    flex-direction: column;
  }

  .services-intro {
    position: static;
    margin-bottom: 30px;
  }

  .services-cards-container.vertical {
    max-height: unset;
    overflow-y: visible;
  }

  .service-card {
    width: 100%;
  }

  .service-card ul {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# industries Section
--------------------------------------------------------------*/

.industries {
  padding: 60px 0;
}

.industries .section-title h1{
  color: rgb(255, 255, 255);
}

.industries .btn-get-started {
  color: var(--contrast-color);
  background: linear-gradient(90deg, #8f16cf, #606bff) !important; /* Custom gradient colors */
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 20px 5px 20px;
  border-radius: 50px;
  transition: 0.5s;
}

.industries .btn-get-started:hover {
  color: #00d9ff;

}

.industry-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
}

.industry-card {
  position: relative;
  width: 100px;
  height: 400px;
  background-size: cover;
  background-position: center;
  margin: 0 5px;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.3s ease, width 0.3s ease, height 0.3s ease;
  flex: 1 0 8%;
}

.industry-card:hover {
  flex: 1 0 40%;
  height: 400px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
  text-align: center;
  transition: background 0.3s ease, opacity 0.3s ease;
}

.industry-card:hover .overlay {
  background: rgba(0, 0, 0, 0.35);
  opacity: 1;
  justify-content: flex-start;
  padding: 20px;
}

.industry-card .overlay h1 {
  color: rgb(255, 255, 255);
  font-size: 30px;
}
.overlay h1 {
  font-size: 18px;
  margin-bottom: 10px;
  transform: rotate(-90deg);
  white-space: nowrap;
  transition: transform 0.3s ease, margin-bottom 0.3s ease;
}

.industry-card:hover .overlay h1 {
  transform: rotate(0deg);
  margin-bottom: 20px;
}

.plus-sign {
  font-size: 24px;
  color: rgb(255, 255, 255);
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  transition: bottom 0.3s ease, right 0.3s ease, left 0.3s ease, color 0.3s ease;
}

.industry-card:hover .plus-sign {
  bottom: 10px;
  right: 10px;
  left: auto;
  color: #ffc107;
}

.extra-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.industry-card:hover .extra-content {
  display: block;
  opacity: 1;
}

.extra-content p {
  font-size: 14px;
  margin: 10px 0;
}

.extra-content .btn {
  font-size: 14px;
}


/* ******************** */
/* solutions we deliver */
/* ******************** */
.solutions-wrapper {
  font-family: "Segoe UI", sans-serif;
  background: var(--background-blue-color);
  color: #ffffff;
  padding: 60px 20px;
  box-sizing: border-box;
  user-select: none; /* Prevent text selection while dragging */
}

.solutions-header {
  text-align: center;
  margin-bottom: 40px;
}

.solutions-header h2 {
  font-size: 3.2rem;
  margin-bottom: 10px;
  color: white;
  font-family: var(--font-family);
}

.solutions-header p {
  font-size: 1rem;
  color: #cccccc;
}

.solutions-carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

.solutions-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  justify-content: flex-start;
  padding: 10px 0;
  margin: 0 auto;

 
}

.solutions-carousel.dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

.solutions-card {
  width: 250px;
  height: 350px;
  background: #1e2a5a;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  user-select: none; /* Prevent text selection inside card */
  -webkit-user-drag: none; /* Prevent image dragging */
}

.solutions-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none; /* Prevent dragging images */
}

.solutions-card:hover {
  transform: translateY(-10px);
}

.solutions-card .solutions-card-content h3 {
  font-size: 20px;
  font-weight: 1000;
  color: white;
  transition: all 0.3s ease;
}

.solutions-card:hover h3 {
  color: black;
  font-weight: 900;
}

.solutions-card-content {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  padding: 20px;
  border-radius: 8px;
  transform: translateY(0);
  transition: background 0.3s ease;
  color: #fff;
}

.solutions-card:hover .solutions-card-content {
  background: rgba(255, 255, 255, 0.95);
  color: #000;
}

.solutions-card-content p {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin: 5px 0 0;
  font-size: 0.9rem;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

.solutions-card:hover .solutions-card-content p {
  opacity: 1;
  max-height: 200px;
}

.solutions-carousel::-webkit-scrollbar {
  display: none;
}

.solutions-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: #0d1b4c;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
}

.solutions-nav.prev {
  left: 10px;
}

.solutions-nav.next {
  right: 10px;
}

.solutions-progress-bar {
  margin-top: 20px;
  height: 4px;
  width: 80%;
  background: #2c3e75;
  margin-left: auto;
  margin-right: auto;
  border-radius: 4px;
  overflow: hidden;
}

.solutions-progress {
  height: 100%;
  width: 0%;
  background: #00bcd4;
  transition: width 0.3s ease;
}

/* growth-section */



/* Scoped styles only for Growth Section */
.growth-section {
  background-color: #fff; /* Only this section */
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.growth-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

/* Left Side Text */
.growth-text {
  flex: 1 1 700px;
}

.growth-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0a1e4d;
  margin-bottom: 15px;
}

.growth-text h2 span {
  color: #f9a825; /* Replace with your var(--button-hover-color) */
}

.growth-text p {
  color: #333;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Contact Button */
.growth-btn {
  background: #f9a825; /* Replace with var(--button-hover-color) */
  color: #0a1e4d;
  font-weight: bold;
  padding: 14px 28px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.growth-btn span {
  font-size: 1.3rem;
}

.growth-btn:hover {
  background: #ffb300; /* Replace with var(--button-color) */
  transform: translateY(-2px);
}

/* Stats */
.growth-stats {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 1.1rem;
  color: #000;
}

.growth-stats .tick {
  color: var(--button-color); 
  font-size: 1.2em;
  margin-right: 6px;
}

.main-img img {
  width: 480px;
  border-radius: 24px;
}

.growth-section {
  background-color: #fff; /* Only this section */
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.growth-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

/* Left Side Text */
.growth-text {
  flex: 1 1 700px;
}

.growth-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0a1e4d;
  margin-bottom: 15px;
}

.growth-text h2 span {
  color: #f9a825; /* Replace with your var(--button-hover-color) */
}

.growth-text p {
  color: #333;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Contact Button */
.growth-btn {
  background: #f9a825; /* Replace with var(--button-hover-color) */
  color: #0a1e4d;
  font-weight: bold;
  padding: 14px 28px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.growth-btn span {
  font-size: 1.3rem;
}

.growth-btn:hover {
  background: #ffb300; /* Replace with var(--button-color) */
  transform: translateY(-2px);
}

/* Stats */
.growth-stats {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 1.1rem;
  color: #000;
}

.growth-stats .tick {
  color: var(--button-color);
  font-size: 1.2em;
  margin-right: 6px;
}

.main-img img {
  width: 480px;
  border-radius: 24px;
}

/* ========== MEDIA QUERIES ========== */

/* Tablets */
@media (max-width: 992px) {
  .growth-container {
    gap: 30px;
  }

  .growth-text h2 {
    font-size: 2rem;
  }

  .growth-text p {
    font-size: 1.2rem;
  }

  .main-img img {
    width: 480px;
  }

  .growth-stats {
    gap: 20px;
    font-size: 1rem;
  }
}

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

  .growth-text {
    flex: 1 1 100%;
  }

  .growth-text h2 {
    font-size: 1.8rem;
  }

  .growth-text p {
    font-size: 1.1rem;
  }

  .growth-btn {
    margin: 0 auto;
  }

  .growth-stats {
    justify-content: center;
    font-size: 0.95rem;
    gap: 15px;
  }

  .main-img img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
}

/* Extra Small Screens */
@media (max-width: 480px) {
  .growth-text h2 {
    font-size: 1.6rem;
  }

  .growth-text p {
    font-size: 0.95rem;
  }

  .growth-stats {
    flex-direction: column;
    gap: 10px;
  }

  .growth-btn {
    width: 100%;
    padding: 12px;
    font-size: 0.9rem;
  }
}


/* ---------------------------------------------- */
/* Got an idea section */
/* ---------------------------------------------- */


.got-idea-section {
  background: radial-gradient(ellipse at left, #0a1e4d 60%, #0a2a9c 100%);
  padding: 60px 0;
  color: #fff;
  font-family: 'Poppins', Arial, sans-serif;
}

.got-idea-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 40px;
}

.got-idea-left {
  flex: 1.2;
}

.got-idea-left h2 {
  font-size: 2.8rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.got-idea-left p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  color: #eef1f5;
}

.got-idea-btn {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #0a1e4d;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 36px;
  border-radius: 40px;
  text-decoration: none;
  margin-bottom: 32px;
  box-shadow: 0 2px 12px 0 rgba(10,30,77,0.08);
  transition: background 0.2s, color 0.2s;
}

.got-idea-btn .arrow {
  margin-left: 12px;
  font-size: 1.3em;
  color: #ffb300;
}

.got-idea-btn:hover {
  background: #ffb300;
  color: #fff;
}

.got-idea-stats {
  margin-top: 32px;
  display: flex;
  gap: 32px;
  font-size: 1.08rem;
  flex-wrap: wrap;
}

.got-idea-stats .tick {
  color: #ffb300;
  font-size: 1.2em;
  margin-right: 6px;
}

.got-idea-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.got-idea-img {
  width: 580px;
  height: 440px;
  object-fit: cover;
  /* border-radius: 50%; */
  /* box-shadow: 0 4px 24px 0 rgba(10,30,77,0.15); */
  /* background: #fff; */
}

/* ================== RESPONSIVE MEDIA QUERIES ================== */

/* Tablets */
@media (max-width: 1024px) {
  .got-idea-left h2 {
    font-size: 2.2rem;
  }
  .got-idea-left p {
    font-size: 1.05rem;
  }
  .got-idea-btn {
    font-size: 1rem;
    padding: 14px 28px;
  }
  .got-idea-img {
    width: 440px;
    height: auto;
  }
  .got-idea-stats {
    font-size: 1rem;
    gap: 20px;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .got-idea-container {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }
  .got-idea-left {
    flex: unset;
  }
  .got-idea-left h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .got-idea-left p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .got-idea-btn {
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 30px;
  }
  .got-idea-stats {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
  }
  .got-idea-img {
    width: 100%;
    max-width: 360px;
    height: auto;
    margin-top: 20px;
  }
}


/* @media (max-width: 900px) {
  .got-idea-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
    padding: 0 16px;
  }
  .got-idea-right {
    width: 100%;
    justify-content: flex-start;
  }
  .got-idea-img {
    width: 100%;
    height: 280px;
    border-radius: 20px;
  }
} */



/* --------------------------------------- */
/* .industries section */
/* --------------------------------------- */
.industries-section {
  font-family: sans-serif;
  padding: 40px;
  max-width: 1730px;
  margin: auto;
  position: relative;
  user-select: none; /* Prevent text selection while dragging */
}

.industries-section h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
  text-align: center;
}

.industries-section > .section-header > p {
  margin-left: 13%;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-header p {
  font-size: 1.1rem;
  margin-left: 100px;
  color: #000;
}

.nav-buttons {
  display: flex;
  gap: 10px;
}

.nav-btn {
  color: rgb(0, 0, 0);
  font-weight: bold;
  border: 2px solid black;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 28px;
  user-select: none; /* Prevent text selection on buttons */
}

.nav-btn:hover {
  border: none;
}

/* Slider Container */
.industries-slider {
  display: flex;
  gap: 20px;
  overflow-x: hidden; /* Hides scrollbar */
  scroll-behavior: smooth;
  padding-top: 30px;
  cursor: grab; /* Indicate draggable area */
}

.industries-slider.dragging {
  cursor: grabbing; /* Cursor while dragging */
}

/* Hide scrollbar for all browsers */
.industries-slider::-webkit-scrollbar {
  display: none;
}
.industries-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Card Structure */
.industry-card {
  min-width: 300px;
  max-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(to bottom, #000428, #004e92);
  transition: all 0.3s ease;
  user-select: none; /* Prevent text selection inside cards */
  -webkit-user-drag: none; /* Prevent image dragging */
}

.card-wrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none; /* Prevent dragging the background image */
}

/* Top gradient overlay */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
  z-index: 2;
}

.card-content {
  position: relative;
  z-index: 3;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  transition: all 0.3s ease;
}

.card-content h4 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: #ffe600;
  font-weight: bold;
}

.card-content h5 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #fff;
}

/* Hover Text - Hidden initially */
.card-hover-text {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card-hover-text p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.card-hover-text a {
  font-weight: 600;
  color: #00c8ff;
  text-decoration: none;
}

.card-hover-text a:hover {
  text-decoration: underline;
}

/* Hover behavior */
.industry-card:hover .card-image {
  opacity: 0;
}

.industry-card:hover .card-hover-text {
  opacity: 1;
  max-height: 200px;
}


/* --------------------------------------- */
/* Tech stack section */
/* --------------------------------------- */
.tech-stack-section {
  background: linear-gradient(135deg, #002766, #003a8c);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  font-family: sans-serif;
}

.tech-stack-title {
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}

.tech-stack-description {
  max-width: 1000px;
  margin: 0 auto 50px auto;
  font-size: 20px;
  color: #d6e5f8;
  line-height: 1.6;
}

/* Marquee container */
.tech-stack-marquee {
  overflow: hidden;
  padding: 10px 0;
  max-width: 1200px;
  margin: auto;
  white-space: nowrap;
}

/* Items row */
.tech-items {
  display: flex;
  gap: 24px;
}

/* Row 1: right to left */
.marquee-left .tech-items {
  animation: scroll-left 20s linear infinite;
}

/* Row 2: left to right */
.marquee-right .tech-items {
  animation: scroll-right 20s linear infinite;
}

/* Tech item card - reduced height */
.tech-item {
  background: #ffffff;
  color: #222;
  border-radius: 15px;
  /* padding: 8px 8px; */
  width: 100px;
  height: 80px; /* Reduced height */
  min-width: 80px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tech-item img {
  width: 32px; /* slightly smaller */
  height: 32px;
  margin: auto;
  margin-top: 12px;
}

.tech-item p {
  font-size: 12px;
  font-weight: 600;
}

/* Link */
.tech-link {
  margin-top: 40px;
}

.tech-link a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: underline;
  font-size: 16px;
}

/* Animations for infinite loop */
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

/* Hide scrollbar */
.tech-stack-marquee::-webkit-scrollbar {
  display: none;
}
.tech-stack-marquee {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* --------------------------------------------------------- */
/* latest-trends section */
/* --------------------------------------------------------- */


.tech-trends {
  max-width: 1400px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.tech-trends h2 {
  font-size: 3.2rem;
  font-weight: bold;
}

.subtitle {
  color: #3f3f3f;
  margin-bottom: 30px;
  font-size: 1.3rem;
  font-weight: 500;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  margin-bottom: 60px;
}

.tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  font-size: 1.2rem;
  transition: background 0.3s;
}

.tab:hover {
  background: #f1f4ff;
}

.tab.active {
  background: #e8edff;
  border-bottom: 3px solid #1e40af;
}

.tab-logo {
  width: 24px;
  height: 24px;
}

.tab-content {
  display: none;
  align-items: center;
  gap: 60px;
  margin-top: 30px;
  font-size: 1.2rem;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  color: #3f3f3f;
}

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

.content-left {
  flex: 1;
}

.main-image {
  max-height: 360px;
  width: 100%;
  border-radius: 12px;
}

.content-right {
  flex: 1;
  text-align: left;
}

.content-right h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.content-right p {
  color: #3b3b3b;
  font-size: 1.2rem;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  /* letter-spacing: 0.3px; */
}

.content-right ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.content-right ul li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.content-right ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f59e0b;
}

.content-right a {
  color: #1e40af;
  font-weight: bold;
  margin-left: 5%;
  text-decoration: none;
}

@media (max-width: 768px) {
  .tab-content {
    flex-direction: column;
    text-align: center;
  }
  .content-right {
    /* text-align: center; */
    text-align: left;
  }
}




/* -------------------------------------------------------------- */
/* Latest trends section  */
/* -------------------------------------------------------------- */
.latest-trends {
  max-width: 1400px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.latest-trends h2 {
  font-size: 3.2rem;
  font-weight: bold;
}

.latest-trends-subtitle {
  color: #3f3f3f;
  margin-bottom: 30px;
  font-size: 1.3rem;
  font-weight: 500;
}

.latest-trends-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  margin-bottom: 60px;
}

.latest-trends-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  font-size: 1.2rem;
  transition: background 0.3s;
}

.latest-trends-tab:hover {
  background: #f1f4ff;
}

.latest-trends-tab.active {
  background: #e8edff;
  border-bottom: 3px solid #1e40af;
}

.latest-trends-tab-logo {
  width: 24px;
  height: 24px;
}

.latest-trends-content {
  display: none;
  align-items: center;
  gap: 60px;
  margin-top: 30px;
  font-size: 1.2rem;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  color: #3f3f3f;
}

.latest-trends-content.active {
  display: flex;
}

.latest-trends-left {
  flex: 1;
}

.latest-trends-main-image {
  max-height: 360px;
  width: 100%;
  border-radius: 12px;
}

.latest-trends-right {
  flex: 1;
  text-align: left;
}

.latest-trends-right h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.latest-trends-right p {
  color: #3b3b3b;
  font-size: 1.2rem;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.latest-trends-right ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.latest-trends-right ul li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.latest-trends-right ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f59e0b;
}

.latest-trends-right a {
  color: #1e40af;
  font-weight: bold;
  margin-left: 5%;
  text-decoration: none;
}

@media (max-width: 768px) {
  .latest-trends-content {
    flex-direction: column;
    text-align: center;
  }
  .latest-trends-right {
    text-align: left;
  }
}





/* ----------------------------------------------------------- */
/* Freequently Asked Questions Section */
/* ----------------------------------------------------------- */

.faq-section {
  max-width: 1100px;
  margin: auto;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}

.faq-section h2 {
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 24px;
}

.faq-subtitle {
  text-align: center;
  color: #383838;
  margin-bottom: 60px;
  letter-spacing: 0.8px;
  font-size: 1.3rem;
  font-family: Arial, sans-serif;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
  color: #000;
  font-size: 1.3rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-weight: 600;
  cursor: pointer;
}

.faq-question span {
  flex: 1;
}

.faq-toggle {
  background: none;
  border: none;
  font-size: 1.7rem;
  font-weight: 600;
  color: rgb(255, 166, 0);
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 15px 20px;
  border-top: 1px solid #eee;
  background: #fffdfb;
  font-size: 18px;
  letter-spacing: 0.6px;
  font-family: Arial, sans-serif;
  color: #555151;
}

.faq-answer ul {
  padding-left: 20px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  content: "-";
  color: orange;
}



/* --------------------------------------------------------------
Book consultation section
-------------------------------------------------------------- */
.book-consultation {
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  background: #fff7ec;
}

.consultation-left {
  background: #fff7ec;
  padding: 40px;
  width: 40%;
  max-width: 600px;
  position: sticky;
  top: 0;
  overflow-y: auto;
}

.consultation-left h3 {
  margin-top: 20px;
  font-size: 24px;
  color: #4f4f52;
  font-weight: 600;
}

.contact-options a {
  margin-right: 15px;
  text-decoration: none;
  color: #37373a;
  font-weight: 500;
  font-family: 'Poppins', Arial, sans-serif;
}

.contact-options a:hover {
  font-weight: 600;
  text-decoration: underline;
}

.feature {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
  color: #333;
}

.feature p {
  margin-left: 15px;
  color: #555;
  font-size: 16px;
  font-family: 'Poppins', Arial, sans-serif;
}

.feature strong {
  margin-left: 15px;
  font-size: 18px;
  color: #696969;
}

.partners img {
  margin: 10px;
  height: 50px;
  width: 100px;
}

.consultation-right {
  width: 40%;
  padding: 50px;
  background: #fffdfd;
}

.consultation-right h2 {
  font-size: 28px;
  font-weight: bold;
}

.subtitle {
  margin-bottom: 24px;
  color: #555;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

label {
  font-size: 14px;
  margin-bottom: 5px;
  color: #333;
}

input, textarea, select {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-family: 'Poppins', Arial, sans-serif;
}

input:focus, textarea:focus, select:focus {
  border-color: #ff0000;
}

input.valid, textarea.valid, select.valid {
  border-color: #28a745;
  background: url('check-icon.png') no-repeat right 10px center;
  background-size: 16px;
}

.enquire-btn {
  margin-top: 20px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffc107;
  color: #000;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.enquire-btn:hover {
  background: #ffc640;
}
#country option{
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 14px;
  color: #333;
}

/* ===== Requirements & File Upload & Country Dropdown ===== */
.requirements-box {
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 12px;
  transition: border-color 0.3s ease, background 0.3s ease;
  background: #fff;
}

.requirements-box textarea,
.requirements-box input[type="text"],
.requirements-box select {
  border: none;
  outline: none;
  resize: none;
  padding: 10px;
  font-size: 14px;
  font-family: 'Poppins', Arial, sans-serif;
  width: 100%;
  min-height: 40px;
}

.requirements-box textarea {
  max-height: 180px;
  line-height: 1.5em;
  overflow-y: auto;
}

.requirements-box.valid {
  border-color: #28a745;
}

.file-upload {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 12px;
  margin-top: 10px;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.file-upload:hover {
  background: #f8f8f8;
  border-color: #999;
}

.file-upload input[type="file"] {
  display: none;
}

/* Drag-over effect */
.requirements-box.dragover {
  border-color: #ffb400;
  background: #fff7ec;
}

/* Valid State */
.requirements-box.valid textarea,
.requirements-box.valid input[type="text"],
.requirements-box.valid select {
  border-color: #28a745;
}

/* Enquire Button arrow */
.enquire-btn span {
  font-size: 16px;
  font-weight: bold;
}

/* ===== Responsive ===== */
/* Laptops/Tablets (≤ 1024px) */
@media (max-width: 1024px) {
  .book-consultation {
    flex-direction: column;
    align-items: center;
  }

  .consultation-left,
  .consultation-right {
    width: 90%;
    margin-left: 0;
    max-width: 100%;
    position: static;
    height: auto;
  }

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

  .requirements-box textarea,
  .requirements-box input[type="text"],
  .requirements-box select {
    min-height: 100px;
  }

  .file-upload {
    justify-content: center;
  }
}

/* Tablets / Small Laptops (≤ 992px) */
@media (max-width: 992px) {
  .consultation-left,
  .consultation-right {
    padding: 25px;
  }

  .contact-options {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* Mobiles (≤ 600px) */
@media (max-width: 600px) {
  .consultation-left {
    padding: 20px;
  }

  .consultation-right {
    padding: 20px;
  }

  .contact-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .contact-options a {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .partners img {
    height: 40px;
    width: auto;
  }

  .requirements-box textarea,
  .requirements-box input[type="text"],
  .requirements-box select {
    min-height: 80px;
  }

  .file-upload {
    font-size: 12px;
    padding: 8px;
  }

  .enquire-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Small Mobiles (≤ 480px) */
@media (max-width: 480px) {
  .consultation-left,
  .consultation-right {
    padding: 15px;
  }

  .contact-options a {
    font-size: 12px;
  }

  .requirements-box textarea,
  .requirements-box input[type="text"],
  .requirements-box select {
    min-height: 70px;
  }

  .file-upload {
    font-size: 11px;
    padding: 6px;
  }

  .enquire-btn {
    font-size: 14px;
    padding: 8px 12px;
  }
}


/*--------------------------------------------------------------
# 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(--background-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);
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}

@media (max-width: 468px) {
  .team .team-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

.team .team-member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
  flex-shrink: 0;
}

.team .team-member .pic img {
  transition: ease-in-out 0.3s;
}

.team .team-member:hover {
  transform: translateY(-10px);
}

.team .team-member .member-info {
  padding-left: 30px;
}

@media (max-width: 468px) {
  .team .team-member .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
}

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

.team .team-member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .team-member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  bottom: 0;
  left: 0;
}

@media (max-width: 468px) {
  .team .team-member span::after {
    left: calc(50% - 25px);
  }
}

.team .team-member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .team-member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}

@media (max-width: 468px) {
  .team .team-member .social {
    justify-content: center;
  }
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 36px;
  height: 36px;
}

.team .team-member .social a i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  margin: 0 2px;
}

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

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

.team .team-member .social a + a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# 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);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq-2 .faq-container {
  margin-top: 15px;
}

.faq-2 .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}

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

.faq-2 .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

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

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

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

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

.faq-2 .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

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

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

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

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

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

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

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

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

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

.contact .php-email-form button[type="submit"] {
  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 25%);
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .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 {
  
} */

/* text animation */

.rotating-text {
  font-family: inherit;

  p {
    display: inline-flex;
    margin: 0;
    vertical-align: top;

    .word {
      position: absolute;
      display: flex;
      opacity: 0;

      .letter {
        transform-origin: center center 25px;

        &.out {
          transform: rotateX(90deg);
          transition: 0.32s cubic-bezier(0.6, 0, 0.7, 0.2);
        }
        &.in {
          transition: 0.38s ease;
        }
        &.behind {
          transform: rotateX(-90deg);
        }
      }
    }
  }
}

.alizarin {
  color: #ff04fb;
}

.wisteria {
  color: rgb(33, 248, 255);
}

.peter-river {
  color: #00aaff;
}

.emerald {
  color: #33e19b;
}

.sun-flower {
  color: #f1c40f;
}

/* cube animation */

#cubeloader {
  position: relative;
  top: 50%;
  left: 50%;
  margin-top: -13.5em;
  margin-left: -13.5em;
  width: 27em;
  height: 27em;
  background-color: transparent;
}

#box {
  position: absolute;
  left: 0;
  top: 550px;
  bottom: -0.5em;
  width: 5em;
  height: 5em;
  background-color: transparent;
  border-radius: 15%;
  transform: translate(0, -5em) rotate(-45deg);
  animation: push 2.5s cubic-bezier(0.79, 0, 0.47, 0.97) infinite;
}

@keyframes push {
  0% {
    transform: translate(0, -5em) rotate(-45deg);
    border: 0.5em solid whitesmoke;
  }
  5% {
    transform: translate(0, -5em) rotate(-50deg);
    border: 0.5em solid gold;
  }
  20% {
    transform: translate(5em, -10em) rotate(47deg);
    border: 0.5em solid salmon;
  }
  25% {
    transform: translate(5em, -10em) rotate(45deg);
    border: 0.5em solid sandybrown;
  }
  30% {
    transform: translate(5em, -10em) rotate(40deg);
    border: 0.5em solid slateblue;
  }
  45% {
    transform: translate(10em, -15em) rotate(137deg);
    border: 0.5em solid coral;
  }
  50% {
    transform: translate(10em, -15em) rotate(135deg);
    border: 0.5em solid mediumaquamarine;
  }
  55% {
    transform: translate(10em, -15em) rotate(130deg);
    border: 0.5em solid tomato;
  }
  70% {
    transform: translate(15em, -20em) rotate(217deg);
    border: 0.5em solid turquoise;
  }
  75% {
    transform: translate(15em, -20em) rotate(220deg);
    border: 0.5em solid orange;
  }
  100% {
    transform: translate(0, -5em) rotate(-225deg);
    border: 0.5em solid aqua;
  }
}
