/* Prevent horizontal scrolling */
body, html {
    overflow-x: hidden;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}
.btn {
    font-weight: 600;
    transition: .5s;
}
.btn-square {
    width: 32px;
    height: 32px;
}
.btn-sm-square {
    width: 34px;
    height: 34px;
}
.btn-md-square {
    width: 44px;
    height: 44px;
}
.btn-lg-square {
    width: 56px;
    height: 56px;
}
.btn-xl-square {
    width: 66px;
    height: 66px;
}
.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}
 .achievement-list {
  margin-bottom: 3rem;
}
 .achievement-list .achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.achievement-list .achievement-item:last-child {
  margin-bottom: 0;
}
 .achievement-list .achievement-item .achievement-icon {
  width: 50px;
  height: 50px;
  background-color:#002D62;
  color: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
 .achievement-list .achievement-item .achievement-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0c1935;
  margin-bottom: 0.5rem;
}
 .achievement-list .achievement-item .achievement-content p {
  color: #002D62;
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
}
.btn.btn-primary {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}
.btn.btn-primary:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-light) !important;
}
.btn.btn-dark {
    background: var(--bs-dark) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}
.btn.btn-dark:hover {
    background: var(--bs-white) !important;
    color: var(--bs-dark) !important;
}
.btn.btn-light {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}
.btn.btn-light:hover {
    background: var(--bs-white) !important;
    color: var(--bs-dark) !important;
}
/*** Topbar Start ***/
.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-dark) !important;
}
@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Navbar ***/
.sticky-top,
.sticky-top .container {
  transition: 0.5s !important;
}
.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
  color: var(--bs-dark) !important;
}
.navbar .navbar-nav .nav-item {
  position: relative;
  margin: 0 5px !important;
}
.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border: 0px solid var(--bs-primary);
  transition: 0.5s;
}
.navbar .navbar-nav .nav-item::before {
  top: 0;
  left: 0;
}
.navbar .navbar-nav .nav-item::after {
  bottom: 0;
  right: 0;
}
.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
  width: 100%;
  border-width: 1px;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
  color: var(--bs-primary) !important;
}
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107" !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
}
.navbar .nav-item.position-static {
  position: static;
}
.navbar .nav-item.position-static .dropdown-menu.mega-menu {
  width: 90%;
  right: 0;        /* 👈 Positioned on the RIGHT */
  left: auto;      /* ❌ Remove left offset */
  top: 60%;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 40px 50px;

  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

/* Show on hover (desktop) */
@media (min-width: 992px) {
  .navbar .nav-item.position-static:hover .dropdown-menu.mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}
/* Mega Menu Columns */
.navbar .mega-menu .menu-column {
  flex: 1 1 30%; /* ⬆️ slightly larger column width */
  min-width: 250px;
  margin-bottom: 20px;
}
.navbar .mega-menu h6.mega-heading {
  font-size: 15px;
  font-weight: 600;
  color: var(--bs-primary);
  margin-bottom: 8px;
  border-bottom: 2px solid var(--bs-primary);
  display: inline-block;
  padding-bottom: 3px;
}
/* Mega Menu Links */
.navbar .mega-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #333;
  padding: 5px 0;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.navbar .mega-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--bs-primary);
  transition: width 0.3s ease;
}
.navbar .mega-menu a:hover {
  color: var(--bs-primary);
}
.navbar .mega-menu a:hover::after {
  width: 100%;
}
.navbar .mega-menu i {
  color: var(--bs-primary);
  margin-right: 6px;
  font-size: 14px;
  transition: color 0.3s ease;
}
/* 🌟 Wide Menu (medium size, 2 columns, same design as mini-menu) */
.navbar .nav-item.position-static .dropdown-menu.wide-menu {
  width: 40%; /* medium width */
  
  top: 70%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 35px 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateX(-50%) translateY(10px);
  z-index: 999;
}

/* Show on hover (desktop) */
@media (min-width: 992px) {
  .navbar .nav-item.position-static:hover .dropdown-menu.wide-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

/* Columns */
.navbar .wide-menu .menu-column {
  flex: 0 0 48%; /* two columns */
  margin-bottom: 20px;
}

/* Section Headings */
.navbar .wide-menu h6.mega-heading {
  font-size: 16px;
  font-weight: 600;
  color: var(--bs-primary);
  margin-bottom: 10px;
  border-bottom: 2px solid var(--bs-primary);
  display: inline-block;
  padding-bottom: 2px;
}

/* Menu Links */
.navbar .wide-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #333;
  padding: 6px 0;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar .wide-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--bs-primary);
  transition: width 0.3s ease;
}

.navbar .wide-menu a:hover {
  color: var(--bs-primary);
}

.navbar .wide-menu a:hover::after {
  width: 100%;
}

/* Icons (set to BLUE) */
.navbar .wide-menu i {
  color: #003366 !important; /* blue color */
  margin-right: 8px;
  font-size: 14px;
  transition: color 0.3s ease;
}



/* Responsive */
@media (max-width: 992px) {
  .navbar .dropdown-menu.wide-menu {
    width: 80%;
    padding: 30px;
  }

  .navbar .wide-menu .menu-column {
    flex: 0 0 100%; /* stack for mobile */
  }
}

@media (max-width: 768px) {
  .navbar .dropdown-menu.wide-menu {
    width: 100%;
    padding: 25px;
  }
}
/* 🌟 Mini Menu (Centered under menu item) */
.navbar .nav-item.position-static .dropdown-menu.mini-menu {
  width: 260px; /* fixed width for perfect alignment */
  left: 50%;
  top: 70%;
  transform: translateX(-50%) translateY(10px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 20px 25px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

/* Show on Hover (Desktop) */
@media (min-width: 992px) {
  .navbar .nav-item.position-static:hover .dropdown-menu.mini-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

/* Mini Menu Column */
.navbar .mini-menu .menu-column {
  width: 100%;
  text-align: left;
  margin-bottom: 10px;
}

/* Heading */
.navbar .mini-menu h6.mega-heading {
  font-size: 16px;
  font-weight: 600;
  color: var(--bs-primary);
  margin-bottom: 6px;
  border-bottom: 2px solid var(--bs-primary);
  display: inline-block;
  padding-bottom: 2px;
}

/* Menu Links */
.navbar .mini-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar .mini-menu a:hover {
  color: var(--bs-primary);
}

.navbar .mini-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--bs-primary);
  transition: width 0.3s ease;
}

.navbar .mini-menu a:hover::after {
  width: 100%;
}

/* Icon */
.navbar .mini-menu i {
  color: var(--bs-primary);
  margin-right: 6px;
  font-size: 13px;
}
/* Center mini-menu under its parent */
.navbar .nav-item.position-static .dropdown-menu.mini-menu {
  left: 50% !important;
  transform: translateX(-50%) !important;
  top: 70%;
}

/* ❗ IMPORTANT — REMOVE LEFT OVERRIDE */
.nav-item.dropdown.position-static .dropdown-menu {
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: auto !important;
    margin-top: 0.5rem;
}
/* Desktop Dropdown Animation */
@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    margin-top: 20px !important;
    transition: 0.5s;
    opacity: 0;
    z-index: 9;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    margin-top: 20px !important;
    transition: 0.5s;
    opacity: 1;
  }
}
/* Make the nav-item the true anchor for centering */
.navbar .nav-item.position-static {
  position: relative !important;
}

/* PERFECT CENTER DROPDOWN */
.navbar .nav-item.position-static .dropdown-menu.mini-dropdown {
  width: 260px;
  position: absolute;
  top: 100%;                     /* directly under the menu */
  left: 50%;                     /* center horizontally */
  transform: translateX(-50%) translateY(10px);

  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  padding: 20px 25px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 999;
}

/* Show on hover */
@media (min-width: 992px) {
  .navbar .nav-item.position-static:hover .dropdown-menu.mini-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

/* Mini Dropdown Items */
.navbar .mini-dropdown .menu-column {
  width: 100%;
  margin-bottom: 10px;
  text-align: left;
}

.navbar .mini-dropdown h6.mega-heading {
  font-size: 16px;
  font-weight: 600;
  color: var(--bs-primary);
  margin-bottom: 6px;
  border-bottom: 2px solid var(--bs-primary);
  display: inline-block;
  padding-bottom: 2px;
}

.navbar .mini-dropdown a {
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar .mini-dropdown a:hover {
  color: var(--bs-primary);
}

.navbar .mini-dropdown i {
  color: var(--bs-primary);
  margin-right: 6px;
  font-size: 13px;
}


/* ✅ Mobile Menu Scrollable + Functional */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    border-top: 1px solid #ddd;
    padding: 15px;
    max-height: 85vh;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    scroll-behavior: smooth;
  }

  .navbar .navbar-nav .nav-item.nav-link {
    margin: 10px 0 !important;
  }

  /* Hide dropdowns by default */
  .navbar .nav-item .dropdown-menu {
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    position: static !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
  }
.navbar .nav-item.position-static {
    position: relative !important;
}

  /* Show dropdown when .show class is added (JS controlled) */
  .navbar .dropdown.show > .dropdown-menu {
    display: block !important;
  }

  /* Mobile mega menu full width */
  .navbar .nav-item.position-static .dropdown-menu.mega-menu {
    width: 100% !important;
    left: 0 !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    flex-direction: column !important;
    padding: 15px 20px !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  .navbar .mega-menu .menu-column {
    flex: 1 1 100%;
    margin-bottom: 15px;
  }
}

/* Toggler */
.navbar .navbar-toggler {
  padding: 8px 15px;
  color: var(--bs-white);
  background: var(--bs-primary);
  border: none;
  outline: none;
}

.navbar .navbar-toggler:focus {
  box-shadow: none;
}

#searchModal .modal-content {
  background: rgba(250, 250, 250, 0.6);
}

/* 🌐 Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f0f0f0;
}
::-webkit-scrollbar-thumb {
  background: #003d80;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #003d80;
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #003d80;
}
/* 🧩 Fix navbar responsiveness in Firefox */
@-moz-document url-prefix() {
  .navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .navbar-collapse {
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: thin; /* Firefox scrollbar support */
  }

  /* Prevent layout shift on toggle */
  .navbar-toggler {
    -moz-appearance: none;
    background: none;
    border: none;
    outline: none;
  }
}

/*** Navbar End ***//* /* 🏢 Physical Branding Section Styles */
.physical-branding-section {
  background: #fafafa;
  position: relative;
  overflow: hidden;
}

.physical-branding-section .container {
  max-width: 1200px;
}

/* ✅ Wrapper with shadow and hover lift */
.branding-wrapper {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  padding: 2.5rem;
  margin-bottom: 4rem;
  transition: all 0.4s ease;
}

.branding-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* ✅ Branding Row Layout */
.branding-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.branding-row.reverse {
  flex-direction: row-reverse;
}

/* ✅ Image Styling */
.branding-image {
  flex: 1;
  text-align: center;
}

.branding-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

/* ✅ Content Styling */
.branding-content {
  flex: 1.2;
}

.branding-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.branding-content h2 i {
  color:#ff7c00; /* Accent color */
  font-size: 1.5rem;
}

.branding-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

.branding-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.6rem;
  color: #444;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.branding-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color:#ff8c00;
  font-size: 1rem;
  line-height: 1.3;
}

.branding-content ul li:hover {
  color:#ff8c00;
}

/* ✅ Responsive Layouts */
@media (max-width: 991px) {
  .branding-row {
    flex-direction: column;
    text-align: center;
  }

  .branding-row.reverse {
    flex-direction: column;
  }

  .branding-image img {
    max-width: 400px;
  }

  .branding-content {
    flex: 1;
  }
}

@media (max-width: 575px) {
  .branding-content h2 {
    font-size: 1.4rem;
  }

  .branding-content p {
    font-size: 0.95rem;
  }

  .branding-wrapper {
    padding: 1.5rem;
  }
}

/* ✨ Optional Gradient Backgrounds for Variety */
.branding-wrapper:nth-child(odd) {
  background: linear-gradient(135deg, #ffffff, #f9f9f9);
}

.branding-wrapper:nth-child(even) {
  background: linear-gradient(135deg, #fff, #f7f7f7);
}

/* ✅ AOS Animations (Extra smoothness) */
[data-aos="fade-right"],
[data-aos="fade-left"],
[data-aos="fade-up"] {
  transition-duration: 1s;
}


/* ---------- Branding Strategy Enhanced Styles ---------- */
.branding-strategy {
  background: #fafafa;
}

.section-header .main-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #222;
}

.section-header .main-title span {
  color: #ff7c00;
}

.section-subtitle {
  color: #666;
  max-width: 600px;
  margin: auto;
  font-size: 1.05rem;
}

.strategy-row {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.strategy-row:hover {
  transform: translateY(-5px);
}

.strategy-content {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.strategy-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.strategy-content .icon-wrap {
  background: #ff7c00;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  margin-bottom: 15px;
}

.strategy-content h3 {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

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

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

.strategy-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #333;
}

.strategy-content ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ff7c00;
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 0.9rem;
}

/* Images */
.strategy-row img {
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.strategy-row img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .strategy-content {
    margin-top: 25px;
    padding: 30px;
  }
  .section-header .main-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .strategy-content h3 {
    font-size: 1.2rem;
  }
}

/*** Carousel Header Start ***/
.header-carousel .header-carousel-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.owl-prev,
.owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px 20px;
    border-radius: 40px;
    background: var(--bs-primary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.owl-prev {
    left: 30px;
}

.owl-next {
    right: 30px;
}

.owl-prev:hover,
.owl-next:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-white) !important;
}

.header-carousel .header-carousel-item-img-1,
.header-carousel .header-carousel-item-img-2,
.header-carousel .header-carousel-item-img-3 {
    position: relative;
    overflow: hidden;
}

.header-carousel .header-carousel-item-img-1::before,
.header-carousel .header-carousel-item-img-2::before,
.header-carousel .header-carousel-item-img-3::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: -300px;
    right: -300px;
    border-radius: 300px;
    border: 100px solid rgba(68, 210, 246, 0.7);
    animation: RotateMoveCircle 10s linear infinite;
    background: transparent;
    z-index: 2 !important;
}

@keyframes RotateMoveCircle {
    0% {top: -400px;}
    50%   {right: -200px;}
    75%   {top: -200px;}
    100%  {top: -400px;}
}

.header-carousel .header-carousel-item-img-1::after,
.header-carousel .header-carousel-item-img-2::after,
.header-carousel .header-carousel-item-img-3::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 1200px;
    top: -150px;
    left: 70px;
    transform: rotate(-30deg);
    background: rgba(68, 210, 246, 0.2);
    animation: RotateMoveRight 5s linear infinite;
    z-index: 2 !important;
}

@keyframes RotateMoveRight {
    0%   {left: 0px;}
    50%   {left: 70px;}
    100%  {left: 0px;}
}

.header-carousel .header-carousel-item::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 1200px;
    top: -150px;
    left: -265px;
    transform: rotate(-30deg);
    background: var(--bs-dark);
    animation: RotateMoveLeft 5s linear infinite;
    opacity: 0.7;
    z-index: 2 !important;
}

@keyframes RotateMoveLeft {
    0%   {left: -240px;}
    50%   {left: -300px;}
    100%  {left: -240px;}
}

.header-carousel .header-carousel-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2 !important;
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 80%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 9;
}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item .carousel-caption {
        width: 100% !important;
        margin-left: 0 !important;
        padding: 0 10px;
    }
    .header-carousel-item img {
        height: 700px;
        object-fit: cover;
    }

    .owl-prev,
    .owl-next {
        top: 40px !important;
    }

    .owl-prev {
        left: 65%;
    }
}
/*** Header Carousel End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}

.bg-breadcrumb .bg-breadcrumb-single {
    position: absolute;
    width: 500px;
    height: 1200px;
    top: 0px;
    left: 0;
    margin-left: 30px;
    transform: rotate(-30deg);
    background: var(--bs-dark);
    animation: RotateMoveLeft 5s linear infinite;
    opacity: 0.7;
    z-index: 2 !important;
}


.bg-breadcrumb::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
    border-radius: 200px;
    border: 80px solid rgba(68, 210, 246, 0.2);
    animation: RotateMoveCircle 10s linear infinite;
    background: transparent;
    z-index: 2 !important;
}

@keyframes RotateMoveCircle {
    0% {top: -200px;}
    50%   {right: -100px;}
    75%   {top: -100px;}
    100%  {top: -200px;}
}


.bg-breadcrumb::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 1200px;
    top: -150px;
    left: 0;
    margin-left: 160px;
    transform: rotate(-30deg);
    background: rgba(68, 210, 246, 0.2);
    animation: RotateMoveRight 5s linear infinite;
    z-index: 2 !important;
}
/*** Single Page Hero Header End ***/
/* ================================
   IT SUPPORT & MAINTENANCE SECTION
================================= */
.it-support-section {
  padding: 100px 8%;
  background: #f9fafc;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.it-support-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.it-support-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  animation: floatImage 4s ease-in-out infinite;
}

.it-support-text {
  flex: 1 1 45%;
  color: #1e1e1e;
}

.it-support-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111827;
}

.it-support-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #374151;
}

.it-support-text .highlight {
  color: #ff6b00;
  font-weight: 600;
}

/* Floating Image Animation */
@keyframes floatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* Responsive Design */
@media (max-width: 992px) {
  .it-support-container {
    flex-direction: column;
    text-align: center;
  }
  .it-support-text {
    flex: 1 1 100%;
  }
}
.it-consulting-section {
  background:white;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

.it-consulting-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.it-consulting-header h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 15px;
}

.it-consulting-header p {
  color: #555;
  font-size: 1rem;
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.it-consulting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.consulting-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

.consulting-card[data-delay="100"] {
  animation-delay: 0.1s;
}
.consulting-card[data-delay="200"] {
  animation-delay: 0.2s;
}
.consulting-card[data-delay="300"] {
  animation-delay: 0.3s;
}
.consulting-card[data-delay="400"] {
  animation-delay: 0.4s;
}

.consulting-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: #ff8c00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 6px 15px rgba(0, 120, 255, 0.3);
  animation: floatIcon 3s ease-in-out infinite;
}

.consulting-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.consulting-card p {
  color: #555;
  font-size: 0.95rem;
}

.cta-container {
  margin-top: 50px;
}

.cta-button {
  display: inline-block;
  background:#ff8c00;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background:#ff8c00;
  transform: scale(1.05);
}

/* ====== Keyframe Animations ====== */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIcon {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
/* ==============================
   BRANDING SECTION
============================== */

.branding-section {
  background: white;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.branding-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.branding-header p {
  max-width: 800px;
  margin: 0 auto 15px;
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}

.tagline {
  font-weight: 600;
  color: #ff8c00;
  font-style: italic;
  margin-top: 20px;
}

.subtagline {
  color: #444;
  font-size: 1rem;
  margin-bottom: 40px;
}

.branding-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.branding-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

.branding-card[data-delay="100"] {
  animation-delay: 0.1s;
}
.branding-card[data-delay="200"] {
  animation-delay: 0.2s;
}
.branding-card[data-delay="300"] {
  animation-delay: 0.3s;
}
.branding-card[data-delay="400"] {
  animation-delay: 0.4s;
}

.branding-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

/* ICON STYLING */
.icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, #ff7a00, #ff4d00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(255, 122, 0, 0.3);
  animation: floatIcon 3s ease-in-out infinite;
}

.icon i {
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.branding-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.branding-card p {
  color: #555;
  font-size: 0.95rem;
}

.cta-container {
  margin-top: 50px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #ff7a00, #ff4d00);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
}

/* ====== Keyframe Animations ====== */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIcon {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ==============================
   BRAND EXPERIENCE SECTION
============================== */

.brand-experience-section {
  background: #fdfdfd;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.brand-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.brand-intro h2 {
  font-size: 2.2rem;
  color: #111;
  font-weight: 700;
  margin-bottom: 15px;
}

.brand-intro p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.brand-intro h4 {
  font-size: 1.1rem;
  font-style: italic;
  color: #ff7a00;
}

.brand-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.brand-box {
  background: #fff;
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: left;
  transition: all 0.4s ease;
  border-top: 5px solid transparent;
}

.brand-box:hover {
  transform: translateY(-10px);
  border-top: 5px solid #ff7a00;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.brand-icon {
  font-size: 2.5rem;
  color: #ff7a00;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-box h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.brand-box ul {
  list-style: none;
  padding: 0;
}

.brand-box ul li {
  margin-bottom: 10px;
  color: #555;
  font-size: 0.95rem;
  position: relative;
  padding-left: 20px;
}

.brand-box ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff7a00;
  font-weight: bold;
}

.brand-call {
  margin-top: 60px;
}

.brand-btn {
  background: linear-gradient(135deg, #ff7a00, #ff4d00);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.brand-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.4);
}

@media (max-width: 768px) {
  .brand-box {
    text-align: center;
  }
}

/* ==============================
   CREATIVE BRAND SECTION
============================== */

.creative-brand-section {
  background: #f9fafc;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.creative-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.creative-header h2 {
  font-size: 2.3rem;
  color: #111;
  font-weight: 700;
  margin-bottom: 15px;
}

.creative-header p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.creative-header h4 {
  font-size: 1.1rem;
  font-style: italic;
  color:#ff8c00;
  margin-top: 10px;
}

.creative-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.creative-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: left;
  transition: all 0.4s ease;
  border-top: 5px solid transparent;
}

.creative-card:hover {
  transform: translateY(-10px);
  border-top: 5px solid #ff8c00;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* ICON FIX */
.creative-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ff9800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(255, 0, 122, 0.3);
  animation: floatIcon 3s ease-in-out infinite;
}

.creative-icon i {
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.creative-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.creative-card ul {
  list-style: none;
  padding: 0;
}

.creative-card ul li {
  margin-bottom: 10px;
  color: #555;
  font-size: 0.95rem;
  position: relative;
  padding-left: 20px;
}

.creative-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color:#ff8c00;
  font-weight: bold;
}

.creative-cta {
  margin-top: 60px;
}

.creative-button {
  background: #ff7c00;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.creative-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 0, 122, 0.4);
}

@media (max-width: 768px) {
  .creative-card {
    text-align: center;
  }
}
/* ===== BUSINESS CONSULTING SECTION ===== */
.consulting-section {
  background: #f8fafc;
  padding: 100px 6%;
  text-align: center;
}

.consulting-header h2 {
  font-size: 2.3rem;
  color: #1e1e1e;
  font-weight: 700;
  margin-bottom: 20px;
}

.consulting-header p {
  color: #555;
  max-width: 850px;
  margin: 10px auto;
  line-height: 1.7;
}

.consulting-header .tagline {
  color:#ff8c00;
  font-weight: 600;
  margin-top: 15px;
  font-size: 1.1rem;
}

.consulting-header .subtagline {
  font-style: italic;
  color: #444;
  margin-bottom: 50px;
}

.consulting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.consulting-card {
  background: #fff;
  border-radius: 15px;
  padding: 35px 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

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

.consulting-icon {
  font-size: 2.3rem;
  color:#ff8c00;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.consulting-card:hover .consulting-icon {
  color: #ff8c00;
}

.consulting-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 10px;
}

.consulting-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.consulting-cta {
  margin-top: 50px;
}

.consulting-button {
  display: inline-block;
  background: #ff8c00;
  color: #fff;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.consulting-button:hover {
  background:#ff8c00;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .consulting-header h2 {
    font-size: 1.7rem;
  }
  .consulting-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   BUSINESS STRATEGY & TRANSFORMATION SECTION
============================================= */
.biz-strategy-section {
  background: #f9fbfd;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.biz-strategy-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

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

.biz-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.biz-header p {
  color: #555;
  font-size: 1.1rem;
}

/* GRID LAYOUT */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

/* CARD STYLING */
.biz-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

.biz-card h3 {
  font-size: 1.3rem;
  color: #ff8c00;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.biz-card i {
  color:  #ff8c00;
  font-size: 1.4rem;
}

.biz-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.biz-card ul li {
  color: #333;
  font-size: 1rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.biz-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff8c00;
  font-weight: bold;
}

@media (max-width: 992px) {
  .biz-header h2 {
    font-size: 2rem;
  }
}

/* ===================================
   WHY BUSINESS OWNERS CHOOSE US (Modern)
=================================== */
.why-choose{
  padding: 100px 8%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.why-choose-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 1;
}

/* ====== IMAGE SIDE ====== */
.why-choose-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-choose-image img {
  width: 100%;
  max-width: 460px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  animation: floatImage 5s ease-in-out infinite;
  transition: transform 0.5s ease;
}

.why-choose-image img:hover {
  transform: scale(1.03);
}

/* ====== TEXT SIDE ====== */
.why-choose-content {
  flex: 1 1 50%;
  color: #1e1e1e;
}

.why-choose-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 35px;
  color: #111827;
  line-height: 1.3;
  text-align: center;
}

.why-choose-content .highlight {
  color: #ff6b00;
}

/* ====== ITEMS ====== */
.why-choose-item {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 18px;
  padding: 22px 25px;
  margin-bottom: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #ff6b00;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.why-choose-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ff6b00, #ff914d);
  transition: width 0.4s ease;
  z-index: 0;
  opacity: 0.05;
}

.why-choose-item:hover::before {
  width: 100%;
}

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

.why-choose-item i {
  font-size: 1.9rem;
  color: #ff6b00;
  margin-right: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.why-choose-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1f2937;
  position: relative;
  z-index: 1;
}

.why-choose-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #374151;
  position: relative;
  z-index: 1;
}

/* ====== FLOATING ANIMATION ====== */
@keyframes floatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
  .why-choose-container {
    flex-direction: column;
    text-align: center;
  }

  .why-choose-content h2 {
    font-size: 1.8rem;
  }

  .why-choose-item {
    text-align: left;
  }
}
/* =======================================
   THE BACKBONE OF MODERN BUSINESS SECTION
========================================= */
.backbone-section {
  position: relative;
  padding: 140px 20px;
  background:white;
  color:black;
  overflow: hidden;
  text-align: center;
}

.backbone-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 123, 255, 0.15), transparent 70%),
              radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05), transparent 60%);
  animation: subtleGlow 8s infinite alternate ease-in-out;
  z-index: 1;
}

@keyframes subtleGlow {
  0% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0.8; transform: scale(1); }
}

.backbone-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.backbone-content h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.4;
}

.backbone-content .highlight {
  color:#ff8c00;
}

.backbone-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color:black;
  margin-bottom: 40px;
}

.backbone-quote {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-left: 4px solid #ff8c00;
  border-radius: 12px;
  max-width: 750px;
  margin: 0 auto 50px;
  position: relative;
}

.backbone-quote i {
  position: absolute;
  top: -15px;
  left: 20px;
  font-size: 1.8rem;
  color:#ff8c00;
  opacity: 0.8;
}

.backbone-quote p {
  font-style: italic;
  font-size: 1.1rem;
  color:black;
  margin: 0;
  padding-left: 40px;
}

.backbone-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.backbone-points .point {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 25px;
  border-radius: 30px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.backbone-points .point i {
  color:#ff8c00;
  font-size: 1.4rem;
}

.backbone-points .point span {
  font-size: 1rem;
  color:black;
}

.backbone-points .point:hover {
  background: rgba(0, 170, 255, 0.15);
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
  .backbone-content h2 {
    font-size: 1.8rem;
  }
  .backbone-points {
    flex-direction: column;
    align-items: center;
  }
}

/* ================================
   EMPOWERING INNOVATION SECTION
================================ */
.innovation-section {
  padding: 100px 0;
  background: #f9fbfd;
}

.innovation-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  padding: 0 20px;
}

.innovation-content {
  flex: 1 1 50%;
}

.innovation-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1e1e1e;
}

.innovation-content .highlight {
  color:#ff8c00;
}

.innovation-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.7;
}

.innovation-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.innovation-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1rem;
  color: #333;
  background: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.innovation-item i {
  font-size: 1.5rem;
  color: #ff8c00;
}

.innovation-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 119, 255, 0.1);
}

.innovation-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.innovation-image img {
  max-width: 90%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

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

  .innovation-image img {
    max-width: 80%;
  }

  .innovation-item {
    justify-content: center;
    text-align: left;
  }
}

/* ===========================
   OUR APPROACH SECTION
=========================== */
.approach-section {
  padding: 100px 8%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.approach-text {
  flex: 1 1 50%;
  color: #1e1e1e;
}

.approach-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111827;
}

.approach-text .highlight {
  color: #ff6b00;
}

.approach-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 15px;
}

.approach-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.approach-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  background: #f9fafc;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.approach-list i {
  font-size: 1.3rem;
  color: #ff6b00;
  margin-top: 3px;
}

.approach-footer {
  margin-top: 20px;
  font-style: italic;
  color: #444;
}

.approach-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.approach-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  animation: floatImage 4s ease-in-out infinite;
}

/* Floating Image Animation */
@keyframes floatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* Responsive Design */
@media (max-width: 992px) {
  .approach-container {
    flex-direction: column;
    text-align: center;
  }
  .approach-text {
    flex: 1 1 100%;
  }
}

/* =========================
   E-COMMERCE SECTION STYLES
========================= */
.vision-section {
  background:white;
  color:orange;
  
  padding: 80px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
}

/* Optional soft overlay glow */
.vision-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 70%);
  animation: glow 8s infinite alternate;
}

@keyframes glow {
  from { transform: rotate(0deg); opacity: 0.6; }
  to { transform: rotate(360deg); opacity: 1; }
}

.vision-section h2 {
  font-size: 2.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  background:orange;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vision-section p {
  max-width: 850px;
  margin: 0 auto 15px;
  line-height: 1.8;
  color:black;
}

/* Fade-in animation for text */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.4s; }
.fade-in:nth-child(4) { animation-delay: 0.6s; }
.fade-in:nth-child(5) { animation-delay: 0.8s; }

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

.ecom-section {
  background: linear-gradient(135deg, #ffffff, #f9f9f9);
  position: relative;
  overflow: hidden;
}

.ecom-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e1e1e;
}

.ecom-section p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
}

.ecom-section .brand-name {
  color: #ff7c00;
  font-weight: 600;
}

.ecom-image-container {
  position: relative;
  display: inline-block;
  animation: floatImage 4s ease-in-out infinite;
}
/* E-Commerce Image Styling */
.ecom-image {
  max-width: 90%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: floatImage 5s ease-in-out infinite;
}

/* Floating animation for image */
@keyframes floatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* ===============================
   DECORATIVE FLOATING DOTS
=============================== */
.ecom-image-container {
  position: relative;
  display: inline-block;
}

/* Top-right decorative dots */
.floating-dots {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #ff7c00 30%, transparent 30%);
  background-size: 15px 15px;
  opacity: 0.25;
  animation: rotateDots 10s linear infinite;
  z-index: -1;
}

/* Bottom-left decorative dots */
.floating-dots-left {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #ff7c00 30%, transparent 30%);
  background-size: 15px 15px;
  opacity: 0.25;
  animation: rotateDotsReverse 10s linear infinite;
  z-index: -1;
}

/* Rotation animations */
@keyframes rotateDots {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateDotsReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* Button hover effect */
.ecom-section .btn-primary {
  background-color: #ff7c00;
  border: none;
  transition: 0.3s;
}

.ecom-section .btn-primary:hover {
  background-color: #e56f00;
  transform: translateY(-2px);
}
/* ===== INNOVATION SECTION ===== */
.innovation-section {
  background: white ;
  color:black;
  padding: 100px 8%;
  overflow: hidden;
  position: relative;
}

.innovation-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}

/* LEFT SIDE IMAGE */
.innovation-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: floatImage 5s ease-in-out infinite;
}

.innovation-image img {
  width: 90%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
  transition: transform 0.5s ease;
}

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

/* RIGHT SIDE TEXT */
.innovation-text {
  flex: 1 1 45%;
  animation: slideInRight 1s ease forwards;
}

.innovation-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffae42;
}

.innovation-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.innovation-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}
.innovation-list li {
  margin-bottom: 15px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Keeps icon and text aligned to left */
  gap: 10px;
}


.innovation-list i {
  color: #ffae42;
  font-size: 1.2rem;
}

/* CTA Button */
.explore-btn {
  background-color: #ff6600;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

.explore-btn:hover {
  background-color: #ffae42;
  transform: translateY(-4px);
}

/* Animations */
@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

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

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

  .innovation-image img {
    width: 100%;
  }
}/* ===== IOT SECTION CARD STYLE ===== */
.iot-section-card {
  padding: 120px 8%;
  background: linear-gradient(135deg, #fff7e6, #ffffff);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* MAIN CONTAINER */
.iot-card-container {
  width: 100%;
  max-width: 1200px;
}

/* CARD STYLE */
.iot-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  padding: 50px;
  gap: 40px;
  flex-wrap: wrap;
  transition: 0.4s ease;
}

.iot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 165, 0, 0.25);
}

/* LEFT TEXT */
.iot-card-text {
  flex: 1 1 55%;
}

.iot-card-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.iot-card-text h2 span {
  color: #ffae42;
}

.iot-card-text p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* FEATURES LIST */
.iot-points {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.iot-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: #444;
}

.iot-points i {
  color: #ffae42;
  font-size: 1.2rem;
}

/* BUTTON STYLE */
.iot-btn-card {
  display: inline-block;
  background-color: #ff6600;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
  transition: 0.3s ease;
}

.iot-btn-card:hover {
  background-color: #ffae42;
  transform: translateY(-4px);
}

/* RIGHT IMAGE (INSIDE CARD) */
.iot-card-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.iot-card-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.25);
  transition: transform 0.5s ease;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 1000px) {
  .iot-card {
    flex-direction: column;
    text-align: center;
  }

  .iot-card-text {
    order: 1;
  }

  .iot-card-image {
    order: 2;
  }

  .iot-card-image img {
    max-width: 350px;
    margin-top: 20px;
  }
}
/* ====== SECTION CONTAINER ====== */
.iot-why-section {
  padding: 100px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.iot-why-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* ====== TEXT SIDE ====== */
.iot-why-text {
  flex: 1 1 55%;
}

.iot-why-text h2 {
  text-align: center;
  align-items: center;
  font-size: 2.3rem;
  color: #1e1e1e; /* dark black text */
  font-weight: 700;
  margin-bottom: 30px;
}

.iot-why-text h2 span {
  color: #ff7a00; /* orange highlight */
}

/* ====== FEATURE CARD ====== */
.iot-feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px 30px;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.1);
  transition: all 0.4s ease;
}

.iot-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(255, 122, 0, 0.2);
}

/* ====== CARD HEADER WITH ICON ====== */
.iot-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.iot-card-header i {
  font-size: 1.5rem;
  color: #ff7a00;
  background: rgba(255, 122, 0, 0.1);
  padding: 10px;
  border-radius: 50%;
  transition: 0.4s ease;
  animation: popIn 1s ease;
}

.iot-card-header h3 {
  font-weight: 600;
  color: #1e1e1e;
  font-size: 1.3rem;
  margin: 0;
  transition: 0.3s ease;
}

.iot-feature-card:hover .iot-card-header i {
  background: linear-gradient(90deg, #ff7a00, #ffb347);
  color: #fff;
  transform: rotate(10deg) scale(1.1);
}

@keyframes popIn {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
/* ====== IOT WHY POINTS (CHECK ICON LIST) ====== */
.iot-why-points {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.iot-why-points li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: #000;
  font-size: 1rem;
  position: relative;
  padding: 10px 15px;
  border-radius: 10px;
  background: rgba(255, 122, 0, 0.05); /* light orange transparent bg */
  transition: 0.3s ease;
}

.iot-why-points li i {
  color: #ff7a00;
  font-size: 1.2rem;
  background: rgba(255, 122, 0, 0.1);
  padding: 6px;
  border-radius: 50%;
  transition: 0.3s ease;
}

.iot-why-points li:hover {
  background: rgba(255, 122, 0, 0.12);
  transform: translateX(5px);
}

.iot-why-points li:hover i {
  background: linear-gradient(90deg, #ff7a00, #ffb347);
  color: #fff;
  transform: scale(1.1);
}

/* ====== QUOTE STYLING ====== */
.iot-why-text blockquote {
  font-style: italic;
  color: #1e1e1e;
  border-left: 5px solid #ff7a00;
  padding-left: 15px;
  margin: 30px 0;
  font-size: 1.1rem;
}

/* ====== BUTTON ====== */
.iot-why-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff7a00, #ffb347);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.iot-why-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.4);
}

/* ====== IMAGE SIDE ====== */
.iot-why-image {
  flex: 1 1 40%;
  position: relative;
  text-align: center;
}

.iot-why-image img {
  max-width: 100%;
  border-radius: 20px;
  z-index: 2;
  position: relative;
  animation: floatImg 4s ease-in-out infinite;
}

.iot-why-bg {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.2), transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
  .iot-why-container {
    flex-direction: column;
  }
  .iot-why-text, .iot-why-image {
    flex: 1 1 100%;
  }
}
/* ===============================
   OUR IT CONSULTING APPROACH
=============================== */
.consulting-approach {
  background: #ffffff;
  padding: 100px 8%;
  position: relative;
  overflow: hidden;
}

/* ========== CONTAINER ========== */
.approach-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ========== IMAGE SIDE ========== */
.approach-image {
  flex: 1 1 40%;
  text-align: center;
  position: relative;
}

.approach-image img {
  width: 85%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(255, 102, 0, 0.2);
  animation: floatImage 4s ease-in-out infinite;
  transition: 0.4s ease;
}

.approach-image::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,102,0,0.15), transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

/* ========== TEXT SIDE ========== */
.approach-text {
  flex: 1 1 50%;
  color: #1a1a1a;
}

.approach-text h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #ff6600;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  animation: fadeSlideUp 1s ease;
}

.approach-text h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ff6600, transparent);
  border-radius: 2px;
  animation: lineGrow 1.5s ease;
}

.approach-text p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 25px;
  animation: fadeSlideUp 1.3s ease;
}

/* ========== POINTS LIST ========== */
.approach-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.approach-points li {
  font-size: 1rem;
  color: #222;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 102, 0, 0.05);
  border-radius: 10px;
  padding: 10px 14px;
  transition: all 0.3s ease;
  cursor: default;
  transform: translateY(0);
}

.approach-points li i {
  color: #ff6600;
  background: rgba(255, 102, 0, 0.15);
  border-radius: 50%;
  padding: 8px;
  font-size: 1rem;
  transition: 0.3s ease;
}

.approach-points li:hover {
  transform: translateX(8px);
  background: rgba(255, 102, 0, 0.1);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.15);
}

.approach-points li:hover i {
  background: #ff6600;
  color: #fff;
  transform: rotate(10deg);
}

/* ========== ANIMATIONS ========== */
@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes lineGrow {
  0% { width: 0; opacity: 0; }
  100% { width: 80px; opacity: 1; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .approach-container {
    flex-direction: column;
    text-align: center;
  }

  .approach-image img {
    width: 70%;
  }

  .approach-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .approach-points li {
    justify-content: center;
  }
}
/* ================================
   IT STRATEGY SECTION STYLING
================================ */
.it-strategy-section {
  background: linear-gradient(135deg, #f8faff, #eef3fb);
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.it-strategy-container {
  max-width: 1200px;
  width: 100%;
}

/* ===== HEADING ===== */
.it-strategy-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  animation: floatIcon 3s ease-in-out infinite;
}

.it-strategy-header i {
  color: #007bff;
  font-size: 2.3rem;
  animation: spinTool 4s linear infinite alternate;
}

.it-strategy-header p {
  color: #555;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* Hover effect for list */
.approach-points li:hover {
  transform: translateX(5px);
  color: #000;
}

.approach-points li:hover i {
  background: #ff6600;
  color: #fff;
  transform: rotate(10deg) scale(1.1);
}

/* ===== Floating animation for image ===== */
@keyframes floatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .approach-container {
    flex-direction: column;
    text-align: center;
  }

  .approach-image img {
    width: 100%;
  }
}
/* ================================
   IT STRATEGY SECTION (White + Orange Theme)
================================ */
.it-strategy-section {
  background: #ffffff;
  padding: 100px 8%;
  color: #000;
}

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

/* ===== HEADER ===== */
.it-strategy-text h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ff6600;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  letter-spacing: 0.5px;
  animation: fadeSlideUp 1.2s ease;
}

.it-strategy-text h2 i {
  color: #ff6600;
  font-size: 2rem;
  animation: spinTool 4s linear infinite alternate;
}

/* ===== PARAGRAPH ===== */
.it-strategy-text p {
  color: #222;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px;
}

/* ===== STRATEGY GRID ===== */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
}

/* ===== STRATEGY CARD ===== */
.strategy-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  transform: translateY(0);
  border: 1px solid #f1f1f1;
  text-align: center;
}

.strategy-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 35px rgba(255, 102, 0, 0.25);
  border-color: #ff6600;
}

/* ===== ICON ===== */
.strategy-card i {
  font-size: 2rem;
  color: #ff6600;
  background: rgba(255, 102, 0, 0.08);
  border-radius: 50%;
  padding: 15px;
  margin-bottom: 15px;
  transition: 0.3s ease;
  animation: floatIcon 3s ease-in-out infinite;
}

.strategy-card:hover i {
  background: #ff6600;
  color: #fff;
  transform: rotate(10deg);
}

/* ===== TITLE ===== */
.strategy-card h3 {
  color: #111;
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
}

/* ===== DESCRIPTION ===== */
.strategy-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== BLOCKQUOTE ===== */
blockquote {
  margin-top: 60px;
  font-style: italic;
  color: #333;
  background: #fff8f3;
  border-left: 5px solid #ff6600;
  padding: 20px 25px;
  border-radius: 10px;
  font-size: 1.05rem;
  animation: fadeSlideUp 1.5s ease-in-out;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 5px 20px rgba(255, 102, 0, 0.15);
}

/* ===== ANIMATIONS ===== */
@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

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

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==============================
   WEB APPLICATION DEVELOPMENT SECTION
============================== */
.web-dev-section {
  padding: 80px 0;
  background: #fff;
  font-family: "Poppins", sans-serif;
}
/* ===== TOP LEFT DOTS ===== */
.web-dev-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* ===== LEFT SIDE TEXT ===== */
.web-dev-text {
  flex: 1 1 45%;
  color: #1e1e1e;
}

.web-dev-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1e1e1e;
}

.web-dev-list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.web-dev-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  line-height: 1.6;
  color: #333;
  font-size: 18px;
}

.web-dev-list i {
  color: #ff7c00;
  font-size: 20px;
  margin-top: 3px;
}

/* ===== BUTTON ===== */
.launch-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #ff7c00, #ff9800);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 6px 18px rgba(255, 124, 0, 0.3);
  transition: all 0.3s ease;
}

.launch-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(255, 124, 0, 0.4);
}/* ===== RIGHT SIDE IMAGES ===== */
.web-dev-images {
  flex: 1 1 45%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0; /* move entire image section up */
}

.image-stack {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin-top: 0; /* remove extra push */
}

.image-stack img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2; /* ensure image is above dots */
}

.dots-bg-top-left {
  position: absolute;
  top: -20px;  /* move dots slightly above image */
  left: -20px; /* move dots slightly outside image */
  width: 180px;
  height: 180px;
  background-image: radial-gradient(#ff8c00 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.6;
  z-index: 0;
}

.dots-bg {
  position: absolute;
  bottom: -20px;  /* move dots closer to image */
  right: -20px;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(#ff8c00 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.6;
  z-index: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .web-dev-content {
    flex-direction: column;
    text-align: center;
  }

  .web-dev-text {
    flex: 1 1 100%;
  }

  .web-dev-images {
    flex: 1 1 100%;
    margin-top: 50px;
  }

  .image-stack {
    margin: 0 auto;
  }

  .image-stack .img-bottom {
    bottom: -30px;
    right: -30px;
  }
}
/* ==============================
   ORANGE & BLACK THEME SECTION
============================== */
.web-section {
  background-color: #fff7f0; /* soft light orange background */
  padding: 80px 0;
}

.web-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* ===== HEADINGS ===== */
.web-section .text-center {
  text-align: center;
  max-width: 800px; /* optional: keeps text nicely aligned */
  margin: 0 auto; /* centers the block itself */
}

.web-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.web-section p {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.6;
}
/* ===== SERVICE CARDS ===== */
.service-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  padding: 25px;
  flex: 1 1 30%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #ff7c00; /* orange accent bar on top */
}

.service-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* ===== CARD TEXT ===== */
.service-card h3 {
  font-size: 1.25rem;
  color: #111;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== HOVER EFFECT ===== */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(255, 124, 0, 0.25);
}

.service-card:hover h3 {
  color: #ff7c00; /* orange title hover effect */
}
/* ===== OUR ADDITIONAL SERVICES SECTION ===== */
.extra-services-section {
  background-color: #f8f9ff; /* light background like reference */
  padding: 80px 0;
  text-align: center;
}

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

/* ===== HEADING ===== */
.extra-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 60px;
}

/* ===== GRID LAYOUT ===== */
.extra-services-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* ===== SERVICE CARD ===== */
.extra-service-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  width: 320px;
  padding: 50px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 5px solid #ff7c00; /* orange accent line */
}

.extra-service-card i {
  font-size: 55px;
  color: #ff7c00; /* orange icons */
  margin-bottom: 25px;
}

.extra-service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #111;
  margin-top: 10px;
}

/* ===== HOVER EFFECT ===== */
.extra-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 124, 0, 0.25);
}

.extra-service-card:hover i {
  color: #111; /* icon changes to black on hover */
}
/* ===== BUSINESS CTA SECTION ===== */
.business-cta {
  background:  #ff7c00; /* orange to black */
  color: #fff;
  padding: 80px 0;
}

.business-cta-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.business-cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.business-cta-content p {
  font-size: 1.1rem;
  color: #f3f3f3;
}

.business-cta-button {
  background-color: #fff;
  color: #111;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.business-cta-button i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.business-cta-button:hover {
  background-color: #ff7c00;
  color: #fff;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .business-cta-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
}


/*** About Start ***/
.about .text {
    position: relative;
}

.about .text::after {
    content: "";
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bs-primary);
}
.why-choose-section {
  padding: 100px 0;
  background: #fff8f0;
  text-align: center;
}




.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.choose-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(255, 124, 0, 0.2);
}

.choose-card i {
  font-size: 40px;
  color: #FF7C00;
  margin-bottom: 15px;
}

.choose-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.choose-card p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}
.usp-section {
  background: #fff;
  padding: 100px 0;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 50px;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
}

.usp-item:hover {
  background: #fff;
  box-shadow: 0 8px 25px rgba(255, 124, 0, 0.15);
}

.usp-item i {
  font-size: 40px;
  color: #FF7C00;
  min-width: 50px;
}

.usp-text h4 {
  font-size: 22px;
  color: #333;
  font-weight: 600;
}

.usp-text p {
  color: #555;
  font-size: 16px;
  margin-top: 8px;
  line-height: 1.6;
}

/*** About End ***/
/*** it-software-solution***/
/* 🌐 IT & Digital Services Section Styles */
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Animated Glow Effect */
.service-card::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,124,0,0.1), transparent 70%);
  transition: all 0.6s ease;
  opacity: 0;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
  transform: scale(1.1);
}

/* Hover Interaction */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(255,124,0,0.2);
}

/* Text */
.service-card h5 {
  font-weight: 600;
  color: #333;
  margin-top: 15px;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Icon Styling */
.service-icon {
  color: #ff7c00;
  font-size: 2.5rem;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  transform: rotate(8deg) scale(1.1);
}

/* Read More Button */
.read-more-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  background: linear-gradient(90deg, #ff7c00, #ff9a00);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.read-more-btn:hover {
  background: linear-gradient(90deg, #ff9a00, #ff7c00);
  box-shadow: 0 5px 15px rgba(255, 124, 0, 0.4);
  transform: translateY(-3px);
}

/* 🧩 RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .service-card {
    padding: 25px 20px;
    margin-bottom: 25px;
  }
  .service-icon {
    font-size: 2.2rem;
  }
  .service-card h5 {
    font-size: 1.1rem;
  }
  .service-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .service-card {
    padding: 22px 18px;
  }
  .service-icon {
    font-size: 2rem;
  }
  .service-card h5 {
    font-size: 1.05rem;
  }
  .service-card p {
    font-size: 0.88rem;
  }
  .read-more-btn {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .service-card {
    padding: 20px 15px;
    border-radius: 16px;
  }
  .service-icon {
    font-size: 1.8rem;
  }
  .service-card h5 {
    font-size: 1rem;
  }
  .service-card p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .read-more-btn {
    font-size: 0.85rem;
    padding: 7px 16px;
  }
}
/* 🌐 General Section Styling */
.digital-branding-section {
  background: #fafafa;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.branding-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.branding-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
}

/* Titles */
.branding-title {
  font-size: 1.6rem;
  color:#ff7c00;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.branding-title i {
  color: #ff8c00;
  font-size: 1.4rem;
}

/* Text and List */
.branding-text {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 1rem;
}

.branding-list {
  list-style-type: none;
  padding-left: 0;
}

.branding-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.6rem;
}

.branding-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff8c00;
  font-weight: bold;
}

/* ✨ Animation Effects */
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

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

/* 🌟 Animation Classes */
.fade-slide { animation: fadeSlide 1s ease forwards; }
.slide-right { animation: slideRight 1s ease forwards; }
.slide-up { animation: slideUp 1s ease forwards; }
.zoom-in { animation: zoomIn 1s ease forwards; }
.fade-in-up { animation: fadeInUp 1s ease forwards; }

/* Add smooth delay effect */
.branding-card[data-aos-delay="100"] { animation-delay: 0.1s; }
.branding-card[data-aos-delay="200"] { animation-delay: 0.2s; }
.branding-card[data-aos-delay="300"] { animation-delay: 0.3s; }
.branding-card[data-aos-delay="400"] { animation-delay: 0.4s; }
.branding-card[data-aos-delay="500"] { animation-delay: 0.5s; }
.branding-card[data-aos-delay="600"] { animation-delay: 0.6s; }
.branding-card[data-aos-delay="700"] { animation-delay: 0.7s; }
.branding-card[data-aos-delay="800"] { animation-delay: 0.8s; }

/* ERP Page Styles */
#erp-section {
  font-family: "Poppins", sans-serif;
}

.erp-content {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}

.erp-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255,124,0,0.15);
}

.erp-subheading {
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.erp-list {
  list-style: none;
  padding-left: 0;
}

.erp-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 30px;
  color: #555;
  line-height: 1.7;
  font-size: 0.97rem;
}

.erp-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff7c00;
  font-weight: bold;
}

/* Modules Grid */
.erp-modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.module-card {
  background: #fff8f2;
  border: 1px solid #ffe0c2;
  border-radius: 14px;
  padding: 15px;
  text-align: center;
  font-size: 0.95rem;
  color: #444;
  transition: all 0.3s ease;
}

.module-card:hover {
  background: #ff7c00;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(255,124,0,0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .erp-content {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .erp-subheading {
    font-size: 1.2rem;
  }
  .erp-list li {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .erp-content {
    padding: 25px 15px;
  }
  .erp-list li {
    font-size: 0.85rem;
  }
  .module-card {
    font-size: 0.85rem;
  }
}
/* CRM Page Styles */
#crm-section {
  font-family: "Poppins", sans-serif;
}

.crm-content {
  background: #fff;
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  margin-bottom: 30px;
}

.crm-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255,124,0,0.15);
}

.crm-subheading {
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.crm-list {
  list-style: none;
  padding-left: 0;
}

.crm-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 30px;
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
}

.crm-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff7c00;
  font-weight: bold;
}
/* ===========================
   CRM MODULES STYLING
=========================== */
.crm-modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.module-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 124, 0, 0.2), transparent);
  transition: all 0.5s ease;
}

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

.module-card i {
  font-size: 45px;
  color: #ff7c00;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  animation: floatIcon 3s ease-in-out infinite;
}

.module-card h5 {
  font-size: 17px;
  font-weight: 600;
  color: #333;
  margin-top: 10px;
}


.module-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(255, 124, 0, 0.25);
  color: white;
  
}
.module-card:hover h5{
    font-size: 20px;
  font-weight: 600;
  color:white;
  margin-top: 10px;

}
.module-card:hover i {
  color: #fff;
  background: #ff7c00;
  padding: 15px;
  border-radius: 50%;
  transform: scale(1.1) rotate(10deg);
}

/* Floating Icon Animation */
@keyframes floatIcon {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .crm-modules-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  .module-card {
    padding: 20px;
  }
  .module-card i {
    font-size: 35px;
  }
}

/* Floating icon animation */
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}


/* Responsive */
@media (max-width: 992px) {
  .crm-content {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .crm-subheading {
    font-size: 1.2rem;
  }
  .crm-list li {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .crm-content {
    padding: 25px 15px;
  }
  .crm-list li {
    font-size: 0.85rem;
  }
  .module-card {
    font-size: 0.85rem;
  }
}

.erp-section {
  background: #fff;
  padding: 60px 0;
}

.erp-subheading {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 40px;
  position: relative;
}

.erp-subheading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background:#ff8c00;
  margin: 10px auto 0;
  border-radius: 2px;
}

.erp-modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 0 30px;
}

.module-card {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  font-weight: 600;
  color: #333;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.module-card i {
  font-size: 2.2rem;
  color:#ff7c00;
  margin-bottom: 12px;
  transition: transform 0.4s ease, color 0.3s ease;
}

.module-card span {
  display: block;
  font-size: 1rem;
}

.module-card:hover {
  background:#ff8c00;
  color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.module-card:hover i {
  color:#ff8c00;
  transform: scale(1.2) rotate(10deg);
  background-color: white;
}
#mobile-app {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(180deg, #f9f9ff, #ffffff);
  padding: 100px 0;
}

#mobile-app .section-header h4 {
  color: #ff7c00;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeDown 1s forwards;
}

#mobile-app .section-header h2 {
  font-weight: 800;
  font-size: 2.3rem;
  margin-top: 10px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeDown 1s 0.2s forwards;
}

#mobile-app .section-header p {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeDown 1s 0.4s forwards;
}

/* Two-column text styling */
#mobile-app .row p {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0;
  transform: translateX(50px);
  animation: fadeRight 1s forwards;
}

#mobile-app .row p:nth-child(2) {
  animation-delay: 0.2s;
}

/* Image styling */
#mobile-app img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeLeft 1s forwards;
}

#mobile-app img:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Animations */
@keyframes fadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* Responsive */
@media (max-width: 992px) {
  #mobile-app .row {
    flex-direction: column-reverse;
  }

  #mobile-app img {
    margin-bottom: 30px;
    transform: translateX(0);
    animation: fadeUp 1s forwards;
  }

  #mobile-app .row p {
    transform: translateX(0);
    animation: fadeUp 1s forwards;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Mobile App Types Section */
#mobile-app-types h4 {
  font-weight:600;
  margin-bottom:5px;
}
#mobile-app-types h2 {
  font-weight:700;
  margin-bottom:15px;
}
#mobile-app-types p {
  color:#555;
}

/* App Card */
.app-card {
  display:flex;
  align-items:flex-start;
  background:#fff;
  border-radius:20px;
  padding:20px;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  transition:all 0.4s ease;
}
.app-card:hover {
  transform:translateY(-5px);
  box-shadow:0 12px 35px rgba(255,124,0,0.15);
}

/* Icon Circle */
.icon-circle {
  flex-shrink:0;
  width:60px;
  height:60px;
  background:linear-gradient(135deg,#ff7c00,#ff9a00);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:1.8rem;
  margin-right:15px;
  transition:transform 0.4s ease;
}
.app-card:hover .icon-circle {
  transform:scale(1.2) rotate(10deg);
}

/* Card Content */
.card-content h5 {
  margin:0 0 5px 0;
  font-weight:600;
}
.card-content p {
  margin:0;
  font-size:0.95rem;
  color:#555;
  line-height:1.6;
}

/* Image Hover */
.right-image img:hover {
  transform:scale(1.05);
}

/* Responsive */
@media(max-width:992px){
  .mobile-app-wrapper {
    flex-direction:column-reverse;
    gap:40px;
  }
  .left-cards, .right-image {
    text-align:center;
  }
  .app-card {
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
  .icon-circle {
    margin-right:0;
    margin-bottom:10px;
  }
}
/* Mobile App CTA Section Styles */
#mobile-app-cta .cta-btn {
  padding: 12px 25px;
  border-radius: 30px;
  font-weight:600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap:8px;
  transition: all 0.3s ease;
}

#mobile-app-cta .whatsapp-btn {
  background-color: #25D366;
  color: #fff;
}

#mobile-app-cta .whatsapp-btn:hover {
  background-color: #1ebe57;
  transform: translateY(-3px);
}

#mobile-app-cta .talk-btn {
  background-color: #1f1f3d;
  color: #fff;
}

#mobile-app-cta .talk-btn:hover {
  background-color: #353564;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width:768px) {
  #mobile-app-cta .container {
    flex-direction: column;
    text-align: center;
    gap:20px;
  }

  #mobile-app-cta .cta-buttons {
    justify-content: center;
  }
}

#app-process-section {
  padding: 80px 0;
  background:white;
  font-family: 'Poppins', sans-serif;
  color: white;
  text-align: center;
}

/* Header */
.app-process-header h4 {
  color: #ff9a3d;
  font-weight: 600;
  margin-bottom: 10px;
}
.app-process-header h2 {
  font-size: 36px;
  font-weight: 700;
  color:black;
  margin-bottom: 60px;
}

/* Cards container */
.app-process-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

/* Individual card */
.app-process-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  width: 300px; /* medium size */
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: 0.4s;
  backdrop-filter: blur(10px);
  text-align: center;
}

.app-process-card .icon {
  font-size: 36px;
  color:#ff9a3d;
  margin-bottom: 15px;
}

.app-process-card h3 {
  color:black;
  margin-bottom: 12px;
}

.app-process-card p {
  color:gray;
  font-size: 14px;
}

/* Card hover effect */
.app-process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .app-process-card {
    width: 90%;
  }
}
.feature-card {
  background: #f8faff;
  border-radius: 20px;
  padding: 25px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255,124,0,0.2);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,124,0,0.1), transparent 70%);
  transition: all 0.6s ease;
  opacity: 0;
}

.feature-card:hover::before {
  opacity: 1;
  transform: scale(1.1);
}

.feature-icon {
  font-size: 3rem;
  color: #ff7c00;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

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

.feature-card h5 {
  font-weight: 600;
  margin-top: 10px;
}

.feature-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  #mobile-app-features .row {
    flex-direction: column;
    align-items: center;
  }

  .feature-card {
    width: 80%;
    margin-bottom: 20px;
  }
}

/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.3);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

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

.service .service-item .service-img::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    right: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(68, 210, 246, 0.4);
    transition: 0.5s;
}

.service .service-item:hover .service-img::after {
    width: 100% !important;
    height: 100% !important;
}

.service .service-item .service-content {
    position: relative;
}

.service .service-item .service-content::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    width: 100% !important;
    height: 100% !important;
}

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    transition: 0.5s;
    z-index: 2;
}

.service .service-item:hover .service-content .service-content-inner a.h4 {
    color: var(--bs-white) !important;
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner a.h4:hover {
    color: var(--bs-primary) !important;
}
/*** Service End ***/

/*** Project Start ***/
.project .project-carousel.owl-carousel {
    height: 100%;
}

.project .project-carousel .project-item {
    position: relative;
    overflow: hidden;
}

.project .project-carousel .project-item .project-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.project .project-carousel .project-item .project-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(68, 210, 246, 0.4);
    transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-img::after {
    height: 100%;
}

.project .project-carousel .project-item .project-img img {
    transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-img img {
    transform: scale(1.2);
}

.project .project-carousel .project-item .project-content {
    position: relative;
    width: 75%;
    height: 100%;
    bottom: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.project .project-carousel .project-item .project-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px !important;
    background: var(--bs-dark);
    transition: 0.5s;
}

.project .project-carousel .project-item .project-content .project-content-inner {
    position: relative;
    z-index: 2;
}

.project .project-carousel .project-item:hover .project-content .project-content-inner p,
.project .project-carousel .project-item:hover .project-content .project-content-inner a.h4,
.project .project-carousel .project-item:hover .project-content .project-content-inner .project-icon i {
    color: var(--bs-white) !important;
    transition: 0.5s;
}
.project .project-carousel .project-item:hover .project-content .project-content-inner a.h4:hover {
    color: var(--bs-primary) !important;
}

.project .project-carousel .project-item:hover .project-content::after {
    height: 100%;
}

.project-carousel .owl-dots {
    position: absolute;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -120px;
    transition: 0.5s;
}

.project-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-right: 15px;
    background: var(--bs-dark);
    transition: 0.5s;
}

.project-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 40px;
    border: 8px solid var(--bs-primary);
}
/* Make all cards equal height */
.same-height-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Same height image */
.fixed-img {
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

/* Make description same height */
.card-title-text {
    min-height: 50px; /* adjust */
}

.card-desc-text {
    min-height: 90px; /* adjust */
    display: block;
}

/* Ensure Read More button stays bottom aligned */
.project-content-inner {
    display: flex;
    flex-direction: column;
}

/*** Project End ***//***Our Mission & Vision ***/
/* === Mission & Vision Section === */
.mission-vision-section {
  background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
  position: relative;
  overflow: hidden;
}

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

.mv-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  
  /* Initial state for slide-in animation */
  opacity: 0;
}

/* Apply slide-in animation */
.mv-card.mission {
  border-left: 6px solid orangered;
  background: linear-gradient(135deg, #fff7f0, #fff);
  animation: slideInLeft 1s forwards;
}

.mv-card.vision {
  border-left: 6px solid #0066ff;
  background: linear-gradient(135deg, #f0f6ff, #fff);
  animation: slideInRight 1s forwards;
  animation-delay: 0.2s; /* slight delay for staggering */
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.mv-card h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
}

.mv-card ul {
  list-style: none;
  padding: 0;
}

.mv-card ul li {
  margin-bottom: 12px;
  line-height: 1.7;
  color: #444;
  position: relative;
  padding-left: 24px;
}

.mv-card ul li::before {
  content: "•";
  color: orangered;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Vision bullet color */
.mv-card.vision ul li::before {
  color: #0066ff;
}

/* Floating icon animation */
.mv-icon {
  font-size: 40px;
  color: orangered;
  margin-bottom: 15px;
  animation: float 3s ease-in-out infinite;
}

.mv-card.vision .mv-icon {
  color: #0066ff;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Slide-in Animations */
@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-100px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(100px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Decorative floating background gradients */
.mission-vision-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,165,0,0.15) 0%, transparent 70%);
  top: -100px;
  left: -150px;
  z-index: 0;
}

.mission-vision-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,102,255,0.15) 0%, transparent 70%);
  bottom: -100px;
  right: -150px;
  z-index: 0;
}

/* Core Values Section (unchanged) */
.core-values-section {
  background: #f9f9f9;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Optional Parallax / Moving Background */
.parallax-bg {
  position: absolute;
  top: -50px;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,200,0,0.1), transparent);
  z-index: 0;
  animation: moveBg 20s linear infinite;
}

@keyframes moveBg {
  0% {
    transform: translateX(-50%) rotate(0deg);
  }
  50% {
    transform: translateX(0%) rotate(10deg);
  }
  100% {
    transform: translateX(-50%) rotate(0deg);
  }
}

/* Section Header */
.section-header {
  position: relative;
  z-index: 1;
}

.section-header h4.text-orange {
  color: orangered;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-header h1 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 3rem;
}

/* Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

/* Card Animation */
.value-card {
  background: linear-gradient(135deg, #fff, #fffbf0);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: transform 0.4s, box-shadow 0.4s;
}

.value-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.value-icon {
  font-size: 40px;
  color: orangered;
  margin-bottom: 20px;
  transition: transform 0.5s, color 0.5s;
}

.value-card:hover .value-icon {
  transform: rotate(20deg) scale(1.2);
  color: #ff9f1c;
}

.value-card h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
}

.value-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media(max-width: 768px) {
  .values-grid {
    gap: 20px;
  }
}
/***why choose us ***/
.why-choose-section {
  position: relative;
 background: linear-gradient(180deg, #e0f7ff 0%, #f5fbff 100%);

  padding: 100px 0;
  overflow: hidden;
}
.floating-bg {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 120%;
  background: url('img/bg-pattern.svg') repeat center center / cover;
  opacity: 0.05;
  z-index: 0;
  animation: floatBackground 25s linear infinite alternate;
}
@keyframes floatBackground {
  0% { transform: translateY(0); }
  100% { transform: translateY(-30px); }
}
.section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
.section-title .subtitle {
  color: #ff7c00;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title .headline {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}
.section-title .intro-text {
  max-width: 650px;
  margin: 0 auto;
  color: #555;
}
.features-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.feature-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  padding: 40px 25px;
  text-align: center;
  transition: all 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9a3d, #ff7c00);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(255,124,0,0.3);
}
.feature-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #333;
}
.feature-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width:768px) {
  .section-title .headline { font-size: 1.8rem; }
}

.brand-card {
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  min-height: 220px; /* ✅ Equal height for all cards */
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brand-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #d2f3ff, #ffffff);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
#brand-intro {
  animation: fadeInUp 0.8s ease;
}
@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}
/***owner's philosophy***/
.growth-card {
  background: #ffffff;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.growth-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.growth-card i {
  margin-bottom: 15px;
}
.growth-quote {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.founder-quote, .founder-description {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.founder-quote:hover, .founder-description:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.philosophy-card, .highlight-quote, .closing-statement {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.philosophy-card:hover, .highlight-quote:hover, .closing-statement:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
/*** Blog Container - Full Content ***/
.blog {
    width: 100%;
    max-width: 1200px; /* max width of the blog section */
    margin: 0 auto;
    padding-bottom: 50px;
    padding-top: 50px;
    box-sizing: border-box;
}

/*** Blog Items Fixed Size (Flexible Height) ***/
.blog .blog-item {
    min-height: 500px; /* increased height to fit content */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* top-align content */
    background-size: cover;
    background-position: center;
    padding: 20px;
}

/* Project Image Styles */
.blog .blog-item .project-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px; /* slightly larger for better visibility */
    width: 100%;
    transition: 0.5s;
}

/* Image */
.blog .blog-item .project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* Hover Zoom */
.blog .blog-item:hover .project-img img {
    transform: scale(1.3);
}

/* Plus Icon Overlay - Centered */
.blog .blog-item .project-img .blog-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* perfectly center */
    width: 60px;   /* icon container size */
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(68, 210, 246, 0.7); /* slightly darker for visibility */
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item:hover .project-img .blog-plus-icon {
    opacity: 1;
}

/* Blog Title & Button Styling */
.blog .blog-item a.h4 {
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-top: 15px;
}

.blog .blog-item .btn {
    align-self: flex-start;
    margin-top: 10px;
}
/*** Team Start ***/
.team .team-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--bs-dark);
    transition: 0.5s;
}

.team .team-item:hover {
    border: none !important;
}

.team .team-item::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    border: 1px solid;
    border-color: var(--bs-primary) transparent transparent var(--bs-primary) !important;
    z-index: 5;
    transition: 1s;
    opacity: 0;
}

.team .team-item::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 10px;
    border: 1px solid;
    border-color: transparent var(--bs-primary) var(--bs-primary) transparent !important;
    z-index: 5;
    transition: 1s;
    opacity: 0;
}

.team .team-item:hover:after,
.team .team-item:hover::before {
    width: 100% !important;
    height: 100% !important;
    opacity: 1;
}

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

.team .team-item .team-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(68, 210, 246, 0.2);
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 8;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon .team-icon-share {
    position: relative;
    margin-top: -200px;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon .team-icon-share {
    margin-top: 0 !important;
}

.team .team-item .team-content {
    position: relative;
}

.team .team-item .team-content::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bs-primary) !important;
    transition: 0.5s;
}

.team .team-item .team-content::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary) !important;
    transition: 0.5s;
}

.team .team-item:hover .team-content::after,
.team .team-item:hover .team-content::before {
    width: 100% !important;
    height: 50% !important;
}

.team .team-item:hover .team-content .team-content-inner {
    position: relative;
    color: var(--bs-white);
    z-index: 2;
}

.team .team-item .team-content .team-content-inner h4,
.team .team-item .team-content .team-content-inner p {
    transition: 0.5s;
}

.team .team-item:hover .team-content .team-content-inner p {
    color: var(--bs-white) !important;
}

.team .team-item:hover .team-content .team-content-inner h4 {
    color: var(--bs-dark) !important;
}
/*** Team End ***/
/*** Testimonial Container ***/
.testimonial .testimonial-carousel {
    max-width: 750px;     /* Fixed width */
    margin: 0 auto;
    padding: 20px 0;
}

/*** Testimonial Item (Fixed Size) ***/
.testimonial .testimonial-item {
    height: 350px;        /* FIXED card height */
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial .testimonial-item p {
    height: 180px;
    overflow-y: auto;
    padding-right: 8px;
    margin-bottom: 0 !important;   /* FIX: remove space below p */
    white-space: normal;
    scrollbar-width: thin;
}


/* Chrome scrollbar styling */
.testimonial .testimonial-item p::-webkit-scrollbar {
    width: 6px;
}

.testimonial .testimonial-item p::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/*** Remove fade (because full content scrolls) ***/
.testimonial .testimonial-item p::after {
    display: none;
}

/*** Dots ***/
.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial .testimonial-carousel .owl-dot {
    width: 15px !important;
    height: 15px !important;
    border-radius: 10px;
    margin: 0 5px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    transition: 0.3s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    background: var(--bs-primary);
}

/*** FAQ'S Start ***/
.faq {
    position: relative;
    overflow: hidden;
}

.faq::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../img/bg.png);
    object-fit: cover;
    z-index: -1;
}

.faq .faq-img {
    position: relative;
}

.faq .faq-img .faq-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

/*** FAQ'S End ***/
/* === Gradient Text === */
.text-gradient {
    background: linear-gradient(90deg, #ff7e00, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* === Blog Section (Fullscreen Clean Layout) === */
.blog-fullscreen {
    width: 100%;
    min-height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 20px;
}

.blog-inner {
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 10px 35px rgba(255, 126, 0, 0.15);
    padding: 60px 50px;
    max-width: 950px;
    width: 100%;
    animation: fadeInUpSmooth 1s ease both;
}

/* === Title & Subtitle === */
.blog-header {
    text-align: center;
    margin-bottom: 40px;
}
.blog-title {
    font-size: 2.7rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.blog-subtitle {
    font-size: 1.2rem;
    color: #777;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 20px;
}
.title-underline {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff7e00, #ff4500);
    border-radius: 5px;
    margin: 0 auto;
    animation: growLine 1.5s ease-in-out forwards;
}

/* === Blog Image (Medium Sized & Centered) === */
.blog-image {
    text-align: center;
    margin: 40px auto;
}
.blog-feature-img {
    border-radius: 20px;
    width: 75%;
    max-width: 700px;
    height: auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease;
}
.blog-feature-img:hover {
    transform: scale(1.03);
    filter: brightness(95%);
    box-shadow: 0 10px 30px rgba(255, 126, 0, 0.25);
}

/* === Author & Date === */
.meta-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    color: #555;
}
.author i, .date i {
    color: #ff7e00;
    margin-right: 6px;
}

/* === Blog Paragraph === */
.blog-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333;
    text-align: justify;
    margin-top: 25px;
}
.blog-text p:first-letter {
    font-size: 1.7rem;
    font-weight: 700;
    color: #ff7e00;
}

/* === Tags === */
.blog-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 35px;
}
.tag-badge {
    background: rgba(255, 126, 0, 0.1);
    color: #ff7e00;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.tag-badge:hover {
    background: linear-gradient(90deg, #ff7e00, #ff4500);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 126, 0, 0.3);
}

/* === Buttons === */
.btn-gradient {
    background: linear-gradient(90deg, #ff7e00, #ff4500);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 38px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 126, 0, 0.4);
}
.btn-gradient:hover {
    background: linear-gradient(90deg, #ff4500, #ff7e00);
    transform: scale(1.07);
    box-shadow: 0 10px 25px rgba(255, 126, 0, 0.6);
}

/* === Animations === */
@keyframes fadeInUpSmooth {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes growLine {
    from { width: 0; opacity: 0; }
    to { width: 90px; opacity: 1; }
}

/* === Responsive Design === */
@media (max-width: 992px) {
    .blog-inner {
        padding: 40px 30px;
    }
    .blog-feature-img {
        width: 85%;
    }
}
@media (max-width: 768px) {
    .blog-title { font-size: 2.2rem; }
    .blog-subtitle { font-size: 1.05rem; }
    .blog-feature-img { width: 90%; }
    .blog-text p { font-size: 1rem; text-align: left; }
}
@media (max-width: 480px) {
    .blog-inner { border-radius: 15px; padding: 30px 20px; }
    .blog-feature-img { border-radius: 15px; width: 100%; }
}
/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}
.footer .footer-item a {
    line-height: 35px;
    color: white;
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
    color: white;
display: flex;
justify-content: space-between; /* spreads items to both ends */
align-items: center;            /* keeps them vertically aligned */

}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: whitesmoke;
    font-size: large;
}

.footer .footer-item-post a {
    transition: 0.5s;
}

.footer .footer-item-post a:hover {
    color: white !important;
}

.footer .footer-item-post .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item-post .footer-btn a:hover {
    color: var(--bs-dark);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/* =============================
   CAREER SECTION STYLING
============================= */

.career-section {
  background-color: #f8f9fa; /* soft light background */
  padding: 80px 0;
}

.career-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0b1c39; /* dark blue title */
}

.career-section p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.career-highlights li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  transition: 0.3s;
  position: relative;
  padding-left: 5px;
}

.career-highlights li i {
  color: var(--bs-primary);
  font-size: 18px;
  margin-right: 10px;
  margin-top: 3px;
}

.career-highlights li strong {
  color: #0b1c39;
  font-weight: 600;
  margin-right: 5px;
}

.career-highlights li:hover {
  transform: translateX(5px);
  color: var(--bs-primary);
}

.career-section img {
  width: 110%; /* increased from 100% for a slightly larger visual */
  height: 420px; /* you can adjust height as needed (e.g., 400–450px) */
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  margin-left: -20px; /* optional: to balance larger width */
}

.career-section img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.career-section .btn {
  background-color: var(--bs-primary);
  border: none;
  border-radius: 50px;
  color: #fff;
  font-weight: 500;
  transition: 0.4s;
}

.career-section .btn:hover {
  background-color: #0b1c39;
  color: #fff;
  transform: translateY(-3px);
}
.apply-link {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #ff5722;
  text-decoration: none;
  margin-top: 15px;
  position: relative;
  transition: 0.3s ease;
}

.apply-link .arrow {
  margin-left: 8px;
  transition: 0.3s ease;
  font-size: 18px;
}

.apply-link:hover {
  color: #e64a19;
}

.apply-link:hover .arrow {
  transform: translateX(6px);   /* arrow moves forward */
}
.job-location {
  font-size: 14px;
  color: #555;
  margin: 5px 0 10px;
  display: flex;
  align-items: center;
}

.job-location i {
  margin-right: 6px;
  color: #ff5722;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .career-section {
    padding: 60px 0;
  }
  .career-section h2 {
    font-size: 28px;
    text-align: center;
  }
  .career-section p {
    text-align: center;
  }
  .career-section ul {
    margin-top: 15px;
  }
  .career-section .btn {
    display: block;
    margin: 0 auto;
  }
}
.counter-section {
  background: linear-gradient(135deg, #003366, #0059b3);
  color: white;
  text-align: center;
}

.counter-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.counter-box h3 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffcc00;
}

.counter-box p {
  font-size: 18px;
  margin: 0;
  color: #fff;
}
.career-section {
  background-color: #f9fafc;
  text-align: center;
  padding: 80px 0;
}

.career-heading {
  font-size: 2.3rem;
  font-weight: 700;
  color: #1a1a5a;
  margin-bottom: 50px;
}

.career-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.career-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 60px 30px 40px;
  width: 320px;
  text-align: left;

  transition: all 0.3s ease;
}

.career-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Icon Style */
.career-icon {
  position: absolute;
  top: -35px;
  left: 25px;
  background: #ff7c00;
  color: #fff;
  font-size: 28px;
  width: 70px;
  height: 70px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.odoo-icon {
  background:#ff7a00;
}
/* Position Tag (Top Right Corner) */
.position-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #2ecc71;
  color: #fff;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
 
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* Title */
.career-title {
  font-size: 1.2rem;
  color: #1a1a5a;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Urgent Tag */
.urgent-tag {
  display: inline-block;
  background: #ffe5e5;
  color: #ff4b4b;
  padding: 5px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Animation for icon */
.career-icon i {
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Responsive */
@media (max-width: 992px) {
  .career-container {
    flex-direction: column;
    align-items: center;
  }
  .career-card {
    width: 90%;
  }
}
.branches-section {
    padding: 80px 0;
    text-align: center;
    background: #ffffff;
}

.branches-header h2 {
    font-size: 36px;
    color: #ff5722;
    font-weight: 700;
}

.branches-header p {
    color: #666;
    margin-top: 10px;
    margin-bottom: 40px;
}

.branches-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 0 40px;
}

.branch-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0px 4px 18px rgba(0,0,0,0.05);
    transition: .3s ease;
}

.branch-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 8px 25px rgba(0,0,0,0.1);
}

.branch-icon {
    font-size: 34px;
    color: #ff5722;
    margin-bottom: 15px;
}

.branch-title {
    font-size: 20px;
    font-weight: 700;
    color: #1d1d5c;
    margin-bottom: 10px;
}

.branch-address {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.branch-phone {
    font-size: 16px;
    font-weight: 600;
    color: #3f3db2;
    margin-top: 5px;
}

.branch-phone i {
    margin-right: 6px;
}

/* ===============================
   Benefits Section
=============================== */
.benefits-section {
  background-color: #f8f9fc;
  text-align: center;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.benefits-heading {
  font-size: 32px;
  font-weight: 700;
  color: black;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}

.benefits-heading::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background:#ff8c00;
  margin: 10px auto 0;
  border-radius: 2px;
}

.benefits-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Card styling */
.benefit-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  width: 260px;
  padding: 50px 25px;
  transition: all 0.5s ease;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Icon */
.benefit-icon {
  font-size: 45px;
  color: #ff8c00;
  margin-bottom: 25px;
  transition: all 0.5s ease;
}

/* Title */
.benefit-title {
  font-size: 17px;
  font-weight: 600;
  color: #231f5c;
  transition: all 0.5s ease;
}

/* Hover effect - purple theme */
.benefit-card:hover {
  background: #ff8c00;
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(75, 46, 245, 0.3);
}

.benefit-card:hover .benefit-icon {
  color: #fff;
  transform: scale(1.1);
}

.benefit-card:hover .benefit-title {
  color: #fff;
}

/* Optional glowing overlay animation */
.benefit-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(rgba(255, 255, 255, 0.1), transparent 60%);
  transform: scale(0);
  transition: transform 0.6s ease;
  border-radius: 50%;
}

.benefit-card:hover::before {
  transform: scale(1);
}

/* Responsive */
@media (max-width: 768px) {
  .benefits-container {
    flex-direction: column;
    align-items: center;
  }
  .benefit-card {
    width: 85%;
  }
}

/* ========================================
   MEGA MENU - LEFT SIDE OPENING ON HOVER
======================================== */

/* Base dropdown styles */
.navbar-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 0;
  left: auto;
  right: 100%; /* Position to the left of parent */
  margin-right: 0;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

/* Show dropdown on hover */
.navbar-nav .dropdown:hover > .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

/* Mini menu width */
.mini-menu {
  min-width: 280px;
  max-width: 320px;
}

/* Wide menu (Industries) */
.wide-menu {
  min-width: 500px;
  display: flex;
  gap: 30px;
}

/* Mega menu (Services) */
.mega-menu {
  min-width: 900px;
}

/* Menu columns */
.menu-column {
  display: flex;
  flex-direction: column;
}

/* Mega menu heading */
.mega-heading {
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #007bff;
  font-size: 14px;
  text-transform: uppercase;
}

/* Dropdown items */
.dropdown-item {
  padding: 10px 15px;
  font-size: 14px;
  color: #555;
  border-radius: 5px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-item i {
  width: 18px;
  color: #007bff;
  font-size: 14px;
}

.dropdown-item:hover {
  background-color: #f0f8ff;
  color: #007bff;
  padding-left: 20px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  /* On mobile, dropdowns should open downward normally */
  .navbar-nav .dropdown-menu {
    position: static;
    left: 0;
    right: auto;
    transform: none;
    box-shadow: none;
    border-left: 3px solid #007bff;
    margin-left: 15px;
  }
  
  .navbar-nav .dropdown:hover > .dropdown-menu {
    transform: none;
  }
  
  .mega-menu,
  .wide-menu,
  .mini-menu {
    min-width: 100%;
  }
  
  .mega-menu .row > div {
    margin-bottom: 20px;
  }
}

/* Smooth dropdown arrow rotation */
.dropdown-toggle::after {
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(-90deg); /* Arrow points left when menu opens left */
}

@media (max-width: 991px) {
  .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg); /* Arrow points down on mobile */
  }
}