/**
* Template Name: 
* Template URL: 
* Updated: May 20 with Bootstrap v5.3.3
* Author: Dinesh Yogi
* License: 
*/

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

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: white; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2a2c39; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0073b9; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color:#0073b9; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #060606; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: rgb(36, 36, 231); /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: rgb(88, 88, 243);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #404356;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}




/*NEW FRONTEND CSS */

/* === General === */

/* === Header === */
.custom-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f1f4fd;
  padding: 20px 25px;
  /*border-radius: 50px;*/

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);

  z-index: 1001;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #f3f5fe; /* or your desired color */
  box-shadow: 0 2px 8px rgba(161, 108, 108, 0.05);
   transition: background-color 0.3s ease, box-shadow 0.3s ease;
}


.custom-header.scrolled {
  background-color:rgb(247, 241, 241); /* or any other color */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 600;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-menu a,
.dropdown-toggle {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #222;
  padding: 8px 0;
  transition: color 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-box {
  position: absolute;
  top: 40px;
  left: 0;
  background: #fff;
  padding: 10px 0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  min-width: 160px;
  display: flex;
  flex-direction: column;
  z-index: 999;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.dropdown-box.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-dropdown-toggle {
  cursor: pointer;
  position: relative;
}

.mobile-submenu {
  list-style: none;
  padding-left: 15px;
  display: none;
  transition: all 0.3s ease;
}

.mobile-submenu.show {
  display: block;
}



.nav-menu a::after,
.dropdown-toggle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #0073b9;
  width: 0%;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.dropdown-toggle:hover::after {
  width: 100%;
}

.nav-menu a:hover,
.dropdown-toggle:hover {
  color: #0073b9;
}

.dropdown-wrapper {
  position: relative;
}

.dropdown-box {
  position: absolute;
  top: 40px;
  left: 0;
  background: #fff;
  padding: 10px 0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  min-width: 160px;
  display: flex;
  flex-direction: column;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.dropdown-box.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-box a {
  padding: 10px 20px;
  color: #333;
  transition: background 0.2s ease;
  text-decoration: none;
}

.dropdown-box a:hover {
  background-color: #f5f5f5;
  color: #0073b9;
}

/* === CTA Button === */

.cta-dropdown {
  position: relative;
  display: inline-block;
}

.cta-btn {
  background-color: #0073b9;
  /*background: linear-gradient(90deg, #6a5efb, #a248ff);*/
  color: #fff;
  border-radius: 30px;
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.cta-btn:hover {
  background-color: #0056b3;
    transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(106, 94, 251, 0.4);
}

.cta-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 110%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  min-width: 160px;
  z-index: 1000;
  padding: 8px 0;
}

.cta-dropdown:hover .cta-menu {
  display: block;
}

.cta-item {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: background 0.2s;
}

.cta-item:hover {
  background-color: #f5f5f5;
}


/* === Hamburger === */
.hamburger-icon {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #444;
}

/* === Mobile Drawer === */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 80vw;
  max-width: 320px;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.4s ease-in-out;
  z-index: 1100;
  box-shadow: 8px 0 20px rgba(0, 0, 0, 0.1);
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0%);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
  padding: 20px;
}

.drawer-header svg {
  cursor: pointer;
  font-size: 24px;
  color: #444;
}

.mobile-nav {
  list-style: none;
  padding: 0 20px 20px;
}

.mobile-nav li {
  padding: 14px 0;
  font-size: 17px;
  font-weight: 500;
  color: #222;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s ease;
  cursor: pointer;
}

.mobile-nav li:hover {
  color: #0073b9;
}

.mobile-nav a {
  text-decoration: none;
  color: inherit;
}

.mobile-submenu {
  list-style: none;
  padding-left: 15px;
  padding-top: 10px;
  animation: fadeIn 0.2s ease;
}

.mobile-submenu li {
  padding: 6px 0;
  font-size: 16px;
  color: #333;
}

.mobile-submenu li:hover {
  color: #0073b9;
}

/* === Backdrop === */
.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1050;
  backdrop-filter: blur(2px);
  transition: opacity 0.3s ease;
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav-menu,
  .cta-btn {
    display: none;
  }

  .hamburger-icon {
    display: block;
  }
}


/*HOME PAGE HERO SECTION NEW CSS */

/* HOME PAGE HERO SECTION - Enhanced & Responsive */

.home-page-hero-section {
  width: 100%;
  min-height: 100vh;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #f9f9ff 0%, #eef2ff 50%, #f0f4ff 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.home-page-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(108, 99, 255, 0.05) 0%, transparent 40%),
              radial-gradient(circle at 80% 80%, rgba(108, 99, 255, 0.03) 0%, transparent 40%);
  z-index: 0;
}

.home-page-hero-section-swiper {
  width: 100%;
  height: 100%;
}

.home-page-hero-section-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* TEXT SECTION */
.home-page-hero-section-text {
  text-align: center;
  max-width: 800px;
}

.home-page-hero-section-welcome {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  color: #0073b9;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.95;
}

.home-page-hero-section-typewriter {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-page-hero-section-text p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #4a5568;
  line-height: 1.6;
  margin: 1rem auto 2rem auto;
  max-width: 600px;
}

/* BUTTONS */
.home-page-hero-section-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.home-page-hero-section-btn {
  padding: 1rem 2rem;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
}

.home-page-hero-section-btn-primary {
  background: linear-gradient(135deg, #6c63ff 0%, #5a52e8 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}
.home-page-hero-section-btn-primary:hover {
  background: linear-gradient(135deg, #5a52e8 0%, #4c44d4 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
}

.home-page-hero-section-btn-secondary {
  background: transparent;
  color: #6c63ff;
  border: 2px solid #6c63ff;
}
.home-page-hero-section-btn-secondary:hover {
  background: #6c63ff;
  color: #fff;
}

/* IMAGE SECTION */
.home-page-hero-section-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-page-hero-section-image-background {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-page-hero-section-blob {
  position: absolute;
  width: 120%;
  height: auto;
  z-index: 0;
  animation: rotate 40s linear infinite;
}

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

.home-page-hero-section-image-circle {
  width: clamp(200px, 40vw, 350px);
  height: clamp(200px, 40vw, 350px);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  animation: float 6s ease-in-out infinite;
  border: 3px solid rgba(108, 99, 255, 0.2);
  box-shadow: 0 0 30px rgba(108, 99, 255, 0.3),
              0 0 60px rgba(108, 99, 255, 0.2),
              0 0 90px rgba(108, 99, 255, 0.1);
  z-index: 1;
}

.home-page-hero-section-image-circle:hover {
  transform: scale(1.05);
}

.home-page-hero-section-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.home-page-hero-section-image-circle:hover .home-page-hero-section-image {
  transform: scale(1.1);
}

/* FLOAT ANIMATION */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

/* SWIPER PAGINATION */
.home-page-hero-section-swiper .swiper-pagination {
  bottom: 2rem;
}
.home-page-hero-section-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(108, 99, 255, 0.3);
  transition: 0.3s;
}
.home-page-hero-section-swiper .swiper-pagination-bullet-active {
  background: #0073b9;
  transform: scale(1.2);
}

/* ---------------- RESPONSIVE ---------------- */
@media (min-width: 768px) {
  .home-page-hero-section-content {
    flex-direction: row;
    gap: 4rem;
  }
  .home-page-hero-section-text {
    text-align: left;
    flex: 1;
  }
  .home-page-hero-section-image-wrapper {
    flex: 1;
  }
}
@media (min-width: 1024px) {
  .home-page-hero-section-welcome {
    font-size: 3rem;
  }
  .home-page-hero-section-typewriter {
    font-size: 3.5rem;
  }
}
@media (min-width: 1440px) {
  .home-page-hero-section-welcome {
    font-size: 3.5rem;
  }
  .home-page-hero-section-typewriter {
    font-size: 4rem;
  }
}








/*ABOUT SECTION HOME PAGE CSS */

.about-company-section {
  padding: 50px 20px;
  background: #fff;
  color: #222;

}

.about-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
    margin-left: 20px;
  margin-right: 20px;
}

.about-left,
.about-right {
  flex: 1 1 48%;
}

.about-image-grid {
  position: relative;
  max-width: 500px;
  margin: auto;
}

.about-main-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  filter: brightness(1.05) contrast(1.1);
}

.about-main-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-sub-img {
 position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  border-radius: 16px;
  border: 6px solid #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.about-sub-img:hover {
  transform: scale(1.05);
}


.about-overlay-box {
  position: absolute;
  top: -30px;
  left: -30px;
  background-color: #0073b9;
  color: white;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.about-overlay-box h2 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.about-overlay-box p {
  margin: 0;
  font-size: 13px;
}

.company-logo {
  height: 60px;
  margin-bottom: 10px;
}

.subheading {
 color: #0073b9;
  font-weight: 600;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.subheading::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #0073b9, #0073b9);
  border-radius: 2px;
}

.about-right h2 {
  font-size: 32px;
  margin: 10px 0;
}

.description {
  margin-bottom: 25px;
  line-height: 1.6;
  color: #555;
}

.about-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.about-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.about-features svg {
  color: #0073b9;
  margin-right: 10px;
}

.learn-more-btn {
  background: #0073b9;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

.infinex-values-section {
  margin-top: 60px;
}

.infinex-heading {
 text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1a1a1a;
  position: relative;
}

.infinex-heading::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0073b9, #0073b9);
  border-radius: 2px;
}

.infinex-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.infinex-box {
  background: linear-gradient(135deg, #e5e3ee 0%, #e5e3ee 100%);
  padding: 25px 15px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(128, 93, 255, 0.1);
  position: relative;
  overflow: hidden;
  min-width: 160px;
  flex: 1;
  max-width: 180px;
}

.infinex-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0073b9, #0073b9);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.infinex-box:hover::before {
  transform: scaleX(1);
}

.infinex-box:hover {
  transform: translateY(-5px);
}

.infinex-icon {
  font-size: 28px;
  color: #0073b9;
  margin-bottom: 10px;
}

.letter {
  font-size: 26px;
  font-weight: bold;
  color: #0073b9;
}

.word {
  font-size: 16px;
  font-weight: 600;
  margin-top: 5px;
}

.infinex-box p {
  font-size: 13px;
  margin-top: 8px;
  color: #555;
}

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

  .about-left,
  .about-right {
    flex: 1 1 100%;
  }

  .about-main-img {
    max-width: 100%;
  }

  .about-sub-img {
    width: 150px;
    bottom: -20px;
    right: -20px;
  }

  .about-overlay-box {
    top: -20px;
    left: -20px;
    padding: 12px 18px;
  }

  .about-overlay-box h2 {
    font-size: 24px;
  }

  .about-overlay-box p {
    font-size: 12px;
  }

  .infinex-grid {
    justify-content: center;
  }

  .infinex-box {
    width: 240px;
    padding: 20px;
  }
}

/*ABOUT PAGE NEW CSS */

/* Enhanced About Page CSS */
.about-page-wrapper {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

/* ABOUT HERO SECTION CSS */
.about-page-hero-section {
  background: #0073b9;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.about-page-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.about-page-hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  height: auto;
  flex-wrap: nowrap;
  position: relative;
  z-index: 2;
}

.about-page-hero-text {
  flex: 1;
  max-width: 600px;
  text-align: center;
}

.about-page-hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 24px;
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 4px 8px rgba(0,0,0,0.3);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.about-page-hero-text p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  font-weight: 300;
}

.about-page-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-page-hero-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* CONTENT SECTION */
.about-page-hero {
  padding: 80px 20px;
  background: #ffffff;
  position: relative;
}

.about-page-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-page-hero-left {
  flex: 1;
  position: relative;
}

.about-page-hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-page-hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-page-hero-image:hover {
  transform: translateY(-10px);
}

.triangle-yellow,
.triangle-blue {
  position: absolute;
  z-index: -1;
  animation: float 3s ease-in-out infinite;
}

.triangle-yellow {
  top: -20px;
  right: -20px;
  animation-delay: -1s;
}

.triangle-blue {
  bottom: -20px;
  left: -20px;
  animation-delay: -2s;
}

.about-page-hero-right {
  flex: 1;
}

.about-page-hero-badge {
  display: inline-block;
  background: #0073b9;
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-page-hero-right h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2d3748;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.about-page-hero-right h1 span {
  background: #0073b9;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-page-hero-right p {
  font-size: 1.1rem;
  color: #718096;
  line-height: 1.7;
  margin-bottom: 40px;
}

.about-page-hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-page-hero-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(102,126,234,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-page-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background:#0073b9;
}

.about-page-hero-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-page-hero-card .icon-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(102,126,234,0.1) 0%, rgba(118,75,162,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #0073b9;
  font-size: 24px;
  transition: all 0.3s ease;
}

.about-page-hero-card:hover .icon-placeholder {
  background: #0073b9;
  color: white;
  transform: scale(1.1);
}


/*.about-page-hero-card .icon-placeholder img {
  width: 32px;
  height: 32px;
}*/

.about-page-hero-card h3 {
  font-size: 1.3rem;
  color: #2d3748;
  margin-bottom: 12px;
  font-weight: 600;
}

.about-page-hero-card p {
  font-size: 0.95rem;
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

/* FLIP CARDS SECTION */
.about-page-flip-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.about-page-flip-card-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Fixed: Exactly 2 cards per row */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  perspective: 1000px;
}

/* Responsive: 1 card per row on mobile */
@media (max-width: 768px) {
  .about-page-flip-card-container {
    grid-template-columns: 1fr;
  }

.about-page-hero {
    padding: 60px 15px;
  }
  
  .about-page-hero-container {
    flex-direction: column;
    gap: 40px;
  }
  
  /* Hide the entire left section (image) on mobile */
  .about-page-hero-left {
    display: none;
  }
  
  /* Make the right section full width */
  .about-page-hero-right {
    flex: none;
    width: 100%;
    text-align: center;
  }
  
  .about-page-hero-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  
  .about-page-hero-card {
    padding: 25px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .about-page-hero {
    padding: 40px 10px;
  }
  
  .about-page-hero-card {
    padding: 20px;
  }
  
  .about-page-hero-card .icon-placeholder {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .about-page-hero-card h3 {
    font-size: 1.2rem;
  }
  
  .about-page-hero-card p {
    font-size: 0.9rem;
  }
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 350px; /* Increased height for better content display */
  cursor: pointer;
  position: relative;
}

.about-page-flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  border-radius: 20px;
}

.flip-card.flipped .about-page-flip-card-inner {
  transform: rotateY(180deg);
}

.about-page-flip-card-front, 
.about-page-flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  overflow: hidden; /* Prevent content from spilling out */
}

.about-page-flip-card-front {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  padding: 40px 30px;
  justify-content: center;
  align-items: center;
}

.about-page-flip-card-front svg {
  color: white;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
  flex-shrink: 0; /* Prevent icon from shrinking */
}

.about-page-flip-card-front h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

.about-page-open-text {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
  flex-shrink: 0;
}

.about-page-flip-card-back {
  background: white;
  color: #2d3748;
  transform: rotateY(180deg);
  text-align: left;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.about-page-flip-card-back h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #0073b9;
  font-weight: 600;
  text-align: center;
  flex-shrink: 0; /* Title shouldn't shrink */
}

.about-page-flip-card-back p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a5568;
  flex: 1; /* Take remaining space */
  overflow-y: auto; /* Add scroll if content overflows */
  padding-right: 10px; /* Space for scrollbar */
  margin: 0; /* Remove default margin */
}

/* Custom scrollbar styling for webkit browsers */
.about-page-flip-card-back p::-webkit-scrollbar {
  width: 6px;
}

.about-page-flip-card-back p::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.about-page-flip-card-back p::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.about-page-flip-card-back p::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* For Firefox */
.about-page-flip-card-back p {
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 #f1f1f1;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
  .flip-card {
    height: 300px;
  }
  
  .about-page-flip-card-front,
  .about-page-flip-card-back {
    padding: 25px 20px;
  }
  
  .about-page-flip-card-front h3 {
    font-size: 1.3rem;
  }
  
  .about-page-flip-card-back h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .about-page-flip-card-back p {
    font-size: 0.9rem;
  }
}


/* THREE BLOCKS SECTION */
.about-page-three-section {
  padding: 100px 20px;
  background: #ffffff;
}

.about-page-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  gap: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.about-page-block:hover {
  transform: translateY(-10px);
}

.about-page-block.reverse {
  flex-direction: row-reverse;
}

.about-page-block-text {
  flex: 1;
  padding: 50px;
}

.about-page-block-text h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #2d3748;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
}

.about-page-block-text h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.about-page-block-text p {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.8;
  font-weight: 400;
}

.about-page-block-img {
  flex: 1;
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-page-block-img img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-page-block-img img:hover {
  transform: scale(1.05);
}

/* TECH STACK SECTION */
.about-page-tech-stack-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 100px 20px;
  border-radius: 0;
  margin: 0;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

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

.about-page-tech-stack-section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #2d3748;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.about-page-tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  position: relative;
  z-index: 2;
}

.about-page-tech-box {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 25px 20px;
  border-radius: 16px;
  text-align: center;
  width: 140px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.about-page-tech-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102,126,234,0.1), transparent);
  transition: left 0.5s;
}

.about-page-tech-box:hover::before {
  left: 100%;
}

.about-page-tech-box:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(102,126,234,0.2);
  background: rgba(255,255,255,0.95);
}

.about-page-tech-box div {
  font-size: 36px;
  margin-bottom: 15px;
  color: #667eea;
  transition: all 0.3s ease;
}

.about-page-tech-box:hover div {
  color: #764ba2;
  transform: scale(1.2);
}

.about-page-tech-box p {
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
}

/* Tab Buttons */
.about-page-tech-stack-section > div:first-of-type {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.about-page-tech-stack-section button {
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid transparent;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  color: #4a5568;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-page-tech-stack-section button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.about-page-tech-stack-section button[style*="background-color: rgb(0, 122, 204)"] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(102,126,234,0.3);
}

/* TEAM SECTION */
.about-page-team-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-page-team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.about-page-team-heading {
  font-size: clamp(2.5rem, 5vw, 3rem);
  margin-bottom: 60px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 4px 8px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}

.about-page-team-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.about-page-team-card-v2 {
  position: relative;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding-bottom: 40px;
  width: 300px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  overflow: hidden;
}

.about-page-team-card-v2::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(102,126,234,0.1), transparent);
  transition: all 0.6s;
  transform: rotate(-45deg);
  opacity: 0;
}

.about-page-team-card-v2:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translate(50%, 50%);
}

.about-page-team-card-v2:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.about-page-team-img-holder {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 30px auto 0;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.8);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.about-page-team-card-v2:hover .about-page-team-img-holder {
  transform: scale(1.05);
  border-color: rgba(102,126,234,0.5);
  box-shadow: 0 15px 40px rgba(102,126,234,0.3);
}

.about-page-team-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-page-team-card-v2:hover .about-page-team-img-holder img {
  transform: scale(1.1);
}

.about-page-team-details h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 8px;
  color: #2d3748;
}

.about-page-team-details p {
  color: #667eea;
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.about-page-team-social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.about-page-team-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 18px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  color: #4a5568;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.about-page-team-social-icons a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.about-page-team-social-icons a:hover {
  transform: translateY(-3px) scale(1.1);
  color: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.about-page-team-social-icons a:hover::before {
  transform: scale(1);
}

.about-page-team-social-icons a:nth-child(1):hover::before {
  background: #1877f2;
}

.about-page-team-social-icons a:nth-child(2):hover::before {
  background: #1da1f2;
}

.about-page-team-social-icons a:nth-child(3):hover::before {
  background: #0077b5;
}

.about-page-team-social-icons a:nth-child(4):hover::before {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.about-page-team-social-icons a:hover {
  background: transparent;
}

/* TESTIMONIALS */
.about-page-testimonial-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.about-page-testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 80%, rgba(102,126,234,0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(118,75,162,0.1) 0%, transparent 50%);
}

.about-page-testimonial-subtitle {
  color: #0073b9;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
}

.about-page-testimonial-title {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 60px;
  color: #2d3748;
  position: relative;
  z-index: 2;
}

.about-page-testimonial-slider {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-page-testimonial-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-radius: 24px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.about-page-testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.about-page-testimonial-profile {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid #0073b9;
  padding: 3px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(102,126,234,0.3);
}

.about-page-testimonial-name h4 {
  margin: 0;
  font-weight: 700;
  color: #2d3748;
  font-size: 1.2rem;
}

.about-page-testimonial-name p {
  margin: 5px 0 0 0;
  color: #0073b9;
  font-weight: 600;
  font-size: 0.95rem;
}

.stars {
  color: #ffc107;
  margin-bottom: 20px;
  font-size: 20px;
}

.about-page-testimonial-text {
  color: #4a5568;
  line-height: 1.8;
  font-size: 1.1rem;
  max-width: 500px;
  font-style: italic;
  position: relative;
}

.about-page-testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: rgba(102,126,234,0.2);
  position: absolute;
  top: -20px;
  left: -30px;
  font-family: Georgia, serif;
}

.about-page-testimonial-slider .slick-slide {
  padding: 0 20px;
  box-sizing: border-box;
}

.slick-prev, .slick-next {
  width: 50px;
  height: 50px;
  z-index: 10;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  color: white;
  font-size: 20px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 8px 25px rgba(102,126,234,0.3);
}

.slick-prev:hover, .slick-next:hover {
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(102,126,234,0.4);
}

.slick-prev {
  left: -30px;
}

.slick-next {
  right: -30px;
}

.slick-prev::before,
.slick-next::before {
  content: "";
}

/* CONTACT SECTION */
.about-page-contact-section {
  background: linear-gradient(135deg, #d5d9eb 0%, #c3bbca 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.about-page-contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  animation: float 8s ease-in-out infinite;
}

.about-page-contact-section h2 {
  font-size: clamp(2.5rem, 5vw, 3rem);
  margin-bottom: 50px;
  color: #0073b9;
  font-weight: 800;
  text-shadow: 0 4px 8px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}

.about-page-contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(15px);
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
  z-index: 2;
}

.about-page-form-group {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.about-page-contact-form input,
.about-page-contact-form textarea {
  width: 100%;
  padding: 18px 20px;
  border: 2px solid rgba(102,126,234,0.1);
  border-radius: 12px;
  font-size: 1rem;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-family: inherit;
}

.about-page-contact-form input:focus,
.about-page-contact-form textarea:focus {
  outline: none;
  border-color: #0073b9;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
  transform: translateY(-2px);
}

.about-page-contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.about-page-contact-form button {
  background: #0073b9;
  color: #fff;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(102,126,234,0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

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

.about-page-contact-form button:hover::before {
  left: 100%;
}

.about-page-contact-form button:hover {
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(102,126,234,0.4);
}

.about-page-contact-form button:active {
  transform: translateY(-1px) scale(0.98);
}

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .about-page-hero-container {
    gap: 40px;
  }
  
  .about-page-hero-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .about-page-flip-card-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .flip-card {
    height: 350px;
  }
  
  .about-page-team-container {
    gap: 30px;
  }
  
  .about-page-tech-grid {
    gap: 20px;
  }
  
  .about-page-tech-box {
    width: 130px;
  }
}

@media (max-width: 768px) {
  .about-page-wrapper {
    overflow-x: hidden;
  }
  
  .about-page-hero-section {
    padding: 60px 15px;
  }
  
  .about-page-hero-wrapper {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .about-page-hero {
    padding: 60px 15px;
  }
  
  .about-page-hero-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-page-hero-cards {
    grid-template-columns: 1fr;
  }
  
  .about-page-flip-section {
    padding: 80px 15px;
  }
  
  .about-page-flip-card-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .about-page-flip-card {
    height: 320px;
  }
  
  .about-page-three-section {
    padding: 80px 15px;
  }
  
  .about-page-block {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .about-page-block.reverse {
    flex-direction: column;
  }
  
  .about-page-block-text,
  .about-page-block-img {
    padding: 30px;
  }
  
  .about-page-tech-stack-section {
    padding: 80px 15px;
  }
  
  .about-page-tech-grid {
    gap: 15px;
  }
  
  .about-page-tech-box {
    width: 120px;
    padding: 20px 15px;
  }
  
  .about-page-team-section {
    padding: 80px 15px;
  }
  
  .about-page-team-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .about-page-team-card-v2 {
    width: 280px;
  }
  
  .about-page-testimonial-section {
    padding: 80px 15px;
  }
  
  .about-page-testimonial-card {
    padding: 40px 25px;
    margin: 0 10px;
  }
  
  .about-page-testimonial-profile {
    flex-direction: column;
    gap: 15px;
  }
  
  .slick-prev {
    left: -15px;
  }
  
  .slick-next {
    right: -15px;
  }
  
  .about-page-contact-section {
    padding: 80px 15px;
  }
  
  .about-page-contact-form {
    padding: 40px 25px;
  }
  
  .about-page-form-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .about-page-hero-section {
    padding: 40px 10px;
  }
  
  .about-page-hero {
    padding: 40px 10px;
  }
  
  .about-page-hero-card {
    padding: 20px;
  }
  
  .about-page-flip-section {
    padding: 60px 10px;
  }
  
  .flip-card {
    height: 300px;
  }
  
  .about-page-flip-card-front,
  .about-page-flip-card-back {
    padding: 25px 20px;
  }
  
  .about-page-flip-card-front h3 {
    font-size: 1.5rem;
  }
  
  .about-page-flip-card-back h4 {
    font-size: 1.3rem;
  }
  
  .about-page-flip-card-back p {
    font-size: 0.9rem;
  }
  
  .about-page-three-section {
    padding: 60px 10px;
  }
  
  .about-page-block-text,
  .about-page-block-img {
    padding: 20px;
  }
  
  .about-page-tech-stack-section {
    padding: 60px 10px;
  }
  
  .about-page-tech-box {
    width: 110px;
    padding: 18px 12px;
  }
  
  .about-page-tech-box div {
    font-size: 28px;
  }
  
  .about-page-team-section {
    padding: 60px 10px;
  }
  
  .about-page-team-card-v2 {
    width: 260px;
  }
  
  .about-page-team-img-holder {
    width: 160px;
    height: 160px;
  }
  
  .about-page-testimonial-section {
    padding: 60px 10px;
  }
  
  .about-page-testimonial-card {
    padding: 30px 20px;
  }
  
  .testimonial-img {
    width: 60px;
    height: 60px;
  }
  
  .about-page-contact-section {
    padding: 60px 10px;
  }
  
  .about-page-contact-form {
    padding: 30px 20px;
  }
  
  .slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .slick-prev {
    left: -5px;
  }
  
  .slick-next {
    right: -5px;
  }
}

/* HIGH DPI SCREENS */
@media only screen and (-webkit-min-device-pixel-ratio: 2),
       only screen and (min--moz-device-pixel-ratio: 2),
       only screen and (-o-min-device-pixel-ratio: 2/1),
       only screen and (min-device-pixel-ratio: 2),
       only screen and (min-resolution: 192dpi),
       only screen and (min-resolution: 2dppx) {
  .about-page-flip-card-front,
  .about-page-flip-card-back,
  .about-page-team-card-v2,
  .about-page-testimonial-card {
    border: 0.5px solid rgba(255,255,255,0.1);
  }
}

/* DARK MODE SUPPORT */
@media (prefers-color-scheme: dark) {
  .about-page-wrapper {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  }
  
  .about-page-hero,
  .about-page-three-section {
    background: #1a202c;
  }
  
  .about-page-block-text h2,
  .about-page-hero-right h1 {
    color: #f7fafc;
  }
  
  .about-page-block-text p,
  .about-page-hero-right p {
    color: #cbd5e0;
  }
  
  .about-page-hero-card {
    background: #2d3748;
    border-color: rgba(102,126,234,0.2);
  }
  
  .about-page-hero-card h3 {
    color: #f7fafc;
  }
  
  .about-page-hero-card p {
    color: #cbd5e0;
  }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .about-page-hero-section::before,
  .about-page-tech-stack-section::before,
  .triangle-yellow,
  .triangle-blue {
    animation: none;
  }
}



 /* FEATURES HOME PAGE NEW CSS */
      

 .features-home-section {
          padding: 80px 0;
          background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
          min-height: 100vh;
        }
        
        .features-home-container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 20px;
        }
        
        .features-home-wrapper {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 60px;
          align-items: center;
        }
        
        .features-home-text {
          order: 1;
        }
        
        .features-home-image {
          order: 2;
        }
        
        .features-home-header {
          margin-bottom: 40px;
        }
        
        .features-home-section-title {
          font-size: 2.5rem;
          font-weight: 700;
          color: #1a202c;
          margin-bottom: 16px;
          line-height: 1.2;
        }
        
        .features-home-section-subtitle {
          font-size: 1.125rem;
          color: #4a5568;
          line-height: 1.6;
          margin-bottom: 0;
        }
        
        .features-home-grid {
          display: grid;
          grid-template-columns: 1fr;
          gap: 24px;
        }
        
        .features-home-item {
          display: flex;
          gap: 16px;
          padding: 24px;
          background: white;
          border-radius: 12px;
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
          transition: all 0.3s ease;
          border: 1px solid #e2e8f0;
        }
        
        .features-home-item:hover {
          transform: translateY(-2px);
          box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.15);
          border-color: #0073b9;
        }
        
        .features-home-icon {
          flex-shrink: 0;
          width: 48px;
          height: 48px;
          background: linear-gradient(135deg, #3182ce, #0073b9);
		  color:#0073b9;
          border-radius: 12px;
          display: flex;
          align-items: center;
          justify-content: center;
          color: white;
        }
        
        .features-home-content {
          flex: 1;
        }
        
        .features-home-title {
          font-size: 1.25rem;
          font-weight: 600;
          color: #1a202c;
          margin-bottom: 8px;
        }
        
        .features-home-description {
          color: #4a5568;
          line-height: 1.6;
          margin: 0;
          font-size: 0.95rem;
        }
        
        .features-home-image-container {
          position: relative;
          border-radius: 16px;
          overflow: hidden;
          box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
        }
        
        .features-home-main-image {
          width: 100%;
          height: 500px;
          object-fit: cover;
          display: block;
          transition: transform 0.3s ease;
        }
        
        .features-home-image-container:hover .features-home-main-image {
          transform: scale(1.05);
        }
        
        .features-home-overlay {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
          padding: 40px 30px 30px;
          color: white;
        }
        
        .features-home-overlay-content h3 {
          font-size: 1.5rem;
          font-weight: 600;
          margin-bottom: 8px;
        }
        
        .features-home-overlay-content p {
          margin: 0;
          opacity: 0.9;
          font-size: 1rem;
        }
        
        /* Tablet styles */
        @media (max-width: 1024px) {
          .features-home-section {
            padding: 60px 0;
          }
          
          .features-home-wrapper {
            gap: 40px;
          }
          
          .features-home-section-title {
            font-size: 2.25rem;
          }
        }
        
        /* Mobile styles */
        @media (max-width: 768px) {
          .features-home-section {
            padding: 40px 0;
          }
          
          .features-home-container {
            padding: 0 16px;
          }
          
          .features-home-wrapper {
            grid-template-columns: 1fr;
            gap: 40px;
          }
          
          .features-home-text {
            order: 1;
          }
          
          .features-home-image {
            order: 2;
          }
          
          .features-home-section-title {
            font-size: 2rem;
          }
          
          .features-home-section-subtitle {
            font-size: 1rem;
          }
          
          .features-home-main-image {
            height: 300px;
          }
          
          .features-home-grid {
            gap: 16px;
          }
          
          .features-home-item {
            padding: 20px;
          }
          
          .features-home-icon {
            width: 40px;
            height: 40px;
          }
          
          .features-home-title {
            font-size: 1.125rem;
          }
          
          .features-home-description {
            font-size: 0.875rem;
          }
          
          .features-home-overlay-content h3 {
            font-size: 1.25rem;
          }
          
          .features-home-overlay-content p {
            font-size: 0.875rem;
          }
        }
        
        /* Small mobile styles */
        @media (max-width: 480px) {
          .features-home-section-title {
            font-size: 1.75rem;
          }
          
          .features-home-item {
            padding: 16px;
            gap: 12px;
          }
          
          .features-home-icon {
            width: 36px;
            height: 36px;
          }
          
          .features-home-title {
            font-size: 1rem;
          }
          
          .features-home-overlay {
            padding: 30px 20px 20px;
          }
        }


/*FOOTER NEW CSS */
/* === Top Contact Bar === */
.footer-contact-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  background: #0073b9;
  color: white;
  padding: 40px 20px;
  gap: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(127, 95, 255, 0.3);
}

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

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 320px;
  padding: 10px;
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.footer-contact-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.icon-box {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  color: #7f5eff;
  padding: 16px;
  border-radius: 16px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(127, 95, 255, 0.2);
  min-width: 56px;
  min-height: 56px;
}

.icon-box:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 25px rgba(127, 95, 255, 0.4);
  background: linear-gradient(145deg, #7f5eff, #6349e5);
  color: white;
}

.footer-contact-info p {
  margin: 0 0 4px 0;
  font-size: 14px;
  opacity: 0.9;
  font-weight: 400;
}

.footer-contact-info strong {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* === Main Footer === */
.main-footer {
  background: linear-gradient(135deg, #f9f9ff 0%, #f0f0ff 100%);
  color: #333;
  padding: 60px 30px 30px;
  position: relative;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7f5eff, #6349e5, #5039d1);
}

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

.footer-col {
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(127, 95, 255, 0.1);
  background: rgba(255, 255, 255, 0.5);
}

.footer-col h4, .footer-col h3 {
  margin-bottom: 20px;
  color: #222;
  font-weight: 700;
  font-size: 18px;
  position: relative;
  padding-bottom: 8px;
  text-decoration: none;
}

.footer-col h4::after, .footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #7f5eff, #0073b9);
  border-radius: 2px;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

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

.footer-col ul li {
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-radius: 6px;
  position: relative;
  padding-left: 20px;
}

.footer-col ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #0073b9;
  font-weight: bold;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-col ul li:hover {
  color: #0073b9;
  transform: translateX(5px);
  background: rgba(127, 95, 255, 0.05);
  padding-left: 25px;
}

.footer-col ul li:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-col ul li a {
  text-decoration: none;
}

/* Newsletter Section */
.newsletter-col input {
  padding: 14px 16px;
  width: 100%;
  margin: 12px 0;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  font-size: 14px;
  transition: all 0.3s ease;
  background: white;
}

.newsletter-col input:focus {
  outline: none;
  border-color: #0073b9;
  box-shadow: 0 0 0 3px rgba(127, 95, 255, 0.1);
  transform: translateY(-2px);
}

.newsletter-col button {
  padding: 14px 24px;
  /*background: linear-gradient(135deg, #7f5eff, #6349e5);*/
  background-color: #0073b9;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 8px;
}

.newsletter-col button:hover {
  background: linear-gradient(135deg, #6349e5, #5039d1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(127, 95, 255, 0.3);
}

/* Social Icons */
.footer-social-icons {
  /*display: flex;*/
  gap: 10px;
  margin-top: 15px;
  color:white;
  color: white;
  padding: 8px;
  border-radius: 50%;
  font-size: 16px;
  transition: 0.3s;
}

.footer-social-icons svg:hover {
   transform: scale(1.15);
  box-shadow: 0 6px 18px rgba(127, 95, 255, 0.3);
  cursor: pointer;
}


/* Map Container */
.home-map-container {
  margin-top: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.home-map-container:hover {
  transform: scale(1.02);
}

.home-map-container iframe {
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* === Bottom Footer === */
.footer-bottom {
  border-top: 2px solid #e0e0e0;
  margin-top: 50px;
  padding-top: 25px;
  text-align: center;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.footer-bottom p {
  margin-bottom: 15px;
  color: #666;
}

.footer-bottom span {
  font-weight: bold;
  color: #0073b9;
  background: #0073b9;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #0073b9;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #7f5eff;
  background: rgba(127, 95, 255, 0.05);
}

.footer-links a:hover::before {
  width: 80%;
}

/* === Responsive Design === */
@media screen and (max-width: 1200px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-contact-bar {
    padding: 35px 20px;
  }
}

@media screen and (max-width: 768px) {
  .footer-contact-bar {
    flex-direction: column;
    text-align: center;
    padding: 30px 15px;
    gap: 20px;
  }
  
  .footer-contact-item {
    justify-content: center;
    max-width: 100%;
    width: 100%;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .main-footer {
    padding: 40px 15px 20px;
  }
  
  .footer-col {
    padding: 15px;
    text-align: center;
  }
  
  .footer-col h4::after, .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .newsletter-col input,
  .newsletter-col button {
    width: 100%;
  }
  
  .social-icons {
    justify-content: center;
    gap: 12px;
  }
  
  .social-icons svg {
    font-size: 24px;
    padding: 10px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-links a {
    display: inline-block;
    margin: 5px 10px;
  }
}

@media screen and (max-width: 480px) {
  .footer-contact-bar {
    padding: 25px 10px;
  }
  
  .footer-contact-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .icon-box {
    font-size: 20px;
    padding: 14px;
    min-width: 50px;
    min-height: 50px;
  }
  
  .footer-contact-info strong {
    font-size: 14px;
  }
  
  .footer-contact-info p {
    font-size: 13px;
  }
  
  .main-footer {
    padding: 30px 10px 15px;
  }
  
  .footer-col {
    padding: 10px;
  }
  
  .footer-col h4, .footer-col h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .footer-col p {
    font-size: 14px;
  }
  
  .footer-col ul li {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .newsletter-col input {
    padding: 12px 14px;
    font-size: 13px;
  }
  
  .newsletter-col button {
    padding: 12px 20px;
    font-size: 13px;
  }
  
  .social-icons svg {
    font-size: 22px;
    padding: 8px;
  }
  
  .footer-bottom {
    padding-top: 20px;
    margin-top: 30px;
  }
  
  .footer-bottom p, .footer-links a {
    font-size: 13px;
  }
}

/* === Animation utilities === */
.animate-icon {
  animation: bounceIn 0.8s ease-in-out;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(50px);
  }
  50% {
    opacity: 1;
    transform: scale(1.05) translateY(-10px);
  }
  70% {
    transform: scale(0.95) translateY(0);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

/* === Scroll reveal animations === */
@media (prefers-reduced-motion: no-preference) {
  .animate-icon {
    animation-fill-mode: both;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-contact-bar::before {
    animation: none;
  }
}



/* CONTACT PAGE NEW CSS - ENHANCED VERSION */

/* SECTION WRAPPER */
.contact-section {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  padding: 0;
  position: relative;
}

/* 🔷 BANNER */
.contact-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 20px 60px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
}

.banner-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px) brightness(0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.6s ease;
}

.contact-banner:hover .banner-bg {
  transform: scale(1.05);
}

.banner-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding-top: 120px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.banner-text h2 {
  font-size: 4.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #fff, #e8f4fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  animation: float 3s ease-in-out infinite;
}

.banner-text p {
  font-size: 1.4rem;
  margin-top: 10px;
  font-weight: 300;
  opacity: 0.95;
}

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

/* 🔷 INFO BOXES */
.info-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
  margin: 60px 20px;
  padding: 0 20px;
}

.info-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

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

.info-box:hover::before {
  left: 100%;
}

.info-box:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 1);
}

.info-box i {
  font-size: 2.8rem;
  background: #0073b9;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.3s ease;
}

.info-box:hover i {
  transform: scale(1.2) rotate(5deg);
}

.info-box h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
}

.info-box p,
.info-box a {
  text-decoration: none;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.info-box a:hover {
  color: #0073b9;
  text-decoration: underline;
}

/* 🔷 FORM SECTION */
.form-bg-container {
  position: relative;
  width: 100%;
  margin: 80px 0;
  overflow: hidden;
  min-height: 700px;
}

.form-full-bg {
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
  filter: blur(4px) brightness(0.3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.8s ease;
}

.form-bg-container:hover .form-full-bg {
  transform: scale(1.02);
}

.contact-form-wrapper {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  min-height: 700px;
}

.contact-form {
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 50px 40px;
  border-radius: 25px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #0073b9;
  background-size: 300% 300%;
  animation: gradientShift 3s ease infinite;
}

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

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 20px;
  border-radius: 15px;
  border: 2px solid rgba(102, 126, 234, 0.1);
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0073b9;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
  background: rgba(255, 255, 255, 1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
  font-weight: 300;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'Poppins', sans-serif;
}

.contact-form button {
  background: #0073b9;
  color: white;
  padding: 18px 45px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  /*background: linear-gradient(45deg, #764ba2 0%, #667eea 100%);*/
  transition: left 0.3s ease;
}

.contact-form button span {
  position: relative;
  z-index: 1;
}

.contact-form button:hover::before {
  left: 0;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.contact-form button:active {
  transform: translateY(-1px);
}

.error-message {
  background: rgba(255, 77, 77, 0.1);
  border: 1px solid rgba(255, 77, 77, 0.3);
  color: #d32f2f;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.error-message p {
  margin: 5px 0;
  font-size: 14px;
}

/* 🔷 MAP */
.map-container {
  margin: 60px 20px 40px 20px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  position: relative;
}

.map-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 25px;
  padding: 3px;
  background: #0073b9;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: exclude;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}

.map-container iframe {
  border-radius: 22px;
  filter: grayscale(0.3) contrast(1.1);
  transition: filter 0.3s ease;
}

.map-container:hover iframe {
  filter: grayscale(0) contrast(1.2);
}

/* 🔷 RESPONSIVE DESIGN */

/* Large Desktops (1200px and up) */
@media (min-width: 1200px) {
  .contact-section {
    padding: 20px 40px;
  }
  
  .info-boxes {
    max-width: 1200px;
    margin: 60px auto;
  }
  
  .contact-form-wrapper {
    max-width: 900px;
  }
  
  .banner-text h2 {
    font-size: 5rem;
  }
}

/* Medium Desktops (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .contact-section {
    padding: 15px 30px;
  }
  
  .banner-text h2 {
    font-size: 4.2rem;
  }
  
  .info-boxes {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .contact-section {
    padding: 10px 20px;
  }
  
  .contact-banner {
    height: 320px;
    margin: 0 15px 50px 15px;
    border-radius: 18px;
  }
  
  .banner-text {
    padding-top: 100px;
  }
  
  .banner-text h2 {
    font-size: 3.5rem;
    letter-spacing: 1.5px;
  }
  
  .banner-text p {
    font-size: 1.3rem;
  }
  
  .info-boxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 50px 15px;
    padding: 0 15px;
  }
  
  .info-box {
    padding: 30px 25px;
  }
  
  .info-box i {
    font-size: 2.5rem;
  }
  
  .contact-form {
    padding: 40px 30px;
  }
  
  .contact-form-wrapper {
    padding: 50px 20px;
  }
}

/* Mobile Large (576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  .contact-section {
    padding: 5px 15px;
  }
  
  .contact-banner {
    height: 280px;
    margin: 0 10px 40px 10px;
    border-radius: 15px;
  }
  
  .banner-text {
    padding-top: 85px;
  }
  
  .banner-text h2 {
    font-size: 2.8rem;
    letter-spacing: 1px;
  }
  
  .banner-text p {
    font-size: 1.1rem;
  }
  
  .info-boxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 10px;
    padding: 0 5px;
  }
  
  .info-box {
    padding: 25px 20px;
  }
  
  .info-box h4 {
    font-size: 1.2rem;
  }
  
  .info-box i {
    font-size: 2.2rem;
  }
  
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-form {
    padding: 35px 25px;
    border-radius: 20px;
  }
  
  .contact-form-wrapper {
    padding: 40px 15px;
    min-height: 600px;
  }
  
  .form-bg-container {
    min-height: 600px;
  }
  
  .form-full-bg {
    min-height: 600px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 15px 18px;
    font-size: 15px;
  }
  
  .contact-form button {
    padding: 16px 35px;
    font-size: 15px;
  }
  
  .map-container {
    margin: 40px 10px 30px 10px;
    border-radius: 20px;
  }
  
  .map-container iframe {
    border-radius: 17px;
    height: 350px;
  }
}

/* Mobile Medium (480px to 575px) */
@media (max-width: 575px) and (min-width: 480px) {
  .contact-section {
    padding: 0 10px;
  }
  
  .contact-banner {
    height: 250px;
    margin: 0 5px 35px 5px;
    border-radius: 12px;
  }
  
  .banner-text {
    padding-top: 70px;
  }
  
  .banner-text h2 {
    font-size: 2.4rem;
    letter-spacing: 0.5px;
  }
  
  .banner-text p {
    font-size: 1rem;
  }
  
  .info-boxes {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 35px 5px;
    padding: 0;
  }
  
  .info-box {
    padding: 22px 18px;
  }
  
  .info-box h4 {
    font-size: 1.1rem;
  }
  
  .info-box i {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 30px 22px;
    border-radius: 18px;
  }
  
  .contact-form-wrapper {
    padding: 35px 10px;
    min-height: 550px;
  }
  
  .form-bg-container {
    min-height: 550px;
  }
  
  .form-full-bg {
    min-height: 550px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 14px 16px;
    font-size: 14px;
  }
  
  .contact-form button {
    width: 100%;
    padding: 15px;
    font-size: 14px;
    letter-spacing: 0.5px;
  }
  
  .map-container {
    margin: 35px 5px 25px 5px;
    border-radius: 18px;
  }
  
  .map-container iframe {
    border-radius: 15px;
    height: 320px;
  }
}

/* Mobile Small (320px to 479px) */
@media (max-width: 479px) {
  .contact-section {
    padding: 0 8px;
  }
  
  .contact-banner {
    height: 220px;
    margin: 0 2px 30px 2px;
    border-radius: 10px;
  }
  
  .banner-text {
    padding-top: 60px;
  }
  
  .banner-text h2 {
    font-size: 2rem;
    letter-spacing: 0.5px;
    line-height: 1.2;
  }
  
  .banner-text p {
    font-size: 0.95rem;
  }
  
  .info-boxes {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 30px 2px;
    padding: 0;
  }
  
  .info-box {
    padding: 20px 15px;
    border-radius: 15px;
  }
  
  .info-box h4 {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .info-box p,
  .info-box a {
    font-size: 0.9rem;
  }
  
  .info-box i {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .contact-form {
    padding: 25px 18px;
    border-radius: 15px;
  }
  
  .contact-form-wrapper {
    padding: 30px 8px;
    min-height: 500px;
  }
  
  .form-bg-container {
    min-height: 500px;
  }
  
  .form-full-bg {
    min-height: 500px;
  }
  
  .contact-form .form-row {
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 12px;
  }
  
  .contact-form textarea {
    min-height: 100px;
  }
  
  .contact-form button {
    width: 100%;
    padding: 14px;
    font-size: 13px;
    border-radius: 25px;
    letter-spacing: 0.5px;
    margin-top: 15px;
  }
  
  .error-message {
    padding: 12px 15px;
    border-radius: 10px;
  }
  
  .error-message p {
    font-size: 13px;
  }
  
  .map-container {
    margin: 30px 2px 20px 2px;
    border-radius: 15px;
  }
  
  .map-container iframe {
    border-radius: 12px;
    height: 280px;
  }
}

/* Ultra Small Devices (below 320px) */
@media (max-width: 319px) {
  .banner-text h2 {
    font-size: 1.8rem;
  }
  
  .banner-text p {
    font-size: 0.9rem;
  }
  
  .info-box {
    padding: 18px 12px;
  }
  
  .contact-form {
    padding: 20px 15px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .map-container iframe {
    height: 250px;
  }
}

/* Landscape Orientation for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .contact-banner {
    height: 180px;
  }
  
  .banner-text {
    padding-top: 40px;
  }
  
  .banner-text h2 {
    font-size: 1.8rem;
  }
  
  .banner-text p {
    font-size: 0.9rem;
  }
  
  .form-bg-container,
  .form-full-bg {
    min-height: 400px;
  }
  
  .contact-form-wrapper {
    min-height: 400px;
    padding: 20px 15px;
  }
}

/* Print Styles */
@media print {
  .contact-section {
    background: white !important;
  }
  
  .banner-bg,
  .form-full-bg {
    display: none;
  }
  
  .contact-form,
  .info-box {
    box-shadow: none;
    border: 1px solid #ddd;
  }
  
  .map-container {
    display: none;
  }
}

/* Additional animations for better UX */
@keyframes slideInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.contact-form > * {
  animation: slideInUp 0.6s ease forwards;
}

.contact-form > *:nth-child(2) { animation-delay: 0.1s; }
.contact-form > *:nth-child(3) { animation-delay: 0.2s; }
.contact-form > *:nth-child(4) { animation-delay: 0.3s; }
.contact-form > *:nth-child(5) { animation-delay: 0.4s; }



/*HOME PAGE CONTACT NEW CSS */

/* HOME PAGE CONTACT CSS - Responsive */

      .home-contact-section {
          min-height: 100vh;
          /*background: linear-gradient(135deg, #8793c7 0%, #be9fdc 100%);*/
          padding: 80px 20px;
          position: relative;
          overflow: hidden;
        }

        .home-contact-section::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
          pointer-events: none;
        }

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

        .home-contact-header {
          text-align: center;
          margin-bottom: 60px;
          color: black;
        }

        .home-contact-title {
          font-size: clamp(2.5rem, 5vw, 3.5rem);
          font-weight: 800;
          margin: 0 0 20px 0;
          background: #0073b9;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          letter-spacing: -0.02em;
        }

        .home-contact-subtitle {
          font-size: clamp(1rem, 2.5vw, 1.25rem);
          margin: 0;
          opacity: 0.9;
          max-width: 600px;
          margin: 0 auto;
          line-height: 1.6;
        }

        .home-contact-content {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 60px;
          align-items: start;
        }

        .home-contact-info {
          display: grid;
          gap: 24px;
        }

        .home-contact-card {
          background: rgba(255, 255, 255, 0.95);
          backdrop-filter: blur(20px);
          border-radius: 20px;
          padding: 32px;
          display: flex;
          flex-direction: column;
          align-items: center;
          text-align: center;
          gap: 20px;
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          border: 1px solid rgba(255, 255, 255, 0.2);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .home-contact-card:hover {
          transform: translateY(-8px);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
          background: rgba(255, 255, 255, 1);
        }

        .home-card-icon {
          background: #0073b9;
          color: white;
          padding: 16px;
          border-radius: 16px;
          display: flex;
          align-items: center;
          justify-content: center;
          min-width: 56px;
          min-height: 56px;
          box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
        }

        .home-card-content {
          flex: 1;
          min-width: 0;
        }

        .home-card-title {
          font-size: 1.25rem;
          font-weight: 700;
          margin: 0 0 12px 0;
          color: #1e293b;
        }

        .home-card-link,
        .home-card-text {
          color: #64748b;
          text-decoration: none;
          line-height: 1.6;
          margin: 0;
          font-size: 0.95rem;
          transition: color 0.2s ease;
        }

        .home-card-link:hover {
          color: #667eea;
          text-decoration: underline;
        }

        .home-contact-form-wrapper {
          background: rgba(255, 255, 255, 0.95);
          backdrop-filter: blur(20px);
          border-radius: 24px;
          padding: 40px;
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
          border: 1px solid rgba(255, 255, 255, 0.2);
          position: sticky;
          top: 20px;
        }

        .home-form-header {
          display: flex;
          align-items: center;
          gap: 16px;
          margin-bottom: 32px;
          padding-bottom: 20px;
          border-bottom: 1px solid #e2e8f0;
        }

        .home-form-icon {
          color: #0073b9;
        }

        .home-form-title {
          font-size: 1.75rem;
          font-weight: 700;
          margin: 0;
          color: #1e293b;
        }

        .home-success-message {
          background: linear-gradient(135deg, #10b981, #059669);
          color: white;
          padding: 16px 20px;
          border-radius: 12px;
          margin-bottom: 24px;
          animation: slideIn 0.5s ease;
        }

        .home-success-content {
          display: flex;
          align-items: center;
          gap: 12px;
        }

        .home-success-icon {
          background: rgba(255, 255, 255, 0.2);
          width: 28px;
          height: 28px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-weight: bold;
          font-size: 14px;
        }

        .home-contact-form {
          display: flex;
          flex-direction: column;
          gap: 24px;
        }

        .home-form-group {
          display: flex;
          flex-direction: column;
          gap: 8px;
        }

        .home-input-wrapper,
        .home-textarea-wrapper {
          position: relative;
        }

        .home-input-icon {
          position: absolute;
          left: 16px;
          top: 50%;
          transform: translateY(-50%);
          color: #94a3b8;
          pointer-events: none;
          z-index: 1;
        }

        .home-contact-form input,
        .home-contact-form textarea {
          width: 100%;
          padding: 16px 16px 16px 48px;
          font-size: 1rem;
          border: 2px solid #e2e8f0;
          border-radius: 12px;
          outline: none;
          transition: all 0.3s ease;
          background: #ffffff;
          font-family: inherit;
          box-sizing: border-box;
        }

        .home-contact-form textarea {
          min-height: 120px;
          resize: vertical;
          padding-left: 16px;
        }

        .home-contact-form input:focus,
        .home-contact-form textarea:focus {
          border-color: #667eea;
          box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
        }

        .home-contact-form input.error,
        .home-contact-form textarea.error {
          border-color: #ef4444;
          box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
        }

        .home-error-message {
          color: #ef4444;
          font-size: 0.875rem;
          font-weight: 500;
          margin-left: 4px;
        }

        .home-submit-btn {
          background: linear-gradient(135deg, #667eea, #764ba2);
          color: white;
          border: none;
          padding: 18px 32px;
          font-size: 1.1rem;
          font-weight: 600;
          border-radius: 12px;
          cursor: pointer;
          transition: all 0.3s ease;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 12px;
          text-transform: uppercase;
          letter-spacing: 0.5px;
          box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
        }

        .home-submit-btn:hover:not([style*="not-allowed"]) {
          transform: translateY(-2px);
          box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
        }

        .home-submit-btn:active:not([style*="not-allowed"]) {
          transform: translateY(0);
        }

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

        @keyframes spin {
          to { transform: rotate(360deg); }
        }

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

        /* Responsive Design */
        @media (max-width: 1024px) {
          .home-contact-content {
            grid-template-columns: 1fr;
            gap: 40px;
          }
          
          .home-contact-form-wrapper {
            position: static;
          }
        }

        @media (max-width: 768px) {
          .home-contact-section {
            padding: 60px 16px;
          }
          
          .home-contact-header {
            margin-bottom: 40px;
          }
          
          .home-contact-card {
            padding: 24px;
          }
          
          .home-contact-form-wrapper {
            padding: 24px;
          }
          
          .home-form-header {
            flex-direction: column;
            text-align: center;
            gap: 12px;
          }
          
          .home-contact-form input {
            padding: 14px 14px 14px 44px;
          }
          
          .home-submit-btn {
            padding: 16px 24px;
            font-size: 1rem;
          }
        }

        @media (max-width: 480px) {
          .home-contact-section {
            padding: 40px 12px;
          }
          
          .home-contact-card {
            padding: 20px;
            border-radius: 16px;
          }
          
          .home-card-icon {
            min-width: 48px;
            min-height: 48px;
            padding: 12px;
          }
          
          .home-contact-form-wrapper {
            padding: 20px;
            border-radius: 20px;
          }
          
          .home-contact-form input,
          .home-contact-form textarea {
            padding: 12px 12px 12px 40px;
            font-size: 0.95rem;
          }
          
          .home-contact-form textarea {
            min-height: 100px;
          }
          
          .home-input-icon {
            left: 12px;
          }
          
          .home-submit-btn {
            padding: 14px 20px;
            font-size: 0.95rem;
          }
        }

        @media (prefers-reduced-motion: reduce) {
          * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
          }
        }
		

/*HOW WE WORK NEW CSS */

 .how-we-work-section {
          padding: 60px 20px;
          background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
          text-align: center;
          font-family: 'Inter', 'Segoe UI', sans-serif;
          position: relative;
          overflow: hidden;
          min-height: 100vh;
        }

        .how-we-work-section::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: 
            radial-gradient(circle at 15% 25%, rgba(108, 99, 255, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 85% 75%, rgba(0, 48, 135, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(108, 99, 255, 0.03) 0%, transparent 70%);
          pointer-events: none;
        }

        .how-we-work-container {
          max-width: 1400px;
          margin: 0 auto;
          position: relative;
          z-index: 1;
          width: 100%;
        }

        .how-we-work-header {
          margin-bottom: 60px;
          position: relative;
        }

        .how-we-work-header::after {
          content: '';
          position: absolute;
          bottom: -20px;
          left: 50%;
          transform: translateX(-50%);
          width: 80px;
          height: 4px;
          background: linear-gradient(90deg, #6c63ff, #0073b9);
          border-radius: 2px;
        }

        .how-we-work-subtitle {
          color: #003087;
          font-weight: 700;
          letter-spacing: 2px;
          font-size: 14px;
          margin-bottom: 15px;
          text-transform: uppercase;
          position: relative;
          display: inline-block;
          padding: 8px 20px;
          background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(0, 48, 135, 0.1));
          border-radius: 25px;
          border: 1px solid rgba(108, 99, 255, 0.2);
          backdrop-filter: blur(10px);
        }

        .how-we-work-title {
          font-size: clamp(28px, 5vw, 42px);
          font-weight: 800;
          margin-bottom: 20px;
          color: #1a202c;
          line-height: 1.2;
          letter-spacing: -1px;
          background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
        }

        .how-we-work-description {
          font-size: clamp(14px, 3vw, 18px);
          color: #64748b;
          max-width: 600px;
          margin: 0 auto;
          line-height: 1.6;
          font-weight: 400;
          padding: 0 20px;
        }

        .how-we-work-steps-container {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 30px;
          margin-top: 60px;
          position: relative;
          padding: 40px 0;
          max-width: 100%;
        }

        /* Wavy Connecting Line - Desktop Only */
        .how-we-work-steps-container::before {
          content: '';
          position: absolute;
          top: 120px;
          left: 5%;
          right: 5%;
          height: 4px;
          background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(108, 99, 255, 0.4) 10%, 
            rgba(108, 99, 255, 0.8) 25%,
            rgba(0, 48, 135, 0.8) 50%,
            rgba(108, 99, 255, 0.8) 75%,
            rgba(108, 99, 255, 0.4) 90%, 
            transparent 100%);
          z-index: 0;
          border-radius: 2px;
          clip-path: polygon(
            0% 50%, 
            5% 30%, 
            10% 70%, 
            15% 20%, 
            20% 80%, 
            25% 40%, 
            30% 60%, 
            35% 30%, 
            40% 70%, 
            45% 35%, 
            50% 65%, 
            55% 35%, 
            60% 70%, 
            65% 30%, 
            70% 60%, 
            75% 40%, 
            80% 80%, 
            85% 20%, 
            90% 70%, 
            95% 30%, 
            100% 50%
          );
          display: none;
        }

        .how-we-work-steps-container::after {
          content: '';
          position: absolute;
          top: 118px;
          left: 5%;
          right: 5%;
          height: 8px;
          background-image: url("data:image/svg+xml,%3Csvg width='100' height='8' viewBox='0 0 100 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 4 Q25 0 50 4 T100 4' stroke='%236c63ff' stroke-width='3' fill='none' opacity='0.6'/%3E%3C/svg%3E");
          background-repeat: repeat-x;
          background-size: 100px 8px;
          z-index: 1;
          animation: waveFlow 3s ease-in-out infinite;
          display: none;
        }

        @keyframes waveFlow {
          0%, 100% {
            opacity: 0.6;
            transform: translateX(0);
          }
          50% {
            opacity: 0.9;
            transform: translateX(5px);
          }
        }

        .how-we-work-step-box {
          background: linear-gradient(135deg, #6c63ff 0%, #4f46e5 100%);
          color: white;
          padding: 40px 25px;
          border-radius: 24px;
          position: relative;
          box-shadow: 
            0 20px 40px rgba(108, 99, 255, 0.15),
            0 10px 20px rgba(108, 99, 255, 0.1),
            0 0 0 1px rgba(255, 255, 255, 0.1);
          transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          overflow: hidden;
          border: 1px solid rgba(255, 255, 255, 0.1);
          z-index: 2;
          min-height: 300px;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          text-align: center;
        }

        .how-we-work-step-box::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
          opacity: 0;
          transition: opacity 0.3s ease;
          z-index: 1;
        }

        .how-we-work-step-box:hover {
          transform: translateY(-10px) scale(1.02);
          box-shadow: 
            0 30px 60px rgba(108, 99, 255, 0.25),
            0 15px 30px rgba(108, 99, 255, 0.15),
            0 0 0 1px rgba(255, 255, 255, 0.2);
          z-index: 10;
        }

        .how-we-work-step-box:hover::before {
          opacity: 1;
        }

        .how-we-work-step-box:nth-child(even) {
          background: linear-gradient(135deg, #003087 0%, #002266 100%);
        }

        .how-we-work-step-box:nth-child(even):hover {
          box-shadow: 
            0 30px 60px rgba(0, 48, 135, 0.25),
            0 15px 30px rgba(0, 48, 135, 0.15),
            0 0 0 1px rgba(255, 255, 255, 0.2);
        }

        .how-we-work-icon-wrapper {
          font-size: 36px;
          margin-bottom: 20px;
          display: inline-flex;
          align-items: center;
          justify-content: center;
          width: 80px;
          height: 80px;
          background: rgba(255, 255, 255, 0.15);
          border-radius: 50%;
          backdrop-filter: blur(10px);
          border: 2px solid rgba(255, 255, 255, 0.2);
          transition: all 0.3s ease;
          position: relative;
          z-index: 3;
        }

        .how-we-work-step-box:hover .how-we-work-icon-wrapper {
          transform: scale(1.1) rotate(5deg);
          background: rgba(255, 255, 255, 0.25);
          border-color: rgba(255, 255, 255, 0.3);
        }

        .how-we-work-step-number {
          position: absolute;
          top: -10px;
          right: -10px;
          background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
          width: 55px;
          height: 55px;
          border-radius: 50%;
          font-weight: 900;
          font-size: 18px;
          display: flex;
          align-items: center;
          justify-content: center;
          color: white;
          box-shadow: 
            0 12px 25px rgba(255, 107, 53, 0.4),
            0 6px 12px rgba(255, 107, 53, 0.3),
            0 0 0 4px rgba(255, 255, 255, 1);
          transition: all 0.3s ease;
          z-index: 1000;
          text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .how-we-work-step-box:hover .how-we-work-step-number {
          transform: scale(1.2);
          box-shadow: 
            0 15px 35px rgba(255, 107, 53, 0.5),
            0 8px 18px rgba(255, 107, 53, 0.4),
            0 0 0 5px rgba(255, 255, 255, 1);
          z-index: 2000;
        }

        .how-we-work-step-title {
          font-size: clamp(18px, 4vw, 22px);
          margin: 15px 0 12px;
          font-weight: 700;
          line-height: 1.3;
          letter-spacing: -0.5px;
          position: relative;
          z-index: 3;
        }

        .how-we-work-step-description {
          font-size: clamp(13px, 3vw, 15px);
          color: rgba(255, 255, 255, 0.9);
          line-height: 1.6;
          font-weight: 400;
          position: relative;
          z-index: 3;
        }

        /* Responsive Breakpoints */

        /* Large Desktop */
        @media (min-width: 1200px) {
          .how-we-work-steps-container {
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
          }
          
          .how-we-work-steps-container::before,
          .how-we-work-steps-container::after {
            display: block;
          }
        }

        /* Desktop */
        @media (min-width: 992px) and (max-width: 1199px) {
          .how-we-work-steps-container {
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
          }
          
          .how-we-work-step-box {
            min-height: 280px;
            padding: 35px 20px;
          }
        }

        /* Tablet */
        @media (min-width: 768px) and (max-width: 991px) {
          .how-we-work-section {
            padding: 50px 15px;
          }
          
          .how-we-work-steps-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 50px;
          }
          
          .how-we-work-step-box {
            min-height: 260px;
            padding: 30px 20px;
          }
          
          .how-we-work-icon-wrapper {
            width: 70px;
            height: 70px;
            font-size: 30px;
          }
          
          .how-we-work-step-number {
            width: 50px;
            height: 50px;
            font-size: 16px;
          }
        }

        /* Mobile Large */
        @media (min-width: 576px) and (max-width: 767px) {
          .how-we-work-section {
            padding: 40px 10px;
          }
          
          .how-we-work-steps-container {
            grid-template-columns: 1fr;
            gap: 20px;
            margin-top: 40px;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
          }
          
          .how-we-work-step-box {
            min-height: 240px;
            padding: 30px 20px;
          }
          
          .how-we-work-icon-wrapper {
            width: 65px;
            height: 65px;
            font-size: 28px;
          }
          
          .how-we-work-step-number {
            width: 45px;
            height: 45px;
            font-size: 16px;
            top: -8px;
            right: -8px;
          }
        }

        /* Mobile */
        @media (max-width: 575px) {
          .how-we-work-section {
            padding: 30px 10px;
          }
          
          .how-we-work-subtitle {
            font-size: 12px;
            padding: 6px 15px;
            letter-spacing: 1px;
          }
          
          .how-we-work-header {
            margin-bottom: 40px;
          }
          
          .how-we-work-steps-container {
            grid-template-columns: 1fr;
            gap: 15px;
            margin-top: 30px;
            padding: 20px 0;
          }
          
          .how-we-work-step-box {
            min-height: 220px;
            padding: 25px 15px;
            border-radius: 20px;
            margin: 0 auto;
            max-width: 320px;
          }
          
          .how-we-work-icon-wrapper {
            width: 60px;
            height: 60px;
            font-size: 26px;
            margin-bottom: 15px;
          }
          
          .how-we-work-step-number {
            width: 40px;
            height: 40px;
            font-size: 14px;
            top: -6px;
            right: -6px;
            border: 2px solid rgba(255, 255, 255, 0.9);
          }
          
          .how-we-work-step-box:hover .how-we-work-step-number {
            transform: scale(1.1);
          }
        }

        /* Extra Small Mobile */
        @media (max-width: 375px) {
          .how-we-work-section {
            padding: 25px 5px;
          }
          
          .how-we-work-step-box {
            min-height: 200px;
            padding: 20px 12px;
            max-width: 300px;
          }
          
          .how-we-work-icon-wrapper {
            width: 55px;
            height: 55px;
            font-size: 24px;
          }
          
          .how-we-work-step-number {
            width: 35px;
            height: 35px;
            font-size: 12px;
          }
        }

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

        .how-we-work-step-box {
          animation: fadeInUp 0.6s ease-out;
          animation-fill-mode: both;
        }

        .how-we-work-step-box:nth-child(1) { animation-delay: 0.1s; }
        .how-we-work-step-box:nth-child(2) { animation-delay: 0.2s; }
        .how-we-work-step-box:nth-child(3) { animation-delay: 0.3s; }
        .how-we-work-step-box:nth-child(4) { animation-delay: 0.4s; }
        .how-we-work-step-box:nth-child(5) { animation-delay: 0.5s; }

        /* Focus and Accessibility */
        .how-we-work-step-box:focus {
          outline: 3px solid rgba(108, 99, 255, 0.5);
          outline-offset: 2px;
        }

/*CALL TO ACTION NEW CSS */


  .calltoaction-section {
          position: relative;
          background: linear-gradient(135deg, #e8f4fd 0%, #f0e6ff 30%, #fff2e6 60%, #e6f7ff 100%);
          padding: 80px 40px;
          min-height: 400px;
          text-align: center;
          color: #333;
          overflow: hidden;
          border-radius: 30px;
          margin: 40px 0;
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
          border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .calltoaction-section::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: 
            radial-gradient(circle at 20% 20%, rgba(138, 43, 226, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(30, 144, 255, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(255, 182, 193, 0.03) 0%, transparent 50%);
          pointer-events: none;
          z-index: 1;
        }

        /* Floating Icons */
        .calltoaction-floating-icons {
          position: absolute;
          top: 20px;
          right: 20px;
          display: flex;
          gap: 15px;
          z-index: 4;
        }

        .calltoaction-icon-box {
          background: rgba(255, 255, 255, 0.9);
          backdrop-filter: blur(15px);
          border: 2px solid rgba(0, 115, 185, 0.1);
          border-radius: 50%;
          padding: 15px;
          font-size: 18px;
          color: #0073b9;
          transition: all 0.3s ease;
          text-decoration: none;
          display: flex;
          align-items: center;
          justify-content: center;
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .calltoaction-icon-box:hover {
          background: rgba(255, 255, 255, 1);
          transform: translateY(-5px) scale(1.1);
          box-shadow: 0 15px 35px rgba(0, 115, 185, 0.2);
          border-color: #0073b9;
        }

        /* Floating Circular Images - positioned to avoid content overlap */
        .calltoaction-floating-images-random {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          pointer-events: none;
          z-index: 2;
        }

        .calltoaction-circle-img {
          position: absolute;
          width: 100px;
          height: 100px;
          border-radius: 50%;
          object-fit: cover;
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
          animation: calltoaction-float 8s ease-in-out infinite;
          border: 4px solid rgba(255, 255, 255, 0.8);
          transition: all 0.3s ease;
        }

        .calltoaction-circle-img:nth-child(even) {
          animation-direction: reverse;
        }

        /* Main Content */
        .calltoaction-content {
          max-width: 700px;
          margin: 0 auto;
          position: relative;
          z-index: 3;
          padding: 0 20px;
        }

        .calltoaction-content h2 {
          font-size: clamp(2.5rem, 5vw, 4rem);
          font-weight: 900;
          margin-bottom: 30px;
          color: #fff;
          text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.1),
            0 4px 8px rgba(0, 0, 0, 0.1),
            0 8px 16px rgba(0, 0, 0, 0.1);
          line-height: 1.1;
          letter-spacing: -0.02em;
        }

        .calltoaction-content p {
          font-size: clamp(1.1rem, 2.5vw, 1.3rem);
          margin-bottom: 40px;
          line-height: 1.6;
          color: rgba(255, 255, 255, 0.95);
          font-weight: 400;
          text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        /* CTA Button matching the image */
        .calltoaction-cta-button {
          position: relative;
          background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
          color: #fff;
          padding: 20px 50px;
          border: none;
          border-radius: 60px;
          font-size: 18px;
          font-weight: 700;
          cursor: pointer;
          transition: all 0.4s ease;
          box-shadow: 
            0 15px 35px rgba(78, 205, 196, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
          overflow: hidden;
          text-transform: uppercase;
          letter-spacing: 1.5px;
          min-width: 250px;
        }

        .calltoaction-cta-button span {
          position: relative;
          z-index: 2;
        }

        .calltoaction-button-shine {
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
          transition: left 0.6s;
          z-index: 1;
        }

        .calltoaction-cta-button:hover {
          transform: translateY(-5px) scale(1.05);
          box-shadow: 
            0 20px 45px rgba(78, 205, 196, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

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

        .calltoaction-cta-button:active {
          transform: translateY(-2px) scale(1.02);
        }

        /* Enhanced Floating Animation */
        @keyframes calltoaction-float {
          0%, 100% { 
            transform: translateY(0px) scale(1);
          }
          25% { 
            transform: translateY(-20px) scale(1.05);
          }
          50% { 
            transform: translateY(-10px) scale(1);
          }
          75% { 
            transform: translateY(-25px) scale(1.02);
          }
        }

        /* Background overlay for better text contrast */
        .calltoaction-content-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: linear-gradient(135deg, rgba(138, 43, 226, 0.7) 0%, rgba(186, 85, 211, 0.6) 100%);
          z-index: 1;
          border-radius: 30px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
          .calltoaction-section {
            padding: 60px 30px;
          }

          .calltoaction-circle-img {
            width: 80px;
            height: 80px;
          }
        }

        @media (max-width: 768px) {
          .calltoaction-section {
            padding: 50px 20px;
            margin: 20px 10px;
            border-radius: 20px;
          }

          .calltoaction-floating-icons {
            top: 15px;
            right: 15px;
            gap: 10px;
          }

          /*.calltoaction-icon-box {
            padding: 12px;
            font-size: 16px;
			 background: rgba(255, 255, 255, 0.9);
			  backdrop-filter: blur(15px);
          border: 2px solid rgba(0, 115, 185, 0.1);
		    color: #0073b9;
          }*/

          /* Move floating images to safe zones on tablets */
          .calltoaction-floating-images-random .calltoaction-circle-img {
            width: 60px;
            height: 60px;
          }

          /* Reposition images to avoid content area */
          .calltoaction-floating-images-random .calltoaction-circle-img:nth-child(1) {
            top: 10% !important;
            left: 2% !important;
          }

          .calltoaction-floating-images-random .calltoaction-circle-img:nth-child(2) {
            top: 80% !important;
            left: 5% !important;
          }

          .calltoaction-floating-images-random .calltoaction-circle-img:nth-child(3) {
            bottom: 15% !important;
            left: 20% !important;
            top: auto !important;
          }

          .calltoaction-floating-images-random .calltoaction-circle-img:nth-child(4) {
            top: 15% !important;
            right: 2% !important;
          }

          .calltoaction-floating-images-random .calltoaction-circle-img:nth-child(5) {
            top: 85% !important;
            right: 8% !important;
          }

          .calltoaction-floating-images-random .calltoaction-circle-img:nth-child(6) {
            bottom: 20% !important;
            right: 15% !important;
            top: auto !important;
          }

          .calltoaction-cta-button {
            padding: 18px 40px;
            font-size: 16px;
            min-width: 220px;
          }

          .calltoaction-content {
            padding: 0 15px;
          }
        }

        @media (max-width: 480px) {
          .calltoaction-section {
            padding: 40px 15px;
            min-height: 300px;
          }

          .calltoaction-floating-icons {
            position: static;
            justify-content: center;
            margin-bottom: 20px;
          }

          /* Hide floating images completely on mobile */
          .calltoaction-floating-images-random {
            display: none;
          }

          .calltoaction-cta-button {
            padding: 16px 35px;
            font-size: 15px;
            min-width: 200px;
          }

          .calltoaction-content h2 {
            margin-bottom: 20px;
          }

          .calltoaction-content p {
            margin-bottom: 30px;
          }
/*
		   .calltoaction-icon-box {
            padding: 12px;
            font-size: 16px;
			 background: rgba(255, 255, 255, 0.9);
			  backdrop-filter: blur(15px);
          border: 2px solid rgba(0, 115, 185, 0.1);
		    color: #0073b9;
        }*/
		}

        @media (max-width: 360px) {
          .calltoaction-section {
            padding: 35px 10px;
            margin: 15px 5px;
          }

          .calltoaction-floating-images-random {
            display: none !important;
          }

          .calltoaction-cta-button {
            padding: 14px 30px;
            font-size: 14px;
            min-width: 180px;
          }

 /*.calltoaction-icon-box{
		 background: rgba(255, 255, 255, 0.9);
		  backdrop-filter: blur(15px);
          border: 2px solid rgba(0, 115, 185, 0.1);
		    color: #0073b9;
 }*/
        }



/*SOFTWARE DEVELOPMENT SERVICE PAGE NEW CSS */

/* Software Development Page Styles */

.service-detail-container {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Hero Section */
.service-detail-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-detail-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"><animate attributeName="opacity" values="0.1;0.5;0.1" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1.5" fill="white" opacity="0.1"><animate attributeName="opacity" values="0.1;0.4;0.1" dur="4s" repeatCount="indefinite"/></circle><circle cx="60" cy="70" r="1" fill="white" opacity="0.1"><animate attributeName="opacity" values="0.1;0.3;0.1" dur="5s" repeatCount="indefinite"/></circle></svg>') repeat;
  pointer-events: none;
}

.service-detail-hero-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.service-detail-hero-text {
  flex: 1;
  max-width: 600px;
}

.service-detail-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin: 0 0 1rem 0;
  animation: service-detail-slide-in-left 1s ease-out;
}

.service-detail-hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem 0;
  animation: service-detail-slide-in-left 1s ease-out 0.2s both;
}

.service-detail-hero-button {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: service-detail-slide-in-left 1s ease-out 0.4s both;
}

.service-detail-hero-button:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-detail-hero-icon {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: service-detail-slide-in-right 1s ease-out 0.6s both;
}

/* Rocket Icon */
.service-detail-rocket {
  position: relative;
  width: 200px;
  height: 200px;
  animation: service-detail-float 3s ease-in-out infinite;
}

.service-detail-rocket-body {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 120px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 30px 30px 10px 10px;
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.service-detail-rocket-window {
  position: absolute;
  top: 35%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-detail-rocket-fin {
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
}

.service-detail-rocket-fin-left {
  left: 10px;
  border-left: 15px solid transparent;
  border-right: 15px solid #4f46e5;
  border-bottom: 30px solid #4f46e5;
}

.service-detail-rocket-fin-right {
  right: 10px;
  border-left: 15px solid #4f46e5;
  border-right: 15px solid transparent;
  border-bottom: 30px solid #4f46e5;
}


.service-detail-design-tool {
  position: relative;
  width: 200px;
  height: 200px;
  animation: service-detail-float 3s ease-in-out infinite;
}

.service-detail-tool-body {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 80px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 15px;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.service-detail-tool-screen {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 60px;
  background: white;
  border-radius: 8px;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-detail-tool-cursor {
  position: absolute;
  top: 45%;
  left: 45%;
  width: 0;
  height: 0;
  border-left: 8px solid #4f46e5;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  animation: service-detail-cursor-move 2s ease-in-out infinite;
}

.service-detail-tool-elements {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-detail-element {
  position: absolute;
  background: #4f46e5;
  opacity: 0.8;
  animation: service-detail-element-pulse 2s ease-in-out infinite;
}

.service-detail-element-1 {
  width: 20px;
  height: 4px;
  top: -15px;
  left: -30px;
  border-radius: 2px;
  animation-delay: 0s;
}

.service-detail-element-2 {
  width: 15px;
  height: 15px;
  top: -5px;
  left: 20px;
  border-radius: 50%;
  animation-delay: 0.5s;
}

.service-detail-element-3 {
  width: 25px;
  height: 4px;
  top: 15px;
  left: -35px;
  border-radius: 2px;
  animation-delay: 1s;
}

/* Section Styles */
.service-detail-section {
  padding: 5rem 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.service-detail-section:nth-child(even) {
  background: #f8fafc;
}

.service-detail-fade-in {
  opacity: 1;
  transform: translateY(0);
}

.service-detail-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.service-detail-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #1e293b;
  margin-bottom: 3rem;
  position: relative;
}

.service-detail-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
}

/* Introduction */
.service-detail-intro-text {
  font-size: 1.2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  color: #64748b;
  line-height: 1.8;
}

/* Services Grid */
.service-detail-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-detail-service-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-detail-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
  transition: all 0.6s ease;
}

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

.service-detail-service-card:hover,
.service-detail-active {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.service-detail-service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.service-detail-service-card:hover .service-detail-service-icon,
.service-detail-active .service-detail-service-icon {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.service-detail-service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.service-detail-service-description {
  color: #64748b;
  line-height: 1.6;
}

/* Development Types */
.service-detail-types-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-detail-type-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  border-left: 5px solid #667eea;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-detail-type-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.service-detail-type-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.service-detail-type-description {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-detail-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-detail-tech-tag {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Benefits Grid */
.service-detail-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-detail-benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
}

.service-detail-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-detail-benefit-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.service-detail-benefit-description {
  color: #64748b;
  line-height: 1.6;
}

/* Why Choose Infinex */
.service-detail-choose-content {
  max-width: 800px;
  margin: 0 auto;
}

.service-detail-choose-item {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-detail-choose-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.service-detail-choose-item h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-detail-choose-item p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* FAQs */
.service-detail-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.service-detail-faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-detail-faq-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.service-detail-faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.service-detail-faq-question:hover {
  background: #f8fafc;
}

.service-detail-faq-question.service-detail-active {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.service-detail-faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: all 0.3s ease;
}

.service-detail-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.service-detail-faq-answer.service-detail-open {
  max-height: 200px;
  padding: 1.5rem 2rem;
}

.service-detail-faq-answer p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

/* Testimonials */
.service-detail-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-detail-testimonial-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.service-detail-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-detail-testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  color: #667eea;
  opacity: 0.3;
  font-family: serif;
}

.service-detail-testimonial-text {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

.service-detail-testimonial-author {
  border-top: 1px solid #e2e8f0;
  padding-top: 1.5rem;
}

.service-detail-testimonial-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.3rem;
}

.service-detail-testimonial-company {
  color: #64748b;
  margin-bottom: 0.8rem;
}

.service-detail-testimonial-rating {
  color: #fbbf24;
  font-size: 1.2rem;
}

/* CTA Section */
.service-detail-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 5rem 0;
  text-align: center;
  color: white;
}

.service-detail-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-detail-cta p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.service-detail-cta-button {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-detail-cta-button:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes service-detail-slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes service-detail-slide-in-right {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes service-detail-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-detail-hero-content {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  
  .service-detail-hero-title {
    font-size: 2.5rem;
  }
  
  .service-detail-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .service-detail-hero-icon {
    flex: 0 0 200px;
  }
  
  .service-detail-rocket {
    width: 150px;
    height: 150px;
  }
  
  .service-detail-rocket-body {
    width: 45px;
    height: 90px;
  }
  
  .service-detail-section-title {
    font-size: 2rem;
  }
  
  .service-detail-content {
    padding: 0 1rem;
  }
  
  .service-detail-services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-detail-types-container {
    grid-template-columns: 1fr;
  }
  
  .service-detail-benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .service-detail-testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .service-detail-cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .service-detail-hero {
    padding: 2rem 0;
  }
  
  .service-detail-hero-title {
    font-size: 2rem;
  }
  
  .service-detail-section {
    padding: 3rem 0;
  }
  
  .service-detail-service-card,
  .service-detail-type-card,
  .service-detail-benefit-card,
  .service-detail-testimonial-card {
    padding: 1.5rem;
  }
  
  .service-detail-choose-item {
    padding: 1rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states for keyboard navigation */
.service-detail-hero-button:focus,
.service-detail-cta-button:focus,
.service-detail-faq-question:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.service-detail-service-card:focus,
.service-detail-type-card:focus,
.service-detail-benefit-card:focus {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

/*BLOG PAGE TOPICS NEW CSS */

/* Enhanced Blog Page CSS */
   .blog-page {
          font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
          color: #2d3748;
          line-height: 1.6;
          background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
          min-height: 100vh;
        }

        /* Banner Section */
        .blog-page-banner {
          background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          height: 400px;
          position: relative;
          overflow: hidden;
        }

        .blog-page-banner::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
          animation: float 20s ease-in-out infinite;
        }

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

        .blog-page-banner-overlay {
          background: rgba(0, 0, 0, 0.3);
          backdrop-filter: blur(10px);
          height: 100%;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          color: white;
          position: relative;
          z-index: 1;
        }

        .blog-page-banner-overlay h1 {
          font-size: 3.5rem;
          font-weight: 800;
          margin-bottom: 1rem;
          background: linear-gradient(45deg, #ffffff, #e2e8f0);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
          animation: slideInFromTop 1s ease-out;
        }

        .blog-page-banner-overlay p {
          font-size: 1.4rem;
          font-weight: 300;
          opacity: 0.9;
          animation: slideInFromBottom 1s ease-out 0.3s both;
        }

        @keyframes slideInFromTop {
          0% { opacity: 0; transform: translateY(-50px); }
          100% { opacity: 1; transform: translateY(0); }
        }

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

        /* Main Container */
        .blog-page-container {
          display: grid;
          grid-template-columns: 1fr 3fr;
          gap: 30px;
          padding: 40px 20px;
          max-width: 1400px;
          margin: 0 auto;
        }

        /* Sidebar Styling */
        .blog-page-sidebar {
          display: flex;
          flex-direction: column;
        }

        .blog-page-search-box {
          display: flex;
          border: 2px solid #e2e8f0;
          border-radius: 12px;
          overflow: hidden;
          margin-bottom: 30px;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
          transition: all 0.3s ease;
        }

        .blog-page-search-box:focus-within {
          border-color: #667eea;
          box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
          transform: translateY(-2px);
        }

        .blog-page-search-box input {
          flex: 1;
          padding: 15px 18px;
          border: none;
          outline: none;
          font-size: 16px;
          background: white;
          color: #2d3748;
        }

        .blog-page-search-box input::placeholder {
          color: #a0aec0;
        }

        .blog-page-search-box button {
          background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          color: white;
          border: none;
          padding: 0 20px;
          cursor: pointer;
          transition: all 0.3s ease;
          font-size: 16px;
        }

        .blog-page-search-box button:hover {
          background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
          transform: scale(1.05);
        }

        .blog-page-sidebar-section {
          background: white;
          border-radius: 16px;
          padding: 25px;
          margin-bottom: 25px;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          border: 1px solid #f7fafc;
          transition: all 0.3s ease;
        }

        .blog-page-sidebar-section:hover {
          transform: translateY(-3px);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .blog-page-sidebar-section h3 {
          font-size: 20px;
          font-weight: 700;
          margin-bottom: 18px;
          color: #2d3748;
          position: relative;
          padding-bottom: 10px;
        }

        .blog-page-sidebar-section h3::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 40px;
          height: 3px;
          background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          border-radius: 2px;
        }

        .blog-page-recent-post {
          display: flex;
          gap: 15px;
          margin-bottom: 18px;
          padding: 12px;
          border-radius: 10px;
          transition: all 0.3s ease;
          cursor: pointer;
        }

        .blog-page-recent-post:hover {
          background: #f7fafc;
          transform: translateX(5px);
        }

        .blog-page-recent-post img {
          width: 70px;
          height: 70px;
          object-fit: cover;
          border-radius: 10px;
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .blog-page-recent-post p {
          font-size: 14px;
          font-weight: 600;
          margin: 0 0 5px 0;
          color: #2d3748;
          line-height: 1.4;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;
        }

        .blog-page-recent-post span {
          font-size: 12px;
          color: #718096;
          font-weight: 500;
        }

        .blog-page-sidebar-section ul {
          list-style: none;
          padding: 0;
          margin: 0;
        }

        .blog-page-sidebar-section li {
          padding: 12px 0;
          border-bottom: 1px solid #e2e8f0;
          font-size: 15px;
          font-weight: 500;
          color: #4a5568;
          cursor: pointer;
          transition: all 0.3s ease;
          position: relative;
          padding-left: 20px;
        }

        .blog-page-sidebar-section li:hover {
          color: #667eea;
          padding-left: 30px;
        }

        .blog-page-sidebar-section li::before {
          content: '→';
          position: absolute;
          left: 0;
          opacity: 0;
          transition: all 0.3s ease;
        }

        .blog-page-sidebar-section li:hover::before {
          opacity: 1;
        }

        .blog-page-sidebar-section li:last-child {
          border-bottom: none;
        }

        .blog-page-tags {
          display: flex;
          flex-wrap: wrap;
          gap: 10px;
        }

        .blog-page-tags span {
          display: inline-block;
          background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          color: white;
          padding: 8px 16px;
          border-radius: 20px;
          margin: 0;
          font-size: 13px;
          font-weight: 500;
          cursor: pointer;
          transition: all 0.3s ease;
          box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
        }

        .blog-page-tags span:hover {
          transform: translateY(-2px) scale(1.05);
          box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        }

        .blog-page-social-icons {
          display: flex;
          gap: 15px;
          justify-content: center;
        }

        .blog-page-social-icons svg {
          font-size: 20px;
          cursor: pointer;
          color: #667eea;
          transition: all 0.3s ease;
          padding: 12px;
          background: #f7fafc;
          border-radius: 50%;
          width: 44px;
          height: 44px;
        }

        .blog-page-social-icons svg:hover {
          color: white;
          background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          transform: translateY(-3px) scale(1.1);
          box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        }

        /* Blog Grid */
        .blogs-page {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
          gap: 30px;
          align-content: start;
        }

        .blog-page-card {
          background: white;
          border-radius: 20px;
          overflow: hidden;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
          border: 1px solid #f7fafc;
          position: relative;
        }

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

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

        .blog-page-card:hover {
          transform: translateY(-8px);
          box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
        }

        .blog-page-img {
          position: relative;
          overflow: hidden;
        }

        .blog-page-img img {
          width: 100%;
          height: 220px;
          object-fit: cover;
          transition: transform 0.4s ease;
          animation: fadeInImage 0.5s ease-in-out;
        }

        .blog-page-card:hover .blog-page-img img {
          transform: scale(1.08);
        }

        .date-badge {
          position: absolute;
          bottom: 15px;
          right: 15px;
          background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          color: white;
          padding: 8px 14px;
          font-size: 12px;
          font-weight: 600;
          border-radius: 12px;
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
          backdrop-filter: blur(10px);
        }

        .blog-page-info {
          padding: 25px;
        }

        .blog-page-meta {
          font-size: 13px;
          color: #718096;
          display: flex;
          gap: 20px;
          margin-bottom: 15px;
          font-weight: 500;
        }

        .blog-page-meta span {
          display: flex;
          align-items: center;
          gap: 6px;
        }

        .blog-page-meta svg {
          color: #667eea;
        }

        .blog-page-info h4 {
          font-size: 18px;
          font-weight: 700;
          margin-bottom: 15px;
          color: #2d3748;
          line-height: 1.4;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;
          transition: color 0.3s ease;
        }

        .blog-page-card:hover .blog-page-info h4 {
          color: #667eea;
        }

        .blog-page-info a {
          color: #667eea;
          font-size: 14px;
          font-weight: 600;
          text-decoration: none;
          transition: all 0.3s ease;
          display: inline-flex;
          align-items: center;
          gap: 5px;
        }

        .blog-page-info a:hover {
          color: #5a67d8;
          transform: translateX(5px);
        }

        /* Desktop Layout */
        @media (min-width: 969px) {
          .blog-page-container {
            display: grid;
            grid-template-columns: 350px 1fr;
            grid-template-areas: "sidebar blogs";
            gap: 30px;
          }
          
          .blog-page-sidebar {
            grid-area: sidebar;
          }
          
          .blogs-page {
            grid-area: blogs;
          }
          
          .follow-us-mobile {
            display: none;
          }
        }

        /* Mobile Layout */
        @media (max-width: 968px) {
          .blog-page-container {
            display: flex;
            flex-direction: column;
            padding: 30px 15px;
            gap: 20px;
          }
          
          .blog-page-sidebar {
            display: contents;
          }
          
          .search-section {
            order: 1;
          }
          
          .recent-posts-section {
            order: 2;
          }
          
          .blogs-page {
            order: 3;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
          }
          
          .categories-section {
            order: 4;
          }
          
          .tags-section {
            order: 5;
          }
          
          .follow-us-section {
            display: none;
          }
          
          .follow-us-mobile {
            order: 6;
            display: block;
          }
          
          .blog-page-banner-overlay h1 {
            font-size: 2.5rem;
          }
          
          .blog-page-banner-overlay p {
            font-size: 1.2rem;
          }
        }

        @media (max-width: 1200px) and (min-width: 969px) {
          .blogs-page {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          }
          
          .blog-page-banner-overlay h1 {
            font-size: 3rem;
          }
        }

        @media (max-width: 768px) {
          .blog-page-banner {
            height: 300px;
          }
          
          .blog-page-banner-overlay h1 {
            font-size: 2rem;
            text-align: center;
            padding: 0 20px;
          }
          
          .blog-page-banner-overlay p {
            font-size: 1rem;
            text-align: center;
            padding: 0 20px;
          }
          
          .blog-page-container {
            gap: 20px;
            padding: 20px 10px;
          }
          
          .blogs-page {
            grid-template-columns: 1fr;
          }
          
          .blog-page-sidebar-section {
            padding: 20px;
          }
          
          .blog-page-recent-post img {
            width: 60px;
            height: 60px;
          }
        }

        @media (max-width: 480px) {
          .blog-page-banner-overlay h1 {
            font-size: 1.8rem;
          }
          
          .blog-page-banner-overlay p {
            font-size: 0.9rem;
          }
          
          .blog-page-img img {
            height: 180px;
          }
          
          .blog-page-info {
            padding: 20px;
          }
          
          .blog-page-info h4 {
            font-size: 16px;
          }
          
          .blog-page-search-box input {
            padding: 12px 15px;
            font-size: 14px;
          }
          
          .blog-page-search-box button {
            padding: 0 15px;
          }
        }

        @keyframes fadeInImage {
          from { opacity: 0; }
          to { opacity: 1; }
        }

        html {
          scroll-behavior: smooth;
        }


/*PORTFOLIO PAGE NEW CSS */

.portfolio {
  min-height: 100vh;
}

/* Hero Section */
.portfolio-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
}

.portfolio-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.portfolio-pattern {
  position: absolute;
  width: 300px;
  height: 300px;
  animation: portfolio-float 20s infinite linear;
}

.portfolio-pattern-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.portfolio-pattern-2 {
  top: 60%;
  right: 15%;
  animation-delay: -7s;
  animation-duration: 25s;
}

.portfolio-pattern-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: -14s;
  animation-duration: 30s;
}

@keyframes portfolio-float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
  100% {
    transform: translateY(0px) rotate(360deg);
  }
}

.portfolio-hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.portfolio-hero-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-top:1.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffffff, #f0f0f0, #ffffff);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: portfolio-shimmer 3s ease-in-out infinite;
  letter-spacing: -0.02em;
}

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

.portfolio-hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-hero-description {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.portfolio-hero-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  animation: portfolio-pulse 2s infinite;
}

.portfolio-infinity-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

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


/* Success Stories Section */
.portfolio-success-stories {
  padding: 80px 0;
  /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
  color: black;
  position: relative;
}

.portfolio-success-stories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.portfolio-success-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.portfolio-success-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.portfolio-success-description {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
}

.portfolio-success-stats {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.portfolio-logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-logo-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.portfolio-logo-item:hover {
  transform: translateY(-5px);
}

.portfolio-logo-placeholder {
  width: 80px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  margin: 0 auto;
}

.portfolio-logos-section {
  width: 100%;
  padding: 40px 20px;
  background-color: #f8f9fa;
}

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

.portfolio-logos-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.portfolio-logos-image:hover {
  filter: grayscale(0%) opacity(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .portfolio-logos-section {
    padding: 30px 15px;
  }
  
  .portfolio-logos-image {
    max-width: 100%;
  }
}

/* Magazine Covers Section */
.portfolio-magazine-covers {
  padding: 80px 0;
  background: #f8f9fa;
}

.portfolio-magazine-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.portfolio-magazine-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #333;
  font-weight: 400;
}

.portfolio-magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-magazine-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-magazine-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-magazine-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* UI/UX Solutions Section */
.portfolio-uiux-solutions {
  padding: 80px 0;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
}

.portfolio-uiux-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.portfolio-uiux-showcase img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-uiux-description {
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* Digital Solutions Section */
.portfolio-digital-solutions {
  padding: 80px 0;
  background: #fff;
}

.portfolio-digital-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.portfolio-digital-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #333;
}

.portfolio-digital-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.portfolio-digital-showcase img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.portfolio-digital-showcase img:hover {
  transform: scale(1.05);
}

/* Projects List Section */
.portfolio-projects-list {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.portfolio-list-content {
  max-width: 1000px;
  margin: 0 auto;
}

.portfolio-list-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.portfolio-list-description {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 50px;
  opacity: 0.9;
}

.portfolio-table-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.portfolio-projects-table {
  width: 100%;
  border-collapse: collapse;
}

.portfolio-projects-table th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 1.1rem;
}

.portfolio-projects-table td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-projects-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

.portfolio-status-completed {
  background: rgba(46, 213, 115, 0.2);
  color: #2ed573;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .portfolio-success-content,
  .portfolio-magazine-content,
  .portfolio-uiux-content,
  .portfolio-digital-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .portfolio-success-text h2 {
    font-size: 2rem;
  }
  
  .portfolio-logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .portfolio-magazine-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-digital-showcase {
    grid-template-columns: 1fr;
  }
  
  .portfolio-table-container {
    padding: 20px;
    overflow-x: auto;
  }
  
  .portfolio-projects-table {
    font-size: 0.9rem;
  }
  
  .portfolio-projects-table th,
  .portfolio-projects-table td {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .portfolio-success-stories,
  .portfolio-magazine-covers,
  .portfolio-uiux-solutions,
  .portfolio-digital-solutions,
  .portfolio-projects-list {
    padding: 60px 0;
  }
  
  .portfolio-logos-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-list-title {
    font-size: 1.8rem;
  }
}

/* Animation enhancements */
.portfolio-aos-animate {
  animation: portfolioFadeInUp 0.8s ease-out forwards;
}

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


/* Projects Section */
.portfolio-projects {
  padding: 120px 0;
  background: #0a0a0a;
  position: relative;
}

.portfolio-projects::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, #764ba2, #0a0a0a);
}

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

.portfolio-section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 80px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.portfolio-project-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.portfolio-project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
  border-color: rgba(102, 126, 234, 0.5);
}

.portfolio-project-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

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

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

.portfolio-view-project-btn {
  padding: 12px 30px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.portfolio-view-project-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.portfolio-project-content {
  padding: 30px;
}

.portfolio-project-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
  line-height: 1.3;
}

.portfolio-project-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Portfolio AOS Animations */
[data-aos] {
  opacity: 0;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up"] {
  transform: translateY(50px);
}

[data-aos="zoom-in"] {
  transform: scale(0.8);
}

[data-aos].portfolio-aos-animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Portfolio Responsive Design */
@media (max-width: 768px) {
  .portfolio-hero {
    height: 80vh;
  }
  
  .portfolio-hero-content {
    padding: 0 15px;
  }
  
  .portfolio-pattern {
    width: 200px;
    height: 200px;
  }
  
  .portfolio-projects {
    padding: 80px 0;
  }
  
  .portfolio-projects-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .portfolio-project-card {
    margin: 0 10px;
  }
  
  .portfolio-container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .portfolio-hero-icon {
    width: 60px;
    height: 60px;
  }
  
  .portfolio-projects-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .portfolio-project-content {
    padding: 20px;
  }
}


/*JOB OPENING PAGE NEW CSS */

/* JobOpening.css */

.job-opening-container {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  min-height: 100vh;
}

/* Header Styles */
.job-opening-header {
  background: white;
  padding: 1rem 0;
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 2rem;
}

.job-opening-logo {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0;
}

.job-opening-logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
}

.job-opening-logo-it {
  background: #2563eb;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: bold;
  margin-left: 0.25rem;
}

/* Title Section */
.job-opening-title-section {
  text-align: center;
  padding: 2rem;
  background: white;
  margin: 0 auto 3rem auto;
  max-width: 1200px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.job-opening-company-info {
  color: #6c757d;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.job-opening-job-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
}

.job-opening-location-date {
  color: #6c757d;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.job-opening-action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.job-opening-interested-btn {
  background: #2563eb;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.job-opening-interested-btn:hover {
  background: #1d4ed8;
}

.job-opening-share-btn {
  background: transparent;
  color: #6c757d;
  border: 1px solid #dee2e6;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.job-opening-share-btn:hover {
  border-color: #adb5bd;
  color: #495057;
}

.job-opening-social-share {
  border-top: 1px solid #e9ecef;
  padding-top: 1.5rem;
}

.job-opening-social-share p {
  color: #6c757d;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.job-opening-social-icons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.job-opening-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 600;
  color: #6c757d;
}

.job-opening-social-icon:hover {
  border-color: #2563eb;
  color: #2563eb;
}

/* Modal Styles */
.job-opening-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.job-opening-modal {
  background: white;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
}

.job-opening-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #e9ecef;
}

.job-opening-modal-header h2 {
  font-size: 1.5rem;
  color: #212529;
  margin: 0;
}

.job-opening-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6c757d;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.job-opening-close-btn:hover {
  background: #f8f9fa;
  color: #495057;
}

.job-opening-form {
  padding: 1.5rem;
}

.job-opening-form-group {
  margin-bottom: 1.5rem;
}

.job-opening-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #212529;
}

.job-opening-form-group input,
.job-opening-form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.job-opening-form-group input:focus,
.job-opening-form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.job-opening-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.job-opening-form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.job-opening-cancel-btn {
  background: transparent;
  color: #6c757d;
  border: 1px solid #dee2e6;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.job-opening-cancel-btn:hover {
  border-color: #adb5bd;
  color: #495057;
}

.job-opening-submit-btn {
  background: #2563eb;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.job-opening-submit-btn:hover {
  background: #1d4ed8;
}

/* Main Content Layout */
.job-opening-main-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  padding: 0 2rem 3rem 2rem;
}

.job-opening-left-section {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.job-opening-section {
  padding: 2rem;
  border-bottom: 1px solid #e9ecef;
}

.job-opening-section:last-child {
  border-bottom: none;
}

.job-opening-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 1.5rem;
}

.job-opening-description p {
  margin-bottom: 1rem;
  color: #495057;
  line-height: 1.7;
}

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

.job-opening-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  color: #495057;
  line-height: 1.6;
}

.job-opening-list li::before {
  content: "•";
  color: #2563eb;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Right Sidebar */
.job-opening-right-section {
  display: flex;
  flex-direction: column;
}

.job-opening-sidebar {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 2rem;
}

.job-opening-sidebar-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 2rem;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.job-opening-info-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f8f9fa;
}

.job-opening-info-item:last-of-type {
  border-bottom: none;
  margin-bottom: 2rem;
}

.job-opening-info-label {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.job-opening-info-value {
  font-weight: 600;
  color: #212529;
  font-size: 1rem;
}

.job-opening-apply-now-btn {
  background: #2563eb;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  width: 100%;
}

.job-opening-apply-now-btn:hover {
  background: #1d4ed8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .job-opening-main-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .job-opening-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .job-opening-container {
    padding: 0;
  }
  
  .job-opening-logo {
    padding: 0 1rem;
  }
  
  .job-opening-job-title {
    font-size: 2rem;
  }
  
  .job-opening-title-section {
    margin: 0 1rem 2rem 1rem;
    padding: 1.5rem;
  }
  
  .job-opening-main-content {
    padding: 0 1rem 2rem 1rem;
    gap: 1.5rem;
  }
  
  .job-opening-section {
    padding: 1.5rem;
  }
  
  .job-opening-sidebar {
    padding: 1.5rem;
  }
  
  .job-opening-action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .job-opening-interested-btn,
  .job-opening-share-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .job-opening-modal {
    margin: 1rem;
    max-height: calc(100vh - 2rem);
  }
  
  .job-opening-form-actions {
    flex-direction: column;
  }
  
  .job-opening-cancel-btn,
  .job-opening-submit-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .job-opening-job-title {
    font-size: 1.5rem;
  }
  
  .job-opening-section-title {
    font-size: 1.3rem;
  }
  
  .job-opening-sidebar-title {
    font-size: 1.2rem;
  }
  
  .job-opening-social-icons {
    gap: 0.25rem;
  }
  
  .job-opening-social-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}


/*BLOG DETAILS PAGE NEW CSS */

/* BlogDetail.css */


.blog-detail {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: #2d3748;
  background: #ffffff;
}

/* Navigation */
.blog-detail-nav {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.blog-detail-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.blog-detail-back-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-size: 0.9rem;
}

.blog-detail-back-btn:hover {
  background: #f7fafc;
  border-color: #cbd5e0;
  color: #2d3748;
}

/* Hero Section */
.blog-detail-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.blog-detail-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
}

.blog-detail-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.blog-detail-breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.blog-detail-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 900px;
}

.blog-detail-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 700px;
  font-weight: 300;
}

.blog-detail-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.blog-detail-author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-detail-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.blog-detail-author-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  display: block;
}

.blog-detail-post-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.blog-detail-post-info svg {
  opacity: 0.7;
}

.blog-detail-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-detail-like-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.blog-detail-like-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.blog-detail-like-btn.liked {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  color: #fecaca;
}

.blog-detail-share {
  position: relative;
}

.blog-detail-share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.blog-detail-share-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.blog-detail-share-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 10;
}

.blog-detail-share:hover .blog-detail-share-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.blog-detail-share-dropdown button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  color: #4a5568;
  cursor: pointer;
  transition: background-color 0.2s;
  font-size: 0.9rem;
}

.blog-detail-share-dropdown button:hover {
  background: #f7fafc;
}

.blog-detail-share-dropdown button:first-child {
  border-radius: 8px 8px 0 0;
}

.blog-detail-share-dropdown button:last-child {
  border-radius: 0 0 8px 8px;
}

/* Featured Image */
.blog-detail-featured-image {
  max-width: 1200px;
  margin: -3rem auto 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.blog-detail-featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Main Content */
.blog-detail-main {
  padding: 4rem 0;
}

.blog-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
}

.blog-detail-content {
  min-width: 0;
}

.blog-detail-article {
  font-size: 1.1rem;
  line-height: 1.8;
}

.blog-detail-intro {
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 3rem;
  padding: 2rem;
  background: #f7fafc;
  border-radius: 12px;
  border-left: 4px solid #667eea;
}

.blog-detail-section {
  margin-bottom: 3rem;
}

.blog-detail-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.blog-detail-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
}

.blog-detail-section-content p {
  margin-bottom: 1.5rem;
  color: #4a5568;
}

.blog-detail-section-content ul {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.blog-detail-list-item {
  position: relative;
  padding: 0.5rem 0 0.5rem 2rem;
  margin-bottom: 0.5rem;
  color: #4a5568;
}

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

.blog-detail-code {
  background: #1a202c;
  color: #e2e8f0;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  overflow-x: auto;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
}

.blog-detail-conclusion {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 3rem;
  border-radius: 16px;
  margin: 3rem 0;
}

.blog-detail-conclusion h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.blog-detail-conclusion h2::after {
  background: rgba(255, 255, 255, 0.3);
}

.blog-detail-conclusion-content p {
  color: rgba(255, 255, 255, 0.9);
}

.blog-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 3rem 0;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.blog-detail-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #edf2f7;
  color: #4a5568;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}

.blog-detail-tag:hover {
  background: #e2e8f0;
  color: #2d3748;
}

/* Author Bio */
.blog-detail-author-bio {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: #f7fafc;
  border-radius: 12px;
  margin: 3rem 0;
  border: 1px solid #e2e8f0;
}

.blog-detail-author-bio-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #667eea;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.blog-detail-author-bio-content h3 {
  font-size: 1.3rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.blog-detail-author-bio-content p {
  color: #4a5568;
  margin-bottom: 1rem;
}

.blog-detail-author-social {
  display: flex;
  gap: 1rem;
}

.blog-detail-author-social a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.blog-detail-author-social a:hover {
  color: #764ba2;
}

/* Comments Section */
.blog-detail-comments {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid #e2e8f0;
}

.blog-detail-comments h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  color: #2d3748;
  margin-bottom: 2rem;
}

.blog-detail-comment-form {
  margin-bottom: 3rem;
}

.blog-detail-comment-input {
  width: 100%;
  min-height: 120px;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  resize: vertical;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.6;
  transition: border-color 0.2s;
  margin-bottom: 1rem;
}

.blog-detail-comment-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.blog-detail-comment-submit {
  padding: 0.75rem 2rem;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.blog-detail-comment-submit:hover:not(:disabled) {
  background: #5a67d8;
  transform: translateY(-1px);
}

.blog-detail-comment-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.blog-detail-comments-list {
  appearance: 1.5rem;
}

.blog-detail-comment {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #f7fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  margin-bottom: 1.5rem;
  transition: all 0.2s;
}

.blog-detail-comment:hover {
  background: #edf2f7;
}

.blog-detail-comment-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #cbd5e0;
  color: #4a5568;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.blog-detail-comment-content {
  flex: 1;
}

.blog-detail-comment-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.blog-detail-comment-author {
  font-weight: 600;
  color: #2d3748;
}

.blog-detail-comment-date {
  font-size: 0.875rem;
  color: #718096;
}

.blog-detail-comment-text {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-detail-comment-actions {
  display: flex;
  gap: 1rem;
}

.blog-detail-comment-like,
.blog-detail-comment-reply {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: none;
  border: none;
  color: #718096;
  font-size: 0.875rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
}

.blog-detail-comment-like:hover,
.blog-detail-comment-reply:hover {
  background: #e2e8f0;
  color: #4a5568;
}

/* Sidebar */
.blog-detail-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.blog-detail-toc {
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.blog-detail-toc h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: #2d3748;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}

.blog-detail-toc ul {
  list-style: none;
  padding: 0;
}

.blog-detail-toc li {
  margin-bottom: 0.5rem;
}

.blog-detail-toc a {
  display: block;
  padding: 0.5rem 0;
  color: #4a5568;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
  font-size: 0.95rem;
}

.blog-detail-toc a:hover {
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
  padding-left: 0.5rem;
}

.blog-detail-related {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.blog-detail-related h4 {
  font-size: 1.1rem;
  color: #2d3748;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}

.blog-detail-related-posts {
  appearance: 1.5rem;
}

.blog-detail-related-post {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 1.5rem;
}

.blog-detail-related-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.blog-detail-related-post h5 {
  font-size: 0.95rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-detail-related-post h5:hover {
  color: #667eea;
  cursor: pointer;
}

.blog-detail-related-post p {
  font-size: 0.85rem;
  color: #718096;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.blog-detail-related-date {
  font-size: 0.8rem;
  color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .blog-detail-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .blog-detail-sidebar {
    position: static;
    order: -1;
  }
  
  .blog-detail-toc {
    display: none;
  }
}

@media (max-width: 768px) {
  .blog-detail-nav-container,
  .blog-detail-hero-container,
  .blog-detail-featured-image,
  .blog-detail-container {
    padding: 0 1rem;
  }
  
  .blog-detail-title {
    font-size: 2rem;
  }
  
  .blog-detail-subtitle {
    font-size: 1rem;
  }
  
  .blog-detail-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .blog-detail-actions {
    width: 100%;
    justify-content: space-between;
  }
  
  .blog-detail-featured-image {
    margin-top: -2rem;
  }
  
  .blog-detail-featured-image img {
    height: 250px;
  }
  
  .blog-detail-main {
    padding: 2rem 0;
  }
  
  .blog-detail-container {
    gap: 2rem;
  }
  
  .blog-detail-article {
    font-size: 1rem;
  }
  
  .blog-detail-intro {
    font-size: 1.1rem;
    padding: 1.5rem;
  }
  
  .blog-detail-section h2 {
    font-size: 1.5rem;
  }
  
  .blog-detail-author-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .blog-detail-author-bio-avatar {
    align-self: center;
  }
  
  .blog-detail-comment {
    padding: 1rem;
  }
  
  .blog-detail-related {
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .blog-detail-title {
    font-size: 1.75rem;
  }
  
  .blog-detail-post-info {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  
  .blog-detail-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .blog-detail-like-btn,
  .blog-detail-share-btn {
    width: 100%;
    justify-content: center;
  }
  
  .blog-detail-share-dropdown {
    right: auto;
    left: 0;
    width: 100%;
  }
  
  .blog-detail-code {
    font-size: 0.8rem;
    padding: 1rem;
  }
  
  .blog-detail-conclusion {
    padding: 2rem;
  }
}


/*INNERPAGE SERVICES NEW CSS */


 .innerservicepage-container {
          font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
          line-height: 1.6;
          color: #333;
          overflow-x: hidden;
          position: relative;
        }

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

        .innerservicepage-gradient-text {
          background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
        }

        /* Floating Elements */
        .innerservicepage-floating-elements {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          pointer-events: none;
          z-index: 0;
        }

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

        .innerservicepage-float-1 {
          width: 300px;
          height: 300px;
          top: 20%;
          right: -150px;
          animation-delay: 0s;
        }

        .innerservicepage-float-2 {
          width: 200px;
          height: 200px;
          top: 60%;
          left: -100px;
          animation-delay: 2s;
        }

        .innerservicepage-float-3 {
          width: 150px;
          height: 150px;
          top: 80%;
          right: 10%;
          animation-delay: 4s;
        }

        /* Banner Styles */
        .innerservicepage-banner {
          height: 100vh;
          display: flex;
          align-items: center;
          justify-content: center;
          position: relative;
          overflow: hidden;
        }

        .innerservicepage-banner-bg {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
        }

        .innerservicepage-wave {
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 100px;
          background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3e%3cpath fill='%23ffffff' fill-opacity='0.3' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3e%3c/path%3e%3c/svg%3e") repeat-x;
          background-size: 1440px 100px;
          animation: wave 15s ease-in-out infinite;
        }

        .innerservicepage-particles {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
        }

        .innerservicepage-particle {
          position: absolute;
          width: 4px;
          height: 4px;
          background: rgba(255, 255, 255, 0.6);
          border-radius: 50%;
          animation: particle-float 5s linear infinite;
        }

        .innerservicepage-banner-overlay {
          position: relative;
          z-index: 1;
          text-align: center;
          color: white;
          max-width: 900px;
          padding: 0 20px;
        }

        .innerservicepage-banner-badge {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          background: rgba(255, 255, 255, 0.2);
          padding: 8px 20px;
          border-radius: 50px;
          font-size: 0.9rem;
          font-weight: 600;
          margin-bottom: 2rem;
          backdrop-filter: blur(10px);
          border: 1px solid rgba(255, 255, 255, 0.3);
          animation: fadeInUp 1s ease-out;
        }

        .innerservicepage-banner-title {
          font-size: 4.5rem;
          font-weight: 800;
          margin-bottom: 1.5rem;
          text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
          animation: fadeInUp 1s ease-out 0.2s both;
          line-height: 1.1;
        }

        .innerservicepage-banner-subtitle {
          font-size: 1.3rem;
          margin-bottom: 3rem;
          opacity: 0.95;
          animation: fadeInUp 1s ease-out 0.4s both;
          line-height: 1.6;
          max-width: 700px;
          margin-left: auto;
          margin-right: auto;
        }

        .innerservicepage-banner-buttons {
          display: flex;
          gap: 20px;
          justify-content: center;
          flex-wrap: wrap;
          animation: fadeInUp 1s ease-out 0.6s both;
        }

        .innerservicepage-banner-cta {
          padding: 15px 30px;
          font-size: 1.1rem;
          font-weight: 600;
          border-radius: 50px;
          cursor: pointer;
          transition: all 0.3s ease;
          display: flex;
          align-items: center;
          gap: 8px;
          border: none;
        }

        .innerservicepage-banner-cta.primary {
          background: linear-gradient(135deg, #ff6b6b, #feca57);
          color: white;
          box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        }

        .innerservicepage-banner-cta.secondary {
          background: rgba(255, 255, 255, 0.2);
          color: white;
          border: 2px solid rgba(255, 255, 255, 0.5);
          backdrop-filter: blur(10px);
        }

        .innerservicepage-banner-cta:hover {
          transform: translateY(-3px);
          box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        /* Process Section */
        .innerservicepage-process {
          padding: 120px 0;
          background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
          position: relative;
        }

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

        .innerservicepage-section-title {
          font-size: 3.5rem;
          font-weight: 800;
          margin-bottom: 1rem;
          color: #1e293b;
        }

        .innerservicepage-section-subtitle {
          font-size: 1.2rem;
          color: #64748b;
          max-width: 600px;
          margin: 0 auto;
          line-height: 1.6;
        }

        .innerservicepage-process-flowchart {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 40px;
          position: relative;
        }

        .innerservicepage-process-step {
          text-align: center;
          position: relative;
          padding: 30px 20px;
          background: white;
          border-radius: 20px;
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          transition: all 0.5s ease;
          border: 1px solid #e2e8f0;
        }

        .innerservicepage-process-step.active {
          transform: translateY(-10px);
          box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
        }

        .innerservicepage-process-icon {
          width: 80px;
          height: 80px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 auto 20px;
          color: white;
          position: relative;
          z-index: 2;
        }

        .innerservicepage-process-title {
          font-size: 1.4rem;
          font-weight: 700;
          margin-bottom: 10px;
          color: #1e293b;
        }

        .innerservicepage-process-desc {
          color: #64748b;
          line-height: 1.6;
        }

        .innerservicepage-process-arrow {
          position: absolute;
          top: 50%;
          right: -30px;
          transform: translateY(-50%);
          color: #cbd5e1;
          z-index: 1;
        }

        .innerservicepage-process-number {
          position: absolute;
          top: -10px;
          right: -10px;
          width: 30px;
          height: 30px;
          background: linear-gradient(135deg, #667eea, #764ba2);
          color: white;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-weight: 700;
          font-size: 0.9rem;
        }

        /* Why Choose Styles */
        .innerservicepage-why-choose {
          padding: 120px 0;
          background: white;
          position: relative;
        }

        .innerservicepage-why-choose-content {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 80px;
          align-items: center;
        }

        .innerservicepage-why-choose-visual {
          display: flex;
          justify-content: center;
          align-items: center;
        }

        .innerservicepage-choose-graphic {
          position: relative;
          width: 300px;
          height: 300px;
        }

        .innerservicepage-main-circle {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          width: 160px;
          height: 160px;
          background: linear-gradient(135deg, #667eea, #764ba2);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          color: white;
          box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
          z-index: 2;
        }

        .innerservicepage-orbit-circle {
          position: absolute;
          width: 60px;
          height: 60px;
          background: white;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
          border: 3px solid #f1f5f9;
        }

        .innerservicepage-orbit-1 {
          top: 0;
          left: 50%;
          transform: translateX(-50%);
          color: #10b981;
          animation: orbit 8s linear infinite;
        }

        .innerservicepage-orbit-2 {
          top: 50%;
          right: 0;
          transform: translateY(-50%);
          color: #f59e0b;
          animation: orbit 8s linear infinite reverse;
        }

        .innerservicepage-orbit-3 {
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
          color: #ef4444;
          animation: orbit 8s linear infinite;
        }

        .innerservicepage-orbit-4 {
          top: 50%;
          left: 0;
          transform: translateY(-50%);
          color: #8b5cf6;
          animation: orbit 8s linear infinite reverse;
        }

        .innerservicepage-why-choose-title {
          font-size: 3rem;
          font-weight: 800;
          margin-bottom: 1.5rem;
          color: #1e293b;
          line-height: 1.2;
        }

        .innerservicepage-why-choose-description {
          font-size: 1.1rem;
          color: #64748b;
          margin-bottom: 3rem;
          line-height: 1.7;
        }

        .innerservicepage-why-choose-features {
          display: grid;
          gap: 25px;
        }

        .innerservicepage-feature {
          display: flex;
          gap: 20px;
          align-items: flex-start;
          padding: 20px;
          background: #f8fafc;
          border-radius: 15px;
          transition: all 0.3s ease;
        }

        .innerservicepage-feature:hover {
          background: #f1f5f9;
          transform: translateX(5px);
        }

        .innerservicepage-feature-icon {
          flex-shrink: 0;
          color: #10b981;
          padding: 10px;
          background: rgba(16, 185, 129, 0.1);
          border-radius: 10px;
        }

        .innerservicepage-feature h4 {
          margin: 0 0 5px 0;
          font-weight: 700;
          color: #1e293b;
        }

        .innerservicepage-feature p {
          margin: 0;
          color: #64748b;
          font-size: 0.95rem;
        }

        /* Stats Styles */
        .innerservicepage-stats {
          padding: 100px 0;
          background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
          color: white;
          position: relative;
          overflow: hidden;
        }

        .innerservicepage-stats::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3e%3cdefs%3e%3cpattern id='grid' width='10' height='10' patternUnits='userSpaceOnUse'%3e%3cpath d='M 10 0 L 0 0 0 10' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='0.5'/%3e%3c/pattern%3e%3c/defs%3e%3crect width='100' height='100' fill='url(%23grid)'/%3e%3c/svg%3e");
          opacity: 0.3;
        }

        .innerservicepage-stats-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 40px;
          text-align: center;
          position: relative;
          z-index: 1;
        }

        .innerservicepage-stat-item {
          padding: 40px 30px;
          background: rgba(255, 255, 255, 0.1);
          border-radius: 20px;
          backdrop-filter: blur(10px);
          border: 1px solid rgba(255, 255, 255, 0.2);
          transition: all 0.5s ease;
          position: relative;
          overflow: hidden;
        }

        .innerservicepage-stat-item.animate {
          animation: statSlideUp 0.8s ease-out forwards;
        }

        .innerservicepage-stat-item:hover {
          transform: translateY(-10px);
          background: rgba(255, 255, 255, 0.15);
        }

        .innerservicepage-stat-icon {
          color: #60a5fa;
          margin-bottom: 20px;
          display: inline-block;
          padding: 15px;
          background: rgba(96, 165, 250, 0.2);
          border-radius: 50%;
          transition: all 0.3s ease;
        }

        .innerservicepage-stat-item:hover .innerservicepage-stat-icon {
          background: rgba(96, 165, 250, 0.3);
          transform: scale(1.1);
        }

        .innerservicepage-stat-number {
          font-size: 3.5rem;
          font-weight: 800;
          color: #60a5fa;
          margin-bottom: 10px;
          text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
        }

        .innerservicepage-stat-label {
          font-size: 1.1rem;
          color: #cbd5e1;
          font-weight: 600;
        }

        .innerservicepage-stat-glow {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: linear-gradient(45deg, transparent, rgba(96, 165, 250, 0.1), transparent);
          transform: translateX(-100%);
          transition: transform 0.8s ease;
        }

        .innerservicepage-stat-item:hover .innerservicepage-stat-glow {
          transform: translateX(100%);
        }

        /* Services Styles */
        .innerservicepage-services {
          padding: 120px 0;
          background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
          position: relative;
        }

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

        .innerservicepage-service-card {
          background: white;
          border-radius: 25px;
          overflow: hidden;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          transition: all 0.5s ease;
          position: relative;
          border: 1px solid #e2e8f0;
        }

        .innerservicepage-service-card.animate {
          animation: serviceSlideUp 0.8s ease-out forwards;
          opacity: 0;
          transform: translateY(50px);
        }

        .innerservicepage-service-card:hover {
          transform: translateY(-15px) rotate(2deg);
          box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .innerservicepage-service-header {
          height: 120px;
          display: flex;
          align-items: center;
          justify-content: center;
          position: relative;
          overflow: hidden;
        }

        .innerservicepage-service-header::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3e%3cpath d='M20,20 Q50,5 80,20 Q95,50 80,80 Q50,95 20,80 Q5,50 20,20' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='0.5'/%3e%3c/svg%3e");
          opacity: 0.5;
        }

        .innerservicepage-service-icon {
          color: white;
          z-index: 1;
          position: relative;
          padding: 20px;
          background: rgba(255, 255, 255, 0.2);
          border-radius: 50%;
          backdrop-filter: blur(10px);
          transition: all 0.3s ease;
        }

        .innerservicepage-service-card:hover .innerservicepage-service-icon {
          transform: scale(1.1) rotate(5deg);
          background: rgba(255, 255, 255, 0.3);
        }

        .innerservicepage-service-content {
          padding: 30px;
        }

        .innerservicepage-service-title {
          font-size: 1.6rem;
          font-weight: 700;
          margin-bottom: 15px;
          color: #1e293b;
        }

        .innerservicepage-service-description {
          color: #64748b;
          margin-bottom: 25px;
          line-height: 1.6;
        }

        .innerservicepage-service-features {
          display: flex;
          flex-wrap: wrap;
          gap: 8px;
          margin-bottom: 25px;
        }

        .innerservicepage-service-feature-tag {
          background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
          color: #475569;
          padding: 6px 12px;
          border-radius: 20px;
          font-size: 0.85rem;
          font-weight: 500;
          border: 1px solid #e2e8f0;
        }

        .innerservicepage-service-link {
          color: #667eea;
          font-weight: 600;
          text-decoration: none;
          font-size: 1rem;
          display: inline-flex;
          align-items: center;
          gap: 8px;
          padding: 12px 0;
          transition: all 0.3s ease;
          position: relative;
        }

        .innerservicepage-service-link:hover {
          color: #5a67d8;
          transform: translateX(5px);
        }

        .innerservicepage-service-link::after {
          content: '';
          position: absolute;
          bottom: 8px;
          left: 0;
          width: 0;
          height: 2px;
          background: linear-gradient(135deg, #667eea, #764ba2);
          transition: width 0.3s ease;
        }

        .innerservicepage-service-link:hover::after {
          width: calc(100% - 24px);
        }

        .innerservicepage-service-glow {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.05), transparent);
          transform: translateX(-100%);
          transition: transform 0.8s ease;
          pointer-events: none;
        }

        .innerservicepage-service-card:hover .innerservicepage-service-glow {
          transform: translateX(100%);
        }

        /* Animations */
        @keyframes float {
          0%, 100% {
            transform: translateY(0px);
          }
          50% {
            transform: translateY(-20px);
          }
        }

        @keyframes wave {
          0%, 100% {
            transform: translateX(0);
          }
          50% {
            transform: translateX(-25%);
          }
        }

        @keyframes particle-float {
          0% {
            transform: translateY(100vh);
            opacity: 0;
          }
          10% {
            opacity: 1;
          }
          90% {
            opacity: 1;
          }
          100% {
            transform: translateY(-10vh);
            opacity: 0;
          }
        }

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

        @keyframes orbit {
          from {
            transform: rotate(0deg) translateX(120px) rotate(0deg);
          }
          to {
            transform: rotate(360deg) translateX(120px) rotate(-360deg);
          }
        }

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

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

        /* Responsive Design */
        @media (max-width: 1024px) {
          .innerservicepage-why-choose-content {
            grid-template-columns: 1fr;
            gap: 60px;
            text-align: center;
          }

          .innerservicepage-process-flowchart {
            grid-template-columns: repeat(2, 1fr);
          }

          .innerservicepage-process-arrow {
            display: none;
          }
        }

        @media (max-width: 768px) {
          .innerservicepage-banner-title {
            font-size: 3rem;
          }

          .innerservicepage-banner-subtitle {
            font-size: 1.1rem;
          }

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

          .innerservicepage-banner-cta {
            width: 100%;
            max-width: 300px;
            justify-content: center;
          }

          .innerservicepage-section-title {
            font-size: 2.5rem;
          }

          .innerservicepage-why-choose-title {
            font-size: 2.2rem;
          }

          .innerservicepage-process-flowchart {
            grid-template-columns: 1fr;
            gap: 30px;
          }

          .innerservicepage-choose-graphic {
            width: 250px;
            height: 250px;
          }

          .innerservicepage-main-circle {
            width: 120px;
            height: 120px;
          }

          .innerservicepage-orbit-circle {
            width: 50px;
            height: 50px;
          }

          .innerservicepage-services-grid {
            grid-template-columns: 1fr;
            gap: 25px;
          }

          .innerservicepage-stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
          }

          .innerservicepage-stat-number {
            font-size: 2.5rem;
          }
        }

        @media (max-width: 480px) {
          .innerservicepage-banner-title {
            font-size: 2.2rem;
          }

          .innerservicepage-container-width {
            padding: 0 15px;
          }

          .innerservicepage-section-title {
            font-size: 2rem;
          }

          .innerservicepage-why-choose-title {
            font-size: 1.8rem;
          }

          .innerservicepage-process,
          .innerservicepage-why-choose,
          .innerservicepage-services {
            padding: 80px 0;
          }

          .innerservicepage-stats {
            padding: 60px 0;
          }

          .innerservicepage-stats-grid {
            grid-template-columns: 1fr;
          }

          .innerservicepage-stat-number {
            font-size: 2.2rem;
          }

          .innerservicepage-choose-graphic {
            width: 200px;
            height: 200px;
          }

          .innerservicepage-main-circle {
            width: 100px;
            height: 100px;
          }

          .innerservicepage-main-circle svg {
            width: 50px;
            height: 50px;
          }

          .innerservicepage-orbit-circle {
            width: 40px;
            height: 40px;
          }

          .innerservicepage-orbit-circle svg {
            width: 16px;
            height: 16px;
          }

          .innerservicepage-service-card {
            margin: 0 10px;
          }

          .innerservicepage-services-grid {
            grid-template-columns: 1fr;
          }
        }

        .bg-gradient-to-br {
          background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
        }

        .from-blue-500 { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); }
        .to-cyan-500 { --tw-gradient-to: #06b6d4; }
        .from-purple-500 { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); }
        .to-pink-500 { --tw-gradient-to: #ec4899; }
        .from-green-500 { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); }
        .to-emerald-500 { --tw-gradient-to: #10b981; }
        .from-orange-500 { --tw-gradient-from: #f97316; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 115, 22, 0)); }
        .to-red-500 { --tw-gradient-to: #ef4444; }
        .from-indigo-500 { --tw-gradient-from: #6366f1; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); }
        .to-purple-600 { --tw-gradient-to: #9333ea; }
        .from-teal-500 { --tw-gradient-from: #14b8a6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 184, 166, 0)); }
        .to-blue-600 { --tw-gradient-to: #2563eb; }
        .from-pink-500 { --tw-gradient-from: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); }
        .to-rose-500 { --tw-gradient-to: #f43f5e; }
        .from-yellow-400 { --tw-gradient-from: #facc15; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 204, 21, 0)); }
        .to-orange-500 { --tw-gradient-to: #f97316; }
        .from-blue-400 { --tw-gradient-from: #60a5fa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); }
        .to-indigo-500 { --tw-gradient-to: #6366f1; }
        .from-green-400 { --tw-gradient-from: #4ade80; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(74, 222, 128, 0)); }
        .to-emerald-500 { --tw-gradient-to: #10b981; }
        .from-purple-400 { --tw-gradient-from: #a78bfa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); }
        .to-pink-500 { --tw-gradient-to: #ec4899; }


/*CAREER PAGE NEW CSS */

/* CareerPage.css */

/* CareerPage.css */


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

.career-page {
  min-height: 100vh;
}

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

/* Banner Section */
.career-page-banner-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.career-page-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.career-page-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.career-page-banner-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.career-page-banner-text p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.7;
}

.career-page-cta-button {
  background: #ff6b6b;
  color: white;
  border: none;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.career-page-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
  background: #ff5252;
}

/* Working With Us Section */
.career-page-working-with-us {
  padding: 100px 0;
  background: #f8fafc;
}

.career-page-working-with-us h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: #2d3748;
  font-weight: 700;
}

.career-page-working-content p {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #4a5568;
  line-height: 1.8;
}

.career-page-working-content p:last-child {
  margin-bottom: 0;
}

/* Photo Collage Section */
.career-page-photo-collage {
  padding: 100px 0;
  background: white;
}

.career-page-photo-collage h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: #2d3748;
  font-weight: 700;
}

.career-page-collage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.career-page-photo-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  aspect-ratio: 1;
}

.career-page-photo-item:hover {
  transform: translateY(-5px);
}

.career-page-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.career-page-photo-item:hover img {
  transform: scale(1.05);
}

/* Why Join Section */
.career-page-why-join {
  padding: 100px 0;
  background: #f7fafc;
}

.career-page-why-join h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: #2d3748;
  font-weight: 700;
}

.career-page-why-join-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.career-page-why-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.career-page-why-images img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.career-page-why-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.career-page-why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.career-page-why-icon {
  width: 24px;
  height: 24px;
  color: #667eea;
  flex-shrink: 0;
  margin-top: 4px;
}

.career-page-why-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2d3748;
}

.career-page-why-item p {
  color: #4a5568;
  line-height: 1.6;
}

/* Benefits Section */
.career-page-benefits-section {
  padding: 100px 0;
  background: white;
}

.career-page-benefits-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: #2d3748;
  font-weight: 700;
}

.career-page-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.career-page-benefit-item {
  background: #f8fafc;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.career-page-benefit-item:hover {
  border-color: #667eea;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.1);
}

.career-page-benefit-icon {
  width: 48px;
  height: 48px;
  color: #667eea;
  margin: 0 auto 20px;
}

.career-page-benefit-item h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #2d3748;
}

.career-page-benefit-item p {
  color: #4a5568;
  line-height: 1.7;
}

/* Internships Section */
.career-page-internships-section {
  padding: 100px 0;
  background: #f7fafc;
}

.career-page-internships-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: #2d3748;
  font-weight: 700;
}

.career-page-internship-content p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  color: #4a5568;
  line-height: 1.8;
}

.career-page-internship-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.career-page-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.career-page-feature-icon {
  width: 20px;
  height: 20px;
  color: #667eea;
  flex-shrink: 0;
  margin-top: 2px;
}

.career-page-feature-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #2d3748;
}

.career-page-feature-item p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.career-page-internship-cta {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.8;
  background: white;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #667eea;
}

/* Positions Section */
.career-page-positions-section {
  padding: 100px 0;
  background: white;
}

.career-page-positions-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: #2d3748;
  font-weight: 700;
}

.career-page-filters {
  margin-bottom: 50px;
}

.career-page-filter-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.career-page-filter-dropdown {
  position: relative;
}

.career-page-filter-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #f7fafc;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #4a5568;
}

.career-page-filter-button:hover {
  border-color: #cbd5e0;
  background: #edf2f7;
}

.career-page-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 10;
  margin-top: 4px;
}

.career-page-dropdown-item {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 14px;
  color: #4a5568;
  border-bottom: 1px solid #f7fafc;
}

.career-page-dropdown-item:hover {
  background: #f7fafc;
}

.career-page-dropdown-item:last-child {
  border-bottom: none;
}

.career-page-positions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.career-page-position-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
}

.career-page-position-card:hover {
  border-color: #667eea;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.1);
}

.career-page-position-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.career-page-position-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
  flex: 1;
}

.career-page-department-tag {
  background: #667eea;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}

.career-page-position-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.career-page-detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4a5568;
  font-size: 0.95rem;
}

.career-page-detail-item svg {
  color: #a0aec0;
}

.career-page-position-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.career-page-position-link:hover {
  color: #5a67d8;
}

.career-page-no-positions {
  text-align: center;
  padding: 60px 20px;
  color: #718096;
}

.career-page-no-positions p {
  font-size: 1.1rem;
}

/* Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
  .career-page-container {
    padding: 0 30px;
  }
  
  .career-page-banner-text h1 {
    font-size: 3rem;
  }
  
  .career-page-why-join-content {
    gap: 50px;
  }
  
  .career-page-benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .career-page-banner-section {
    padding: 80px 0;
  }
  
  .career-page-banner-text h1 {
    font-size: 2.5rem;
  }
  
  .career-page-banner-text p {
    font-size: 1.1rem;
  }
  
  .career-page-working-with-us,
  .career-page-photo-collage,
  .career-page-why-join,
  .career-page-benefits-section,
  .career-page-internships-section,
  .career-page-positions-section {
    padding: 70px 0;
  }
  
  .career-page-working-with-us h2,
  .career-page-photo-collage h2,
  .career-page-why-join h2,
  .career-page-benefits-section h2,
  .career-page-internships-section h2,
  .career-page-positions-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  /* Photo collage responsive adjustment */
  .career-page-collage-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .career-page-photo-item:nth-child(9) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
  
  /* Why join section - stack images below content on mobile */
  .career-page-why-join-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .career-page-why-images {
    order: 2;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .career-page-why-images img {
    height: 200px;
  }
  
  .career-page-why-content {
    order: 1;
  }
  
  .career-page-benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .career-page-benefit-item {
    padding: 30px 25px;
  }
  
  .career-page-internship-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .career-page-positions-grid {
    grid-template-columns: 1fr;
  }
  
  .career-page-filter-group {
    flex-direction: column;
    gap: 15px;
  }
  
  .career-page-filter-button {
    width: 100%;
    justify-content: space-between;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .career-page-container {
    padding: 0 20px;
  }
  
  .career-page-banner-section {
    padding: 60px 0;
  }
  
  .career-page-banner-text h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .career-page-banner-text p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .career-page-cta-button {
    padding: 15px 30px;
    font-size: 1rem;
  }
  
  .career-page-working-with-us,
  .career-page-photo-collage,
  .career-page-why-join,
  .career-page-benefits-section,
  .career-page-internships-section,
  .career-page-positions-section {
    padding: 50px 0;
  }
  
  .career-page-working-with-us h2,
  .career-page-photo-collage h2,
  .career-page-why-join h2,
  .career-page-benefits-section h2,
  .career-page-internships-section h2,
  .career-page-positions-section h2 {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
  
  /* Mobile photo collage - single column for better visibility */
  .career-page-collage-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }
  
  .career-page-photo-item:nth-child(9) {
    grid-column: auto;
    max-width: 100%;
  }
  
  .career-page-photo-item {
    aspect-ratio: 4/3;
  }
  
  .career-page-why-images {
    grid-template-columns: 1fr;
  }
  
  .career-page-why-images img {
    height: 250px;
  }
  
  .career-page-why-item {
    gap: 15px;
  }
  
  .career-page-benefit-item {
    padding: 25px 20px;
  }
  
  .career-page-benefit-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
  }
  
  .career-page-feature-item {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .career-page-feature-icon {
    margin: 0 auto;
  }
  
  .career-page-position-card {
    padding: 25px 20px;
  }
  
  .career-page-position-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  
  .career-page-department-tag {
    align-self: flex-start;
  }
  
  .career-page-working-content p,
  .career-page-internship-content p {
    font-size: 1rem;
  }
  
  .career-page-internship-cta {
    font-size: 1rem;
    padding: 25px 20px;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  .career-page-banner-text h1 {
    font-size: 1.8rem;
  }
  
  .career-page-collage-grid {
    max-width: 300px;
  }
  
  .career-page-positions-grid {
    grid-template-columns: 1fr;
  }
  
  .career-page-position-card {
    padding: 20px 15px;
  }
  
  .career-page-benefit-item {
    padding: 20px 15px;
  }
}


/*DIGITAL MARKETING PAGE ICON NEW CSS */

.service-detail-megaphone {
  width: 100px;
  height: 100px;
  position: relative;
  transform: rotate(-15deg);
}

.service-detail-megaphone-body {
  width: 60px;
  height: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 0 30px 30px 0;
  position: absolute;
  left: 0;
  top: 35px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 3px solid #1e293b;
}

.service-detail-megaphone-window {
  width: 20px;
  height: 12px;
  background: #1e293b;
  border-radius: 6px;
  position: absolute;
  left: 12px;
  top: 44px;
}

.service-detail-megaphone-fin {
  position: absolute;
  right: -40px;
  top: 25px;
}

.service-detail-megaphone-fin::before,
.service-detail-megaphone-fin::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 4px;
  background: linear-gradient(90deg, #ffffff, transparent);
  border-radius: 3px;
  animation: pulse 1.5s infinite ease-in-out;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.service-detail-megaphone-fin::before {
  top: 0;
}

.service-detail-megaphone-fin::after {
  top: 12px;
  width: 24px;
  animation-delay: 0.3s;
}

.service-detail-megaphone-fin-left::before {
  top: 24px;
  width: 18px;
  animation-delay: 0.6s;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.4;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.1);
  }
}


/*VIDEO EDITING PAGE ICON NEW CSS */

/* Video Camera Icon */
.service-detail-video-camera {
  width: 120px;
  height: 120px;
  position: relative;
  transform: rotate(-10deg);
}

.service-detail-camera-body {
  width: 80px;
  height: 50px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 12px;
  position: absolute;
  left: 20px;
  top: 35px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border: 4px solid #1e293b;
}

.service-detail-camera-lens {
  width: 35px;
  height: 35px;
  background: radial-gradient(circle, #1e293b 30%, #475569 70%);
  border-radius: 50%;
  position: absolute;
  left: 42px;
  top: 42px;
  border: 3px solid #0f172a;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
}

.service-detail-camera-lens::after {
  content: '';
  width: 15px;
  height: 15px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 7px;
  animation: record-blink 2s infinite;
}

.service-detail-camera-handle {
  width: 25px;
  height: 15px;
  background: #1e293b;
  border-radius: 8px;
  position: absolute;
  left: 47px;
  top: 20px;
  border: 2px solid #0f172a;
}

.service-detail-camera-recording {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  position: absolute;
  right: 15px;
  top: 25px;
  animation: record-pulse 1.5s infinite;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

@keyframes record-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

@keyframes record-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}


/*SOCIAL MEDIA MARKETING PAGE NEW CSS */

/* Social Media Phone Icon */
.service-detail-social-media {
  width: 120px;
  height: 120px;
  position: relative;
  transform: rotate(5deg);
}

.service-detail-phone-body {
  width: 60px;
  height: 100px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 15px;
  position: absolute;
  left: 30px;
  top: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border: 3px solid #1e293b;
}

.service-detail-phone-screen {
  width: 50px;
  height: 80px;
  background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 8px;
  position: absolute;
  left: 35px;
  top: 20px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.service-detail-phone-screen::after {
  content: '📱';
  font-size: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
}

.service-detail-notification {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  animation: notification-float 3s infinite ease-in-out;
}

.service-detail-notification-1 {
  background: #ef4444;
  right: 10px;
  top: 20px;
  animation-delay: 0s;
}

.service-detail-notification-2 {
  background: #10b981;
  right: 5px;
  top: 45px;
  animation-delay: 1s;
}

.service-detail-notification-3 {
  background: #f59e0b;
  right: 15px;
  top: 70px;
  animation-delay: 2s;
}

@keyframes notification-float {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-10px) scale(1.2);
    opacity: 1;
  }
}

/*SEO & SMO PAGE ICON NEW CSS */

 .service-detail-seo-smo {
            width: 300px;
            height: 250px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
          }

          .search-graph {
            position: relative;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
            animation: float 3s ease-in-out infinite;
          }

          .search-bar {
            width: 100%;
            height: 25px;
            background: white;
            border-radius: 15px;
            position: relative;
            margin-bottom: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          }

          .search-bar::before {
            content: '';
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            border: 2px solid #667eea;
            border-radius: 50%;
          }

          .search-bar::after {
            content: '';
            position: absolute;
            right: 5px;
            top: 65%;
            width: 6px;
            height: 2px;
            background: #667eea;
            transform: rotate(45deg);
          }

          .graph-container {
            display: flex;
            align-items: end;
            justify-content: space-between;
            height: 80px;
            margin: 15px 0;
          }

          .graph-bar {
            width: 25px;
            background: linear-gradient(to top, #fff, #f0f0f0);
            border-radius: 3px 3px 0 0;
            animation: growUp 2s ease-out infinite;
          }

          .bar-1 { height: 30px; animation-delay: 0.2s; }
          .bar-2 { height: 50px; animation-delay: 0.4s; }
          .bar-3 { height: 70px; animation-delay: 0.6s; }
          .bar-4 { height: 45px; animation-delay: 0.8s; }
          .bar-5 { height: 80px; animation-delay: 1s; }

          .trending-arrow {
            position: absolute;
            top: 50px;
            right: 10px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 15px solid #4ade80;
            animation: bounce 2s ease-in-out infinite;
          }

          .trending-arrow::after {
            content: '';
            position: absolute;
            left: -4px;
            top: 15px;
            width: 8px;
            height: 20px;
            background: #4ade80;
            border-radius: 0 0 3px 3px;
          }

          .social-icons {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
          }

          .social-icon {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            animation: pulse 2s ease-in-out infinite;
          }

          .icon-1 {
            background: linear-gradient(45deg, #3b82f6, #1d4ed8);
            animation-delay: 0s;
          }

          .icon-2 {
            background: linear-gradient(45deg, #ec4899, #be185d);
            animation-delay: 0.3s;
          }

          .icon-3 {
            background: linear-gradient(45deg, #06b6d4, #0891b2);
            animation-delay: 0.6s;
          }

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

          @keyframes growUp {
            0% { transform: scaleY(0); }
            50% { transform: scaleY(1.1); }
            100% { transform: scaleY(1); }
          }

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

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

          /* Responsive design */
          @media (max-width: 768px) {
            .service-detail-seo-smo {
              width: 250px;
              height: 200px;
            }

            .search-graph {
              width: 160px;
              height: 160px;
              padding: 15px;
            }

            .social-icons {
              bottom: -25px;
              gap: 10px;
            }

            .social-icon {
              width: 25px;
              height: 25px;
            }
          }

/*MOBILE DEVELOPMENT PAGE ICON NEW CSS */

 .service-detail-mobile-dev {
            width: 300px;
            height: 250px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
          }

          .mobile-devices {
            position: relative;
            width: 280px;
            height: 220px;
          }

          .phone-container {
            position: absolute;
            left: 20px;
            top: 20px;
            z-index: 2;
          }

          .phone-frame {
            width: 120px;
            height: 180px;
            background: linear-gradient(135deg, #1f2937, #374151);
            border-radius: 25px;
            position: relative;
            box-shadow: 0 15px 35px rgba(31, 41, 55, 0.4);
            animation: phoneFloat 3s ease-in-out infinite;
          }

          .phone-screen {
            position: absolute;
            top: 15px;
            left: 10px;
            width: 100px;
            height: 140px;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            border-radius: 15px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            padding: 15px;
          }

          .app-icon {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            animation: appPulse 2s ease-in-out infinite;
          }

          .app-1 {
            background: linear-gradient(45deg, #ef4444, #dc2626);
            animation-delay: 0.2s;
          }

          .app-2 {
            background: linear-gradient(45deg, #10b981, #059669);
            animation-delay: 0.4s;
          }

          .app-3 {
            background: linear-gradient(45deg, #f59e0b, #d97706);
            animation-delay: 0.6s;
          }

          .app-4 {
            background: linear-gradient(45deg, #8b5cf6, #7c3aed);
            animation-delay: 0.8s;
          }

          .phone-button {
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 4px;
            background: #6b7280;
            border-radius: 2px;
          }

          .tablet-container {
            position: absolute;
            right: 0;
            top: 0;
            z-index: 1;
            opacity: 0.8;
          }

          .tablet-frame {
            width: 140px;
            height: 100px;
            background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
            border-radius: 15px;
            position: relative;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            animation: tabletFloat 3s ease-in-out infinite reverse;
          }

          .tablet-screen {
            position: absolute;
            top: 8px;
            left: 8px;
            width: 124px;
            height: 84px;
            background: #1f2937;
            border-radius: 8px;
            padding: 10px;
          }

          .code-lines {
            display: flex;
            flex-direction: column;
            gap: 6px;
          }

          .code-line {
            height: 4px;
            background: #4ade80;
            border-radius: 2px;
            animation: codeType 3s ease-in-out infinite;
          }

          .line-1 {
            width: 80%;
            animation-delay: 0.5s;
          }

          .line-2 {
            width: 60%;
            animation-delay: 1s;
          }

          .line-3 {
            width: 90%;
            animation-delay: 1.5s;
          }

          .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
          }

          .gear {
            position: absolute;
            width: 25px;
            height: 25px;
            border: 3px solid #6366f1;
            border-radius: 50%;
            animation: rotate 4s linear infinite;
          }

          .gear::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            background: #6366f1;
            border-radius: 50%;
          }

          .gear-1 {
            top: 10px;
            right: 30px;
            animation-delay: 0s;
          }

          .gear-2 {
            bottom: 40px;
            left: 10px;
            width: 20px;
            height: 20px;
            animation-delay: 2s;
            animation-direction: reverse;
          }

          .download-arrow {
            position: absolute;
            bottom: 10px;
            right: 40px;
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 12px solid #10b981;
            animation: downloadBounce 2s ease-in-out infinite;
          }

          .download-arrow::after {
            content: '';
            position: absolute;
            left: -2px;
            top: -15px;
            width: 4px;
            height: 10px;
            background: #10b981;
          }

          @keyframes phoneFloat {
            0%, 100% { transform: translateY(0px) rotateY(0deg); }
            50% { transform: translateY(-8px) rotateY(5deg); }
          }

          @keyframes tabletFloat {
            0%, 100% { transform: translateY(0px) rotateY(0deg); }
            50% { transform: translateY(-6px) rotateY(-3deg); }
          }

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

          @keyframes codeType {
            0% { width: 0%; }
            50% { width: 100%; }
            100% { width: 100%; }
          }

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

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

          /* Responsive design */
          @media (max-width: 768px) {
            .service-detail-mobile-dev {
              width: 250px;
              height: 200px;
            }

            .mobile-devices {
              width: 230px;
              height: 180px;
            }

            .phone-frame {
              width: 100px;
              height: 150px;
            }

            .phone-screen {
              width: 80px;
              height: 110px;
              padding: 10px;
            }

            .app-icon {
              width: 25px;
              height: 25px;
            }

            .tablet-frame {
              width: 120px;
              height: 85px;
            }

            .tablet-screen {
              width: 104px;
              height: 69px;
            }
          }