/*
Theme Name: the-school-management
Theme URI: https://weblizar.com/
Author: Weblizar
Author URI: https://weblizar.com/
Description: The School Management
Version: 1.9.1.2
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: the-school-management
*/

/* Hide all sub-menus by default */

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children > .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    background-color: #fff; /* match your theme */
    min-width: 200px;
    padding: 0;
}

/* Show on hover */
.menu-item-has-children:hover > .sub-menu {
    display: block;
}

/* Sub-menu of a sub-menu (3rd level) */
.sub-menu .menu-item-has-children > .sub-menu {
    top: 0;
    left: 100%;
    display: none;
}

/* Show third-level menu on hover */
.sub-menu .menu-item-has-children:hover > .sub-menu {
    display: block;
}

.sub-menu {
    transition: opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
}
.sub-menu {
    list-style:none;
}





#menu-main-menu{
    list-style:none;
    display:flex;
}
.menu-toggle {
    display:none;
}
@media (max-width: 991px) { 
    
   .menu-toggle {
    display:block;
}
    .topnav{
        display:none; 
    }
    
    .bottomnav-right.hidden {
  display: block;
}
}


/*Main CSS Start*/

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

::selection {
  background: var(--brand-dark);
  color: #fff;
  /* white text */
}

:root {
  /* === Primary Brand Colors === */
  --brand: #9250e2;
  /* Main brand color (hero / buttons) */
  --brand-dark: #28b9e0;
  /* Brand hover / secondary */
  --brand-yellow: #ffdf7e;
  /* Yellow accent (hover / highlights) */
  --btn-red: #ff6b6b;
  /* Danger button color */

  /* === Typography Colors === */
  --ink: #0b2239;
  /* Primary text (headings) */
  --muted: #6c7a87;
  /* Paragraph / secondary text */

  /* === Backgrounds & Surfaces === */
  --card: #ffffff;
  /* Cards, white surfaces */
  --soft: #f5f8fb;
  /* Light background / page background */

  /* === Accents & States === */
  --accent: #ffdf7e;
  /* Accent color (e.g., success, highlights) */
  /* --accent: #12d18e; */
  /* Alternate accent: green success */

  /* === UI Utilities === */
  --shadow: 0 10px 30px rgba(11, 34, 57, 0.08);
  /* Soft shadows */
  --radius: 18px;
  /* Global border radius */

  /* === Suggested Additions === */
  --text-light: #ffffff;
  /* Light text on dark bg */
  --text-dark: #121212;
  /* Dark mode text */
  --bg-dark: #0b2239;
  /* Optional dark mode background */

  --pattern-color: rgba(64, 150, 255, 0.07);
  --bg-light: #f4f9ff;
  --bg-dark: #121212;


  --brand: #9250e2;
  --btn-red: #ff6b6b;

  --ink: #0b2239;
  --muted: #6c7a87;
  --card: #ffffff;
  --soft: #f5f8fb;
  --accent: #ffdf7e;
  --shadow: 0 10px 30px rgba(11, 34, 57, 0.08);
  --radius: 18px;

  --sidebar-bg-light: #ffffff;
  --sidebar-bg-dark: #2c2c2c;
}


html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:
    var(--ink);
  overflow-x: hidden;
  position: relative;
  width: 100vw;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background-color: var(--bg-light);
  background-image: repeating-radial-gradient(circle at 0 0,
      var(--pattern-color) 0,
      var(--pattern-color) 2px,
      transparent 2px,
      transparent 20px);

}

h1,
h2,
h3,
h4,
.brand-font {
  font-family: 'Raleway', Segoe UI, Arial, sans-serif;
}

/* dark mood */

/* === DARK MODE === */
body.dark-mode {
  background-color: var(--bg-dark);
  color: var(--text-dark);
}

body.dark-mode .blog-post {
  background-color: #2a2a2a;
  color: var(--text-dark);
}

body.dark-mode .blog-post h2 {
  color: var(--brand-yellow);
}

body.dark-mode .blog-post .text-muted {
  color: #aaa;
}

body.dark-mode .sidebar {
  background-color: var(--sidebar-bg-dark);
  color: var(--text-dark);
}

body.dark-mode .sidebar h5,
body.dark-mode .sidebar a,
body.dark-mode .recent-posts a {
  color: var(--brand-yellow);
}

body.dark-mode .sidebar a:hover,
body.dark-mode .recent-posts a:hover {
  color: var(--brand-dark);
}

body.dark-mode .comment-section {
  background-color: #2a2a2a;
  color: var(--text-dark);
}

body.dark-mode input,
body.dark-mode textarea {
  background-color: #333;
  color: #fff;
  border-color: #555;
}

body.dark-mode input:focus,
body.dark-mode textarea:focus {
  border-color: var(--brand-yellow);
  box-shadow: 0 0 8px rgba(255, 223, 126, 0.4);
}

body.dark-mode .page-link {
  color: var(--brand-yellow);
}

body.dark-mode .page-link:hover {
  background-color: var(--brand-dark);
  color: #fff;
}

body.dark-mode .page-item.active .page-link {
  background-color: var(--brand-yellow);
  color: #000;
}

body.dark-mode .btn-primary {
  background-color: var(--brand-yellow);
  color: #000;
}

body.dark-mode .btn-primary:hover {
  background-color: var(--brand);
  color: #fff;
}

/* === DARK MODE TEXT FIX === */
body.dark-mode {
  background-color: var(--bg-dark);
  color: var(--text-dark);
  /* Sets default text to light */
}

/* Force all child elements to inherit light text */
body.dark-mode .blog-post,
body.dark-mode .sidebar,
body.dark-mode .comment-section {
  color: var(--text-dark);
}

/* Headings */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
  color: var(--brand-yellow);
  /* or var(--text-dark) if you want consistent */
}

/* Muted Text */
body.dark-mode .text-muted {
  color: #aaa !important;
}

/* Links */
body.dark-mode a {
  color: var(--brand-yellow);
}

body.dark-mode a:hover {
  color: var(--brand-dark);
}

body.dark-mode p,
body.dark-mode li,
body.dark-mode span,
body.dark-mode strong {
  color: var(--bg-light);
}

/* ==============================
   Navbar Default Styling
============================== */

nav {
  background-color: white;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.topnav {
  overflow: hidden;
  width: 100%;
  top: 0;
}

.bottomnav {
  top: 0;
  width: 100%;
  background: white;
  position: relative;
  z-index: 100;
}

.topnav a,
.bottomnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 10px 5px;
  text-decoration: none;
  font-size: 14px;
  min-width: 20px;
  transition: box-shadow 1s ease;
}

.topnav a i {
  float: left;
  line-height: 20px;
  margin-right: 10px;
  color: #ffffff;
}

.bottomnav a {
  color: var(--brand-dark);
  transition: all 0.10s ease-in-out;
  margin: 2px;
}

.bottomnav-right a {
  position: relative;
  text-decoration: none;
  color: var(--brand-dark);
  /* font-size: 1.6rem; */
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
  z-index: 1;

}

.bottomnav-right a:hover {
  color: var(--bg-light)
}

.bottomnav-right a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--brand-dark);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.bottomnav-right a:hover::before,
.bottomnav-right a.active::before {
  transform: scaleX(1);
}

.topnav a.active,
.bottomnav a.active {
  color: var(--card);
}

.topnav-right {
  float: right;
  position: relative;
}

.bottomnav-right {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 5px;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.bottomnav-right>a {
  position: relative;
  padding: 10px 5px;
  text-decoration: none;
  font-weight: 500;
  color: var(--brand-dark);
  transition: all 0.3s;
}

.bottomnav {
  position: static;
  max-width: 900px;
  padding: 0px 15px;
  margin: 0 auto;
}

.topnav-right:before {
  position: absolute;
  content: '';
  left: -80px;
  top: 0px;
  border-top: 62px solid var(--brand-dark);
  border-left: 80px solid transparent;
}

.topnav {
  position: static;
  max-width: 100%;
  padding: 0px;
  margin: 0 auto;
}

.topnav-right {
  background: var(--brand-dark);
  ;
}

.logo {
  position: absolute;
  top: 20px;
  left: 5%;
}

.logo img {
  display: inline-block;
  height: 80px;
  width: auto;
  vertical-align: center;
}

.black-bar {
  position: absolute;
  width: 50%;
  height: 60px;
  background: var(--brand-dark);
  top: 0;
  right: 0;
  z-index: -1;
}

.bottomnav-right>a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--brand-dark);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.bottomnav-right>a:hover::before,
.bottomnav-right>a.active::before {
  transform: scaleX(1);
  color: var(--bg-light);
}

/* Dropdown Container */
/* Dropdown Base */
.dropdown {
  position: relative;
  z-index: 999;
}

.dropbtn {
  background: none;
  border: none;
  font-size: 16px;
  color: var(--brand-dark);
  cursor: pointer;
  padding: 0.5rem 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s;
}

.dropbtn i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropbtn i {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  /* overflow: hidden; */
  z-index: 1000;
}

.dropdown-content li a {
  display: block;
  padding: 10px 15px;
  color: var(--brand-dark);
  text-decoration: none;
  font-size: 15px;
  transition: background 0.3s ease;
}

.dropdown-content li a:hover {
  /* background: var(--brand-dark);
  color: var(--bg-light); */
}

/* Show dropdown on hover (desktop) */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Responsive */
@media (max-width: 991px) {
  .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    background: #f9f9f9;
    margin-left: 15px;
  }

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

  .dropbtn {
    width: 100%;
    text-align: left;
  }

  .dropbtn i {
    margin-left: auto;
  }
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  position: absolute;
  top: 30px;
  right: 15px;
  color: var(--brand);
}

@media (max-width: 991px) {
  .menu-toggle {
    display: block;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    position: absolute;
    top: 35px;
    right: 15px;
    /* color: var(--brand-dark); */
  }

  /* Hide menu by default */
  .bottomnav-right {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    transform-origin: top;
    transition: all 0.4s ease;
  }

  /* Show mobile menu */
  .bottomnav-right.show {
    display: flex !important;
    animation: slideDownMenu 0.4s ease forwards;
  }

  /* Smooth slide for mobile menu */
  @keyframes slideDownMenu {
    from {
      opacity: 0;
      transform: translateY(-15px);
    }

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

  /* Mobile list layout */
  .bottomnav-right ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .bottomnav-right ul li {
    width: 100%;
  }

  .bottomnav-right ul li a,
  .bottomnav-right ul li .dropbtn {
    width: 100%;
    display: block;
    padding: 10px 15px;
    text-align: left;
  }

  .dropdown-content li a i {
    margin-right: 8px;
    color: var(--brand-dark);
  }

  /* Dropdown animation base */
  .dropdown-content {
    position: static;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    background: #f9f9f9;
    box-shadow: none;
    transition: all 0.4s ease;
  }

  /* Dropdown open */
  .dropdown.active .dropdown-content {
    max-height: 500px;
    /* adjust if more links */
    opacity: 1;
  }

  /* Rotate dropdown arrow */
  .dropdown .dropbtn i {
    transition: transform 0.3s ease;
  }

  .dropdown.active .dropbtn i {
    transform: rotate(180deg);
  }
}



/* ==============================
   Smooth Scroll
============================== */

/* Hero Container */
.hero-premium {
  position: relative;
  color: #fff;
  padding: 120px 0;
  overflow: hidden;
  height: auto;
  margin-top: 80px;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #9250e2, #7dd8ff);
}

/* Background Blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(80px);
  animation: floatBlob 8s ease-in-out infinite alternate;
  z-index: 0;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #00ffc3, #00a3ff);
  top: -50px;
  left: -50px;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #ff00c8, #ff8c00);
  bottom: 100px;
  right: 50px;
  animation-duration: 10s;
}

.blob-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #ffec00, #00fffa);
  top: 200px;
  right: -100px;
  animation-duration: 12s;
}

@keyframes floatBlob {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-30px) rotate(15deg);
  }

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

/* Glass Overlay */
.glass {
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2rem;
}

/* Pill */
.pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.pill:hover {
  transform: scale(1.05);
}

/* Hero Text */
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
}

.highlight {
  background: linear-gradient(90deg, #00ffc3, #00a3ff, #ff00c8);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  animation: gradientText 5s ease infinite;
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.highlight h4 {
  background: linear-gradient(90deg, #00ffc3, #00a3ff, #ff00c8);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 5s ease infinite;
}

.hero-subtitle {
  font-size: 1.125rem;
  margin: 20px 0;
  opacity: 0.85;
}

/* Buttons */
.hero-buttons .btn {
  border-radius: 50px 15px;
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.4s ease;
}

.btn.hover-glow:hover {
  box-shadow: 0 0 40px #00ffc3, 0 0 80px #00ffc3;
  transform: translateY(-5px);
}

/* Floating Mockups */
.hero-mockup {
  height: 600px;
  /* increased height to accommodate bigger cards */
  position: relative;
  z-index: 1;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 5px 5px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease-in-out, box-shadow 0.5s ease, z-index 0s;
  z-index: 1;
}

/* Hover effect */
.floating-card:hover {
  transform: translateY(-25px) rotate(0deg);
  /* slightly higher lift */
  box-shadow: 0 10px 50px rgba(77, 77, 77, 0.437);
  z-index: 10;
}

/* Card images */
.floating-card img {
  width: 100%;
  display: block;
  border-radius: 1rem;
}

/* Individual cards size */
.card-1 {
  top: 0;
  right: 20%;
  width: 300px;
  /* increased from 250px */
  transform: rotate(-5deg);
}

.card-2 {
  top: 120px;
  right: 0;
  width: 320px;
  /* increased from 270px */
  transform: rotate(3deg);
}

.card-3 {
  top: 270px;
  right: 35%;
  width: 280px;
  /* increased from 230px */
  transform: rotate(-2deg);
}

/* Responsive */
@media(max-width:991px) {
  .hero-mockup {
    height: auto;
    margin-top: 50px;
  }

  .card-1,
  .card-2,
  .card-3 {
    position: static;
    width: 90%;
    /* slightly bigger on mobile */
    margin: 20px auto;
    transform: rotate(0deg);
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}


@media(max-width:576px) {
  .glass {
    padding: 1rem;
  }

  .blob-1,
  .blob-2,
  .blob-3 {
    width: 200px;
    height: 200px;
  }
}



/* SECTION UTILS */
section {
  scroll-margin-top: 90px
}

.section-title {
  font-weight: 800
}

.section-sub {
  color: var(--muted)
}


/* CARDS & HOVERS */
.card {
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow)
}

.card.hover-rise {
  transition: transform .25s ease, box-shadow .25s ease
}

.card.hover-rise:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(11, 34, 57, .12)
}

.icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef7ff;
  color: var(--brand);
}

.feature-subtitle {
  font-size: 1.1rem;
  color: #475569;
  max-width: 700px;
  margin: 10px auto 0;
  padding-bottom: 30px;
  line-height: 1.6;
  font-weight: 500;
  opacity: 0.9;
  animation: fadeIn 1.5s ease-in-out;
}

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

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


/* feature-hero */
.feature-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
  padding: 0 5%;
}

.feature-hero-text {
  max-width: 600px;
  z-index: 2;
  padding-left: 5%;
}

.feature-hero-text h1 {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand));
  padding-bottom: 10px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.feature-hero-text p {
  font-size: 1.2rem;
  margin-top: 15px;
  color: var(--muted);
  margin-bottom: 30px;
}

.feature-hero-text .btn:hover {
  transform: scale(1.05);
  background: #1e40af;
}

.feature-hero-img {
  position: relative;
  animation: float 6s ease-in-out infinite alternate;
}

.feature-hero-img img {
  width: 700px;
  max-width: 100%;
  filter: drop-shadow(10px 20px 30px rgba(59, 130, 246, 0.7));
}

@keyframes float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-20px);
  }
}

.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: #fff;

  /* Gradient Background */
  background: linear-gradient(135deg, var(--bg-light), var(--brand-dark));

  /* Border Glass + Glow */
  border: 5px solid rgba(255, 255, 255, 0.854);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(59, 130, 246, 0.4);

  /* Premium glass effect */
  backdrop-filter: blur(10px);

  margin: 0 auto 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Floating Glow Circle Animation */
.icon-circle::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  top: -10%;
  left: -10%;
  z-index: 0;
  filter: blur(15px);
  transition: all 0.4s ease;
}

/* Icon Hover Effect */
.feature-card:hover .icon-circle {
  transform: rotate(20deg) scale(1.15);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25), 0 0 30px rgba(147, 51, 234, 0.5);
}

.feature-card:hover .icon-circle::before {
  transform: scale(1.2);
}

/* main features */
.feature-section {
  position: relative;
  background: var(--soft);
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
  border: 2px solid #fff;
  /* or var(--brand-dark) */
}

.feature-card:hover .icon-circle-bg {
  transform: rotate(15deg) scale(1.15);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: var(--soft);
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.35s ease;
}

.icon-circle-bg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: var(--muted);
  background: var(--soft);
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.35s ease;
}


.feature-card:hover {
  transform: rotate(15deg) scale(1.1);
  box-shadow: 0 0 20px var(--brand-dark);
  border: 2px solid var(--brand-dark);
}

.feature-card:hover .icon-circle {
  transform: rotate(15deg) scale(1.1);
  box-shadow: 0 0 20px var(--brand-dark);
  border: 2px solid var(--soft);
}

/* Responsive */
@media (max-width: 576px) {
  .feature-card {
    padding: 15px;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  .feature-hero-text h1 {
    font-size: 2rem;
  }
}

/* tesimonial features */
/* Client Feedback Cards */
.client-feedback-section {
  background-color: var(--bg-light);
}

.feature-feedback-card {
  background-color: var(--accent);
  /* Light card background */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 5px solid var(--btn-red);
  /* red bottom border */
}

.feature-feedback-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-bottom: 5px solid var(--btn-red);
  /* brand color */
  border-right: 5px solid var(--brand);
  /* red accent */
  background-color: var(--brand-dark);
  /* brand-dark background on hover */
  color: #f3f4f6;
  /* text color on hover */
}

.feature-feedback-card p {
  font-style: italic;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.feature-feedback-card:hover p {
  color: #f3f4f6;
}

.feature-feedback-card small {
  font-size: 0.85rem;
  color: var(--brand);
  /* star color */
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .feature-feedback-card {
    padding: 15px;
  }
}



/*Feature FAQ */
.faq-section {
  background-color: #f9fafb;
}

.accordion-button {
  background-color: #fff;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem !important;
  transition: background 0.3s ease;
}

.accordion-button img {
  width: 24px;
  height: 24px;
}

.accordion-button span {
  flex: 1;
  font-size: 1rem;
  text-align: left;
}

.accordion-button i.faq-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
  color: #0c4a6e;
}

.accordion-button:not(.collapsed) i.faq-icon {
  transform: rotate(45deg);
}

.accordion-body {
  background-color: #ffffff;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  color: #4b5563;
  border-top: 1px solid #e2e8f0;
}

.accordion-item {
  border: none;
}

/* Responsive Tweaks */
@media (max-width: 576px) {
  .accordion-button {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .accordion-button img {
    width: 20px;
    height: 20px;
  }
}

/* frature page CTA */
.cta-section {
  min-height: 320px;
  /* Smooth background gradient */
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  /* For vertical centering */
  display: flex;
  justify-content: center;
  text-align: center;
  background: var(--brand-dark);

}

.cta-section h2 {
  font-weight: 900;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  color: var(--bg-light);
}

.cta-section p {
  font-size: 1.25rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}

.feature-cta-img {
  width: 50%;
  height: 50%;
}

.cta-btn:hover,
.cta-btn:focus {
  background-color: #1e40af;
  color: #f3f4f6;
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.6);
  transform: translateY(-3px);
  text-decoration: none;
}

/* Responsive typography */
@media (max-width: 576px) {
  .cta-section h2 {
    font-size: 1.8rem;
  }

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

/* ===================== */
/* Titles underline */
/* ===================== */

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  font-size: 1.1rem;
  color: #555;
}

/* Premium Button */
.btn-premium {
  background: linear-gradient(90deg, #2575fc, #6a11cb);
  color: #fff;
  padding: 12px 28px;
  /* border-radius: 50px; */
  border-radius: 50px 15px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(37, 117, 252, 0.3);
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(37, 117, 252, 0.5);
}

/* Feature Cards */
.feature-cards {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.feature-cards .card {
  flex: 1 1 calc(33% - 10px);
  min-width: 150px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.feature-cards .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.feature-cards .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.feature-cards h5 {
  font-weight: 700;
  margin-bottom: 6px;
  color: #333;
}

.feature-cards p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* Image */
.image-box {
  position: relative;
  display: inline-block;
}

.image-box img {
  border-radius: 20px;
  transition: transform 0.5s ease;
}

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

/* pricing  Cards*/
#pricing {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-dark), white);
  position: relative;
  padding: 60px 20px;
  /* safe padding for mobile */
}

/* Floating shapes */
.floating-shape {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.shape1 {
  background: radial-gradient(circle, #ff6a00, #ee0979);
  top: -40px;
  left: -40px;
}

.shape2 {
  background: radial-gradient(circle, #24c6dc, #514a9d);
  bottom: -40px;
  right: -40px;
}

@keyframes float {

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

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

/* Gradient headers animation */
.glowing-header {
  background-size: 300% 300%;
  animation: gradientMove 4s ease infinite;
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Badge glowing */
.glowing-badge {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  animation: badgeGlow 2s infinite alternate;
}

@keyframes badgeGlow {
  0% {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  }

  100% {
    box-shadow: 0 0 30px rgba(255, 255, 255, 1);
  }
}

/* Gradient buttons */
.btn-gradient {
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  color: #fff;
  transition: all 0.3s ease;
  margin-bottom: 0;
  display: flex;
}

.btn-gradient:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  color: var(--bg-light);
}

/* Card hover lift */
.pricing-card {
  transition: all 0.4s ease;

}

.pricing-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.price {
  background: linear-gradient(90deg, green, #10140e);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
}

.glowing-header {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Contact Card Blur */
.contact-card {
  backdrop-filter: saturate(140%) blur(6px);
}

/* Pricing list design */
.pricing-card ul li {
  position: relative;
  padding-left: 30px;
  /* space for icon */
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  transition: all 0.3s ease;
}

/* Custom bullet icon */
.pricing-card ul li::before {
  content: "\f00c";
  /* Font Awesome check icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--brand, #6a11cb);
  /* brand color */
  font-size: 14px;
  background: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

/* Hover effect */
.pricing-card ul li:hover {
  transform: translateX(5px);
  color: var(--brand-dark, #2575fc);
}

/* Medium screens */
@media (max-width: 992px) {
  #pricing {
    padding: 50px 15px;
  }

  .floating-shape {
    width: 90px;
    height: 90px;
  }

  .shape1 {
    top: -30px;
    left: -30px;
  }

  .shape2 {
    bottom: -30px;
    right: -30px;
  }
}

/* Small screens */
@media (max-width: 768px) {
  #pricing {
    padding: 40px 10px;
  }

  .floating-shape {
    width: 70px;
    height: 70px;
  }

  .shape1 {
    top: -20px;
    left: -20px;
  }

  .shape2 {
    bottom: -20px;
    right: -20px;
  }

  .pricing-card {
    margin-bottom: 30px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  #pricing {
    padding: 30px 5px;
  }

  .pricing-card .card-header {
    font-size: 1rem;
    padding: 0.5rem 0;
  }

  .pricing-card .card-body p.display-6 {
    font-size: 1.5rem;
  }

  .floating-shape {
    width: 50px;
    height: 50px;
  }

  .shape1 {
    top: -15px;
    left: -15px;
  }

  .shape2 {
    bottom: -15px;
    right: -15px;
  }
}

/* MEDIA */
@media (max-width: 575.98px) {
  .display-4 {
    font-size: 2rem
  }

  .hero-illu {
    min-height: 180px
  }
}

/* Offer Card */
/* Top Offer Strip */
.offer-strip {
  width: 100%;
  background: #ffcc00;
  color: #000;
  text-align: center;
  padding: 10px 0;
  font-weight: 500;
  font-size: 14px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.offer-strip a {
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

.offer-strip a:hover {
  text-decoration: underline;
}

/* Card Styling */
.offer-card {
  position: relative;
  background: linear-gradient(135deg, #0c1022, #1a2238);

  color: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  padding: 30px 20px 60px;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.offer-card:hover {
  transform: scale(1.03) rotate(-1deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

/* Ribbon */
.offer-card .ribbon {
  position: absolute;
  top: 15px;
  right: -35px;
  width: 110px;
  height: 35px;
  background: linear-gradient(45deg, #f9d423, #ff4e50);
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

/* Icon */
.offer-card .offer-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 45px;
  height: 45px;
  background: var(--brand-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  z-index: 2;
  animation: bounce 1.5s infinite;
}

.offer-card .offer-icon svg {
  width: 22px;
  height: 22px;
  fill: #000;
}

@keyframes bounce {

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

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

/* Gradient Heading */
.offer-card h2 {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #f9d423, #ff4e50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  margin-top: 40px;
}

/* Card Description */
.offer-card p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* Button */
.offer-btn {
  background: linear-gradient(45deg, #f9d423, #ff4e50);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.offer-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(249, 212, 35, 0.5);
}

/* Section Heading */
.section-heading {
  text-align: center;
  color: #fff;
  margin-top: 60px;
  padding-top: 60px;
}

.section-heading h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

/* ================= */
/* Custom Liceness */
/* ================= */

.license-section {
  background: linear-gradient(135deg, var(--brand-dark));
  color: var(--bg-dark);
  padding: 100px 20px;
  border-radius: 0 0 0px 0px;
  width: 100%;

  position: relative;
  overflow: hidden;
}

.license-section h2 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wordAppear 0.8s forwards;
  font-size: 2rem;
  font-weight: 900;
}

.license-section h2 span:nth-child(1) {
  animation-delay: 0.2s;
}

.license-section h2 span:nth-child(2) {
  animation-delay: 0.5s;
}

.license-section h2 span:nth-child(3) {
  animation-delay: 0.8s;
}

.license-section h2 span:nth-child(4) {
  animation-delay: 1.1s;
}

.license-section h2 span:nth-child(5) {
  animation-delay: 1.4s;
}

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


.contact-call {
  margin-top: 20px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-call svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.license-feature-card {
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: white;
  min-width: 200px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

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

.feature-card i {
  font-size: 1.8rem;
}

.feature-title {
  font-weight: 700;
  font-size: 1.2rem;
}

.feature-subtitle {
  font-size: 0.95rem;
  opacity: 0.85;
}

.license-img img {
  max-width: 100%;
  border-radius: 25px;
  transition: transform 0.3s;
}

.license-img img:hover {
  transform: scale(1.02);
}

/* Countries */
.country {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  padding: 5px 12px;
  border-radius: 25px;
  border-bottom: 2px solid var(--brand-dark);
  margin: 3px;
  opacity: 0;
  transform: translateY(15px);
  animation: countryAppear 0.5s forwards;
}

.country img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

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

/* --- Designer Premium Footer --- */
/* Footer Base */
.footer {
  background: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSD5vquVITeBtyEpjKJohZ4p6wl-D-0CEdTsQ&s') no-repeat center center/cover;
  color: #eee;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  padding-top: 3rem;
  padding-bottom: 1.5rem;
}


@keyframes float {
  0% {
    transform: translateY(0);
  }

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

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

.float-animate {
  animation: float 3s ease-in-out infinite;
}


/* Optional overlay for better text contrast */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 0;
}

.footer>.container {
  position: relative;
  z-index: 1;
}

/* Headings */
.footer h4,
.footer h5,
.footer h6 {
  font-weight: 600;
  color: var(--bg-light);
}

/* Paragraphs and links */
.footer p,
.footer ul li {
  color: #ccc;
  line-height: 1.6;
  font-size: 0.9rem;
}

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

.footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #f0ad4e;
  /* Bootstrap warning color or customize */
}

/* Heading links style */
.footer h4 a,
.footer h5 a {
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.footer h4 a:hover,
.footer h5 a:hover {
  color: #f0ad4e;
  border-bottom-color: #f0ad4e;
}

.footer ul li {
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.footer ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #f0ad4e;
  font-size: 1.2em;
  line-height: 1;
}

/* Hover effect on list items */
.footer ul li:hover {
  background-color: rgba(240, 173, 78, 0.5);
  color: #f0ad4e;
}

.footer ul li:hover a {
  color: #f0ad4e;
}

/* Ensure links inside li are styled */
.footer ul li a {
  color: inherit;
  /* inherit color from li */
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Social Icons */
.footer .d-flex.gap-3 a {
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.footer .d-flex.gap-3 a:hover {
  background-color: #f0ad4e;
  /* Bootstrap warning */
  color: #212529;
}

/* Contact icons spacing */
.footer i.me-2 {
  color: #f0ad4e;
  font-size: 1.1rem;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.footer p:hover i.me-2 {
  transform: scale(1.2) rotate(10deg);
  color: #ffc107;
}

/* Newsletter input and button */
.footer input.form-control-sm {
  border-radius: 0.25rem;
}

.footer button.btn-warning {
  border-radius: 0.25rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.footer button.btn-warning:hover {
  background-color: #d89612;
  color: #fff;
}

/* Visitor counter styling */
#flipCounter {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.5rem;
  color: #fff;
  background: linear-gradient(135deg, #f0ad4e, #d89612);
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  box-shadow: 0 0 10px rgba(208, 144, 20, 0.7);
  display: inline-block;
  letter-spacing: 0.2em;
  user-select: none;
  transition: transform 0.3s ease;
  text-align: center;
  min-width: 80px;
}

#flipCounter:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.9),
    0 0 30px rgba(255, 255, 255, 0.5);
}

/* Footer Bottom */
.footer .border-top {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.footer .small {
  color: #bbb;
}

.footer .small a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .small a:hover {
  color: #f0ad4e;
}


@media (max-width: 576px) {

  .footer p,
  .footer ul li {
    font-size: 0.85rem;
  }

  #flipCounter {
    font-size: 1.2rem;
    padding: 0.4rem 1rem;
  }
}


/* ------------- */
.transition {
  transition: all 0.3s ease-in-out;
}

.btn-light:hover {
  background-color: #ffffff;
  color: #00b7f1;
  transform: scale(1.05);
}

/* card */
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* card hover */
.blog-card a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card a:hover {
  color: #0056b3;
}

.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}

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

.blog-card img {
  height: 200px;
  object-fit: cover;
}

.blog-card .card-body {
  padding: 1.2rem;
}

.blog-card .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blog-card .card-text {
  font-size: 0.9rem;
  color: #555;
}

.blog-card a {
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.blog-card a:hover {
  color: #0056b3;
}

/* youtube section */
.youtube-section {
  position: relative;
}

.youtube-section-container {
  width: 100%;
  margin: auto;
}

.youtube-carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.youtube-carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease;
}

.youtube-card {
  flex: 0 0 23%;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.yt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(45deg, #ff0000, #ff4d4d);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 12px 28px;
  border-radius: 50px;
  box-shadow: 0 6px 15px rgba(255, 0, 0, 0.35);
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.yt-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}



/* Subtle Shimmer Effect */
.yt-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.6),
      transparent);
  transition: all 0.5s;
}

.yt-btn:hover::before {
  left: 125%;
}

/* Center Fix */
.text-center {
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .yt-btn {
    font-size: 0.95rem;
    padding: 10px 22px;
  }
}

.youtube-card iframe {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  display: block;
}

.youtube-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.youtube-card.selected {
  outline: 3px solid #ff7eb3;
  box-shadow: 0 20px 50px rgba(255, 126, 179, 0.5);
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50%;
}

#prevBtn {
  left: 10px;
}

#nextBtn {
  right: 10px;
}

.yt-title {
  background: linear-gradient(135deg, #a1dfe5cb, #def4f9);
  /* Gradient background */
  color: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  max-width: 1000px;
  margin: 50px auto;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yt-title:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.yt-title h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 800;
  background: linear-gradient(45deg, #00bfff, #1e90ff, #ff69b4);
  /* background: -webkit-linear-gradient(45deg,  #fff); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.yt-title h4 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: rgba(124, 127, 129, 0.85);
}

.yt-title p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(108, 108, 108, 0.9);
  text-align: justify;
}

/* Responsive */
@media (max-width: 992px) {
  .youtube-card {
    flex: 0 0 48%;
  }

  .youtube-card iframe {
    height: 150px;
  }
}

@media (max-width: 576px) {
  .youtube-card {
    flex: 0 0 90%;
  }

  .youtube-card iframe {
    height: 120px;
  }
}


/*============ youtube section*/
.youtube-section {
  position: relative;
  background: linear-gradient(135deg, #f5f8fb, #ffffff);
  overflow: hidden;
}

/* 
.youtube-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.youtube-card:hover {
  box-shadow: 0 20px 45px rgba(11,34,57,.15);
}

.video-thumb iframe {
  width: 100%;
aspect-ratio: 16/10;
  border: none;
  transition: transform 0.4s ease;
}


.youtube-carousel {
  display: flex;
  overflow-x: scroll;
  scroll-behavior: smooth;
  white-space: nowrap;

  -ms-overflow-style: none; 
  scrollbar-width: none;     
}
.youtube-carousel::-webkit-scrollbar {
  display: none;
}


.youtube-card {
  flex: 0 0 auto;
  width: 280px;
  margin: 0 10px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.youtube-card iframe {
  width: 100%;
  height: 160px;
  border: none;
} */



/* Visible window */
.viewport {
  overflow: hidden;
  border-radius: 12px;
  background: var(--card);
  padding: 12px;
  /* box-shadow: 0 6px 30px rgba(0,0,0,.6); */
}

/* Horizontal track */
.track {
  display: flex;
  gap: 20px;
  align-items: center;
  will-change: transform;
  /* don't allow wrapping */
  flex-wrap: nowrap;
}

.video-item {
  flex: 0 0 320px;
  /* width of each item; adjust responsive below */
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  /* box-shadow: 0 4px 18px rgba(0,0,0,.6); */
}

.video-item iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Responsive sizes */
@media (max-width: 900px) {
  .video-item {
    flex-basis: 280px;
    height: 158px;
  }
}

@media (max-width: 600px) {
  .video-item {
    flex-basis: 220px;
    height: 124px;
  }
}

/* Small control UI */
.controls {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.controls button {
  background: #111827;
  color: #fff;
  border: 1px solid #2b3944;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.controls input[type="range"] {
  width: 160px;
}

.note {
  margin-top: 10px;
  font-size: 13px;
  color: #9aa7b2;
}

/* Floating shapes */
.yt-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
  filter: blur(30px);
  opacity: 0.5;
}

.yt-shape .shape1 {
  width: 300px;
  height: 300px;
  background: var(--brand);
  top: -100px;
  right: 150px;
}

.yt-shape .shape2 {
  width: 250px;
  height: 250px;
  background: var(--brand-dark);
  bottom: -80px;
  left: 100px;
}

.yt-shape .shape3 {
  width: 200px;
  height: 200px;
  background: #ffdf7e;
  bottom: 200px;
  left: 600px;
}


/* Floating shapes animation */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

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

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Card hover with glow */
.youtube-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}


/* ============ section heading */
.section-heading-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding: 40px 20px;
  overflow: hidden;
}

.section-heading-container {
  display: flex;
  justify-content: center;
  /* horizontally center */
  align-items: center;
  /* vertically center (agar height fix ho) */
  margin-bottom: 2rem;
}

.section-heading-bg-icon {
  position: absolute;
  font-size: 120px;
  color: rgba(200, 200, 200, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
  z-index: 0;
  transition: all 0.5s ease;
}

.section-heading-wrapper:hover .section-heading-bg-icon {
  transform: translate(-50%, -50%) rotate(0deg) scale(1.3);
  color: rgba(255, 0, 0, 0.15);
}

.section-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  color: var(--brand);
}

.section-title .highlight {
  background: linear-gradient(90deg, #ff0000, #ff4500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.section-heading-wrapper:hover .section-title .highlight {
  transform: scale(1.1);
}

.section-title::after {
  content: '';
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ff0000, #ff4500);
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.section-heading-wrapper:hover .section-title::after {
  width: 120px;
}

.section-sub {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #555;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.section-heading-wrapper:hover .section-sub {
  color: #ff0000;
  transform: translateY(-3px);
}

/* testimonial card */

/* =============================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

.creative-testimonial--slider {
  background-image: linear-gradient(to bottom, #f7f7ff, #f4f4fb, #f8f7fc, #fbfbfe, #ffffff);
  padding: 50px 0px;
}

.creative-testimonial--slider .testimonial-inner {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial-inner .testimonial-heading {
  text-align: center;
  max-width: 60%;
  margin: auto;
  font-size: 2.813rem;
  line-height: 3.125rem;
  letter-spacing: -1px;
  margin-top: 0px;
  margin-bottom: 50px;
}

.testimonial-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 6%;
}

.slide-avatar img {
  position: relative;
  border-radius: 50%;
  padding: 5px;
  border: 3px solid var(--brand);
}

.slide-avatar .quote {
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 30;
}

.slide-avatar .quote i {
  font-size: 2rem;
  border-radius: 50%;
  border: 2px solid #fff;
  padding: 10px;
  color: #fff;
  background-color: var(--brand-dark);
}

.swiper-slide .swiper-slide--inner {
  padding-left: 15%;
  padding-right: 15%;
  display: flex;
  align-items: center;
  column-gap: 50px;
  position: relative;
  overflow-x: hidden;
}

.swiper-slide--inner .testimonial-detail h1 {}

.swiper-slide--inner .testimonial-detail p {
  margin: 0px;
  color: #242e45;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 5px;
}

.swiper-slide--inner .testimonial-detail span {
  color: var(--brand);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 15px;
  line-height: normal;
}

.company-details--row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;

}

.company-details--row .company-box {
  flex: 0 0 auto;
  width: 33.33333333%;
  padding: 0px 15px;
}

.company-details--row .company-box .company-box-inner {
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
  -webkit-transition: all 350ms cubic-bezier(.37, 0, .63, 1);
  transition: all 350ms cubic-bezier(.37, 0, .63, 1);
  background: #fff;
  text-align: center;
  border-radius: 6px;
}

.company-box-inner .company-box-top {
  padding-top: 10%;
  padding-bottom: 10%;
  border-bottom: 1px solid #dee2e6;
}

.company-box-inner .company-box-top img {
  height: 100px;
  width: auto;
  overflow: hidden;
}

.company-box-inner .company-box-bottom {
  padding: 15px;
}

.company-box-inner .company-box-bottom span {
  font-size: 15px;
  color: #878898;
  line-height: 30px;
}

.company-box-inner .company-box-bottom span strong {
  color: #242e45;
}

/* Responsive Ipad */
@media only screen and (max-width: 981px) {
  body {
    background-color: lightblue;
  }

  .creative-testimonial--slider {
    padding-left: 10px;
    padding-right: 10px;
  }

  .testimonial-inner .testimonial-heading {
    max-width: 100%;
  }

  .swiper-slide .swiper-slide--inner {
    padding-left: 0%;
    padding-right: 0%;
  }

  .swiper-button-next.slide-btns,
  .swiper-button-prev.slide-btns {
    display: none;
  }

  .company-details--row .company-box {
    padding: 0px 5px;
  }
}

/* Responsive Ipad */
@media only screen and (max-width: 460px) {
  .testimonial-inner .testimonial-heading {
    font-size: 1.813rem;
    line-height: 2.125rem;
  }

  .swiper-slide .swiper-slide--inner {
    flex-direction: column;
    text-align: center;
  }

  .company-details--row {
    justify-content: center;
    flex-direction: column;
  }

  .company-details--row .company-box {
    padding: 0px 0px;
    margin-bottom: 20px;
    width: 100%;
  }
}

/* =============================== */

/* --- contact Section --- */
.contact-section {
  padding: 80px 20px;
  background-image: url('./assets/customer-service.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(212, 248, 253, 0.801);
  z-index: -1;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border: 5px dotted var(--brand-dark);
  padding: 30px;
  border-radius: 10px;
}

/* --- Contact Info Styling --- */
.contact-info {
  flex: 1;
  min-width: 300px;
  animation: fadeInLeft 1s ease forwards;
}

.section-subtitle {
  color: var(--brand-dark);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: #333;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00ffc3cb, #00a2ffc0, #ff00c8cb);
  margin-top: 10px;
  border-radius: 2px;
}

/* Info Items */
.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 15px;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.5s ease, background 0.5s ease, box-shadow 0.5s ease;
}

.info-item:hover {
  transform: translateY(-10px) scale(1.02);
  background: linear-gradient(145deg, #00ffc394, #00a2ff94, #ff00c88f);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.info-item i {
  font-size: 32px;
  color: #00a3ff;
  margin-right: 20px;
  flex-shrink: 0;
  transition: transform 0.5s ease, color 0.5s ease, text-shadow 0.5s ease;
}

.info-item:hover i {
  transform: rotate(20deg) scale(1.3) translateY(-5px);
  color: #fff;
  text-shadow: 0 0 10px #fff, 0 0 20px #ff00c8;
}

.info-item h4 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #030303;
  font-weight: 600;
}

.info-item p {
  color: #555;
  line-height: 1.6;
}

/* --- Contact Image Styling --- */
.contact-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
  animation: fadeInRight 1s ease forwards;
  perspective: 1000px;
}

.contact-image img {
  max-width: 100%;
  border-radius: 30px;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.contact-image img:hover {
  transform: rotateY(5deg) rotateX(5deg) scale(1.03);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

/* --- Animations --- */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

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

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

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

/* --- Responsive --- */
@media (max-width: 992px) {
  .contact-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .contact-info,
  .contact-image {
    animation: fadeInUp 1s ease forwards;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

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


/* ---------------------- */
/* App Section */

.app-section {
  position: relative;
  min-height: 80vh;
  background: linear-gradient(135deg, #f9fbff 0%, #eaf6ff 100%),
    url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #2a2a2a;
  padding: 100px 0;
  overflow: hidden;
  z-index: 0;
}

/* ===== Soft White + Gradient Overlay ===== */
.app-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.8), rgba(240, 248, 255, 0.85));
  backdrop-filter: blur(3px);
  z-index: 1;
}

/* ===== Floating Shapes ===== */
.title-shapes {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.shape-circle,
.shape-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
}

.shape-circle.one {
  width: 200px;
  height: 200px;
  top: 8%;
  left: 5%;
  background: radial-gradient(circle, #00bfff55, transparent);
  animation: floatOne 8s ease-in-out infinite alternate;
}

.shape-circle.two {
  width: 160px;
  height: 160px;
  bottom: 12%;
  right: 10%;
  background: radial-gradient(circle, #0072ff55, transparent);
  animation: floatTwo 10s ease-in-out infinite alternate;
}

.shape-blob {
  width: 300px;
  height: 300px;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #ffffff66, transparent);
  animation: floatBlob 6s ease-in-out infinite alternate;
}

/* ===== Floating Animations ===== */
@keyframes floatOne {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(25px);
  }
}

@keyframes floatTwo {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-25px);
  }
}

@keyframes floatBlob {
  from {
    transform: translate(-50%, -50%) scale(1);
  }

  to {
    transform: translate(-50%, -48%) scale(1.1);
  }
}

/* ===== Content Styling ===== */
.app-section .container {
  position: relative;
  z-index: 5;
}

.app-section h1 {
  font-weight: 700;
  font-size: 2.7rem;
  color: #0b2545;
}

.app-section h1 span {
  color: var(--brand-dark);
}

.app-section p {
  font-size: 1.1rem;
  color: #334;
}

.badge-new {
  display: inline-block;
  background: linear-gradient(45deg, #00bfff, #0072ff);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 10px;
  box-shadow: 0 3px 10px rgba(0, 114, 255, 0.3);
}

/* ===== QR + Buttons ===== */
.qr img,
.store-buttons img {
  width: 130px;
  margin: 10px;
  transition: transform 0.3s ease;
}

.qr img:hover,
.store-buttons img:hover {
  transform: scale(1.05);
}

.mockup img {
  width: 240px;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.mockup img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.25));
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .mockup img {
    width: 180px;
  }

  .app-section h1 {
    font-size: 2rem;
  }

  .app-section {
    padding: 70px 0;
  }
}

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

/* Contact Section */
.contact-us {
  /* background: #eaf0ff; */
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: #fdfdff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Left side */
.contact-left {
  flex: 1 1 45%;
}

.contact-left h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.contact-left h2 span {
  color: #4c6ef5;
}

.contact-left p {
  color: #666;
  margin-bottom: 20px;
}

.contact-img {
  max-width: 100%;
  margin-top: 20px;
}

/* Right side */
.contact-right {
  flex: 1 1 45%;
}

.contact-right form {
  display: flex;
  flex-direction: column;
}

.contact-right label {
  margin: 10px 0 5px;
  font-weight: 500;
  color: #333;
}

.contact-right input,
.contact-right textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.contact-right input:focus,
.contact-right textarea:focus {
  border-color: #4c6ef5;
  outline: none;
}

.contact-right button {
  background: #4c6ef5;
  border: none;
  color: white;
  padding: 12px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-right button:hover {
  background: #3751c5;
}

/* Office Info */
.office-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
  gap: 30px;
}

.office-box {
  flex: 1 1 45%;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.office-box h4 {
  margin-bottom: 10px;
  color: #4c6ef5;
}

.office-box p {
  margin: 5px 0;
  color: #444;
}

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

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

  .office-info {
    flex-direction: column;
  }
}

.features-modern {
  padding: 120px 20px;
  background: linear-gradient(135deg, #f9f9ff, #eef3ff);
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}


.features-modern::before,
.features-modern::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(155, 39, 176, 0.25), transparent 70%);
  z-index: 0;
}

.features-modern::before {
  top: -100px;
  left: -150px;
}

.features-modern::after {
  bottom: -100px;
  right: -150px;
}

.features-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 1;
}

.features-header h5 {
  color: #7B1FA2;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.features-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.features-header h2 span {
  background: linear-gradient(to right, #7B1FA2, #E040FB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-header p {
  color: #555;
  font-size: 17px;
}

/* Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  position: relative;
  z-index: 1;
}

/* Feature Item */
.feature-item {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-item .icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  background: linear-gradient(135deg, #7B1FA2, #E040FB);
  color: #fff;
  box-shadow: 0 5px 20px rgba(155, 39, 176, 0.3);
}

.feature-item h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.feature-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Feature item image */
.feature-item img {
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  /* color: var(--brand); */
  box-shadow: 0 5px 20px rgba(155, 39, 176, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Zoom effect */
.feature-item.zoom img:hover {
  transform: scale(1.3);
  /* Zoom on hover */
  box-shadow: 0 8px 25px rgba(155, 39, 176, 0.5);
}

.zoom .zoom-subtitle {}

/* Highlight Card */
.feature-item.highlight {
  border: 2px solid #E040FB;
  transform: scale(1.05);
  color: var(--brand);
}

/* Responsive */
@media (max-width: 768px) {
  .features-header h2 {
    font-size: 28px;
  }

  .features-header p {
    font-size: 15px;
  }

  .feature-item {
    padding: 25px 20px;
  }
}

/* ====================== */

/* pro-features */
/* ====================== */

.pro-features {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f9f9ff, #eef3ff);
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.section-title span {
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

.feature-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/* Left Categories */
.feature-categories {
  flex: 1 1 250px;
}

.feature-categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-categories ul li {
  padding: 15px 20px;
  margin-bottom: 12px;
  background: #fff;
  border-radius: 10px;
  font-weight: 500;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-categories ul li:hover {
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  color: #fff;
}

.feature-categories ul li.active {
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  color: #fff;
}

/* Right Features */
.feature-details {
  flex: 3 1 700px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* display: flex;             
  flex-direction: column;     
  justify-content: space-between;
   max-height: 150px;      */
}

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

.feature-card i {
  font-size: 30px;
  color: #6a11cb;
  margin-bottom: 12px;
}

.feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 14px;
  color: #555;
}

/* features Tab  */
.tab-content {
  display: none;
}

.tab-content.active {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* ===========================*/
/* About us Page              */
/* ===========================*/


#about-hero {
  background: linear-gradient(135deg, #9250e2, #7dd8ff);
  color: white;
  padding: 120px 0;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ddd;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
}

.timeline-content {
  background: #f8f9fa;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

#team .card:hover {
  transform: translateY(-10px);
  transition: transform 0.3s ease;
}


/* about us features */
a {
  text-decoration: none;
  color: inherit;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
}

.common-btn {
  background-color: var(--btn-red);
  color: white;
  padding: 12px 30px;
  border: none;
  /* border-radius: 30px; */
  border-radius: 50px 15px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.common-btn:hover {
  background-color: var(--brand-dark);
  color: var(--card);
}


/* Features Section */
/* Background shapes */
.about-shape {
  position: relative;
  overflow: hidden;
}

.about-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.about-bg-shape .shape1 {
  width: 250px;
  height: 250px;
  background: #9250e2;
  top: -50px;
  left: -50px;
}

.about-bg-shape .shape2 {
  width: 200px;
  height: 200px;
  background: #7dd8ff;
  bottom: -50px;
  right: -50px;
}


.about-feature-card {
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  border: 3px dashed var(--brand-dark);
}

.about-feature-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
  border: 3px dashed var(--brand);

}

/* Icon animation */
.about-feature-icon img {
  width: 70px;
  transition: transform 0.4s ease;
}

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

/* Titles & text */
.about-feature-card h5 {
  color: #333;
  transition: color 0.3s;
}

.about-feature-card:hover h5 {
  color: #9250e2;
}

.about-feature-card p {
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .about-feature-card {
    padding: 30px 15px;
  }

  .about-feature-icon img {
    width: 60px;
  }
}

/* CTA Section */
/* CTA Section */
.about-cta {
  background: linear-gradient(135deg, #7dd8ff, #9250e2);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

/* Shapes for Depth */
.about-cta::before,
.about-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.about-cta::before {
  width: 200px;
  height: 200px;
  top: -60px;
  left: -60px;
}

.about-cta::after {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -100px;
}

.CTA-text {
  color: white;
}

.CTA-text strong {
  color: var(--brand);
  font-size: 3.5rem;
}

/* CTA Image */
.about-cta-img {
  max-width: 400px;
  z-index: 1;
  position: relative;
  transition: transform 0.4s ease;
}

.about-cta-img:hover {
  transform: scale(1.05) rotate(2deg);
}


/* ===========================*/
/*Features Page              */
/* ===========================*/
/* Feature Section Background */
.feature-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1571260899304-425eee4c7efc?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
  background-attachment: fixed;
  padding: 100px 20px;
  overflow: hidden;
  color: white;
}

.feature-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 0;
}

.feature-section .container {
  position: relative;
  z-index: 1;
}

/* Heading */
.section-heading {
  color: var(--brand-dark);
  font-size: 2.5rem;
}

.feature-section .card {
  background: rgba(164, 228, 247, 0.616);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--ink);
  transition: transform 0.3s ease;
  backdrop-filter: blur(6px);
  border-radius: 1rem;
}

.feature-section .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.feature-section .card .card-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.feature-section .card .card-text {
  font-size: 0.95rem;
  color: var(--muted);
}

.section-title {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 60px;
  color: var(--brand-dark);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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


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

/* ===========================*/
/* Demo Page              */
/* ===========================*/
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
}

.text-gradient {
  background: linear-gradient(to right, #6a11cb, #2575fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===========================*/
/* Help $ Support Page        */
/* ===========================*/


/* ===========================*/
/* Blog Page        */
/* ===========================*/

/* Section Background */
@import url(//fonts.googleapis.com/css?family=Lato:300:400);

.blog-header {
  /* background: var(--brand); */
  background: linear-gradient(45deg, var(--brand-dark), var(--brand));
  padding: 2rem 1rem;
  border-radius: var(--radius);
  color: var(--text-light);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.blog-header h2 {
  font-weight: 600;
  font-size: 2rem;
  margin: 0;
}

/* === Dark Mode Toggle === */
.dark-toggle {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  font-weight: 500;
  transition: background 0.3s ease;
}

.dark-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* === Blog Post === */
.blog-post {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.blog-post img {
  border-radius: var(--radius);
  max-height: 400px;
  object-fit: cover;
  width: 100%;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.blog-post img:hover {
  transform: scale(1.03);
}

.blog-post h2 {
  color: var(--brand-dark);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-post .text-muted {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.blog-post p,
.blog-post ul {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
}

body.dark-mode .blog-post {
  background-color: #1e1e1e;
}

/* === Sidebar === */
.sidebar {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sidebar h5 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--brand);
}

.category-list {
  padding: 0;
}

.category-list li {
  list-style: none;
  margin-bottom: 0.7rem;
}

.category-list li a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.category-list li a:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

.recent-posts p {
  margin-bottom: 0.5rem;
}

.recent-posts p a {
  color: var(--brand-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent-posts p a:hover {
  color: var(--brand-dark);
}

/* === Search Box in Sidebar === */
.sidebar input.form-control {
  border-radius: var(--radius);
  font-size: 1rem;
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #ddd;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.sidebar input.form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 8px rgba(146, 80, 226, 0.3);
}

/* === Comments Section === */
.comment-section {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.comment-section h5 {
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 1rem;
}

.comment-section .form-control {
  border-radius: var(--radius);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.comment-section .form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 6px rgba(146, 80, 226, 0.3);
}

/* === Buttons === */
.btn-primary {
  background-color: var(--brand);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  transition: background-color 0.3s ease;
  box-shadow: 0 6px 15px rgba(146, 80, 226, 0.3);
}

.btn-primary:hover {
  background-color: var(--brand-dark);
  box-shadow: 0 8px 18px rgba(146, 80, 226, 0.4);
}

.btn-danger {
  background-color: var(--btn-red);
  color: var(--text-light);
  border: none;
  border-radius: var(--radius);
}

/* === Pagination === */
.pagination {
  justify-content: center;
  margin-top: 2rem;
}

.page-link {
  color: var(--brand-dark);
  border-radius: var(--radius);
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-link:hover {
  background-color: var(--brand-dark);
  color: var(--ink);
}

.page-item.active .page-link {
  background-color: var(--brand);
  color: var(--text-light);
  box-shadow: 0 6px 15px rgba(146, 80, 226, 0.4);
}

/* === Responsive === */
@media (max-width: 768px) {
  .blog-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .sidebar {
    margin-top: 2rem;
  }

  .dark-toggle {
    margin-top: 1rem;
  }
}

/* ===========================*/
/*404 Page        */
/* ===========================*/
/* Background curved shape */
.bg-curve {
  position: fixed;
  top: 0;
  left: 0;
  width: 150%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.bg-curve svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: url(#gradient);
  opacity: 0.2;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
}

.error-page {
  position: relative;
  z-index: 10;
  max-width: 900px;
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem 4rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  animation: fadeIn 1s ease forwards;
  user-select: none;
}

.text-content {
  flex: 1 1 350px;
  min-width: 280px;
}

.error-code {
  font-size: 9rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  margin: 0 0 0.2em;
  position: relative;
  color: var(--text-light);
  text-shadow:
    3px 3px 8px rgba(0, 0, 0, 0.5),
    0 0 20px var(--brand);
  animation: pulse 2.5s infinite;
}

.error-code::after {
  content: '!';
  position: absolute;
  top: -0.4em;
  right: -0.6em;
  font-size: 6rem;
  color: var(--btn-red);
  text-shadow:
    2px 2px 8px rgba(0, 0, 0, 0.5),
    0 0 15px var(--btn-red);
  animation: shake 1.5s infinite;
}

.message {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f5f5f5;
  text-shadow: 0 0 8px var(--brand);
}

.error-description {
  font-size: 1rem;
  color: var(--brand);
  margin-bottom: 2.5rem;
  line-height: 1.4;
  font-weight: 400;
}

.btn-home {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: var(--radius);
  color: var(--brand-dark);
  background: var(--text-light);
  box-shadow: 0 6px 20px rgba(146, 80, 226, 0.4);
  transition: all 0.3s ease;
  user-select: none;
  cursor: pointer;
  letter-spacing: 0.05em;
}

.btn-home:hover {
  background: var(--brand);
  color: var(--text-light);
  box-shadow: 0 8px 25px rgba(146, 80, 226, 0.7);
  transform: translateY(-3px);
}

/* Illustration */
.illustration {
  flex: 1 1 300px;
  min-width: 250px;
  user-select: none;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
  max-height: 400px;
  width: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  transition: transform 0.3s ease;
}

.illustration:hover {
  transform: scale(1.05);
  /* rotatey(180deg);  */


}

/* Animations */
@keyframes pulse {

  0%,
  100% {
    text-shadow:
      3px 3px 8px rgba(0, 0, 0, 0.5),
      0 0 20px var(--brand);
  }

  50% {
    text-shadow:
      3px 3px 12px rgba(0, 0, 0, 0.7),
      0 0 30px var(--brand);
  }
}

@keyframes shake {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(-10deg);
  }

  75% {
    transform: rotate(7deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

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

/* Responsive */
@media (max-width: 900px) {
  .error-page {
    flex-direction: column;
    padding: 2rem 2.5rem;
  }

  .illustration {
    max-height: 280px;
  }

  .error-code {
    font-size: 6rem;
  }
}

/* ===========================*/
/* Buy Now Page        */
/* ===========================*/

#premium-offer .btn-buy {
  background: #ff8c6a;
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 0 10px #ff8c6a;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#premium-offer .btn-buy:hover {
  background: #ff7b50;
  box-shadow: 0 0 15px #ff7b50;
  cursor: pointer;
}

#premium-offer .btn-bundle {
  background: #8e6fc1;
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 0 10px #8e6fc1;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#premium-offer .btn-bundle:hover {
  background: #7a5ab0;
  box-shadow: 0 0 15px #7a5ab0;
  cursor: pointer;

}

/* BUY NOW Button */
#premium-offer .btn-buy {
  background: #ff8c6a;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  box-shadow: 0 0 10px #ff8c6a;
  transition: all 0.3s ease;
}

#premium-offer .btn-buy:hover {
  background: #e6765c;
  color: #fff;
  box-shadow: 0 0 15px #ff8c6a;
  cursor: pointer;
}

/* GET BUNDLE Button */
.custom-btn-outline {
  padding: 0.6rem 1.3rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  color: #fff;
  background: transparent;
  border-width: 2px;
}

.custom-btn-outline.danger {
  border-color: #ff5d2b;
  color: #ff5d2b;
}

.custom-btn-outline.danger:hover {
  background-color: #ff8c6a;
  color: #fff;
}

.custom-btn-outline.primary {
  border-color: #fff837;
  color: #fff837;
}

.custom-btn-outline.primary:hover {
  background-color: #cfcc5e;
  color: #fff;
}

.custom-btn-outline.success {
  border-color: #23ff56;
  color: #23ff56;
}

.custom-btn-outline.success:hover {
  background-color: #43bc5f;
  color: #fff;
}

.custom-btn-outline.info {
  border-color: #1fe1ff;
  color: #1fe1ff;
}

.custom-btn-outline.info:hover {
  background-color: #17a2b8;
  color: #fff;
}

h1 {
  font-weight: 300;
  letter-spacing: 2px;
  font-size: 48px;
  text-align: center;
}

p {
  letter-spacing: 1px;
  font-size: 14px;
  color: #333333;
}

.header {
  position: relative;
  text-align: center;
  background: linear-gradient(90deg, rgba(76, 115, 184, 0.8) var(--gradient-percent), rgba(154, 198, 229, 1) 100%);
  color: white;

}

.logo {
  width: 50px;
  fill: white;
  padding-right: 15px;
  display: inline-block;
  vertical-align: middle;
}

.inner-header {
  height: 15vh;
  width: 100%;
  margin: 0;
  padding: 0;
}

.flex {
  /*Flexbox for containers*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px;
  min-height: 100px;
  max-height: 150px;
}

.content {
  position: relative;
  height: 20vh;
  text-align: center;
  background-color: white;
}

.parallax>use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax>use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

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

@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }

  .content {
    height: 30vh;
  }

  h1 {
    font-size: 24px;
  }
}

.desc-section {
  background: #f4f7ff;
  border-top: 1px solid #e3e9f6;
  border-bottom: 1px solid #e3e9f6;
}

.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.5s ease-in-out, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  background: #4e72de linear-gradient(145deg, #4e72de, white);
  color: white;
}

.icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.8rem;
  color: #fff;
  background: linear-gradient(135deg, #6b73ff, #000dff);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.gradient-text {
  background: linear-gradient(90deg, #0056ff, #8f00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.desc-section {
  background: #f4f7ff;
  border-top: 1px solid #e3e9f6;
  border-bottom: 1px solid #e3e9f6;
}

/* Text Styling */
.desc-section .lead {
  padding-top: 15px;
  font-size: 1.1rem;
  color: #555;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Glass Effect Card */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.8rem;
  color: #fff;
  background: linear-gradient(135deg, #6b73ff, #000dff);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Subtle background colors for icons */
.bg-primary-subtle {
  background: linear-gradient(135deg, #5a86ff, #3a54f1);
}

.bg-success-subtle {
  background: linear-gradient(135deg, #45d39d, #00b77b);
}

.bg-danger-subtle {
  background: linear-gradient(135deg, #ff6b6b, #ff3c3c);
}

.bg-warning-subtle {
  background: linear-gradient(135deg, #ffb74d, #ff9800);
}

.bg-info-subtle {
  background: linear-gradient(135deg, #4db6ff, #2196f3);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(90deg, #0056ff, #8f00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Rating */
.rating-stars i {
  color: #ffc107;
}

.review-response {
  background-color: #eef6fb;
  border-left: 4px solid #0dcaf0;
  padding: 12px 15px;
  border-radius: 5px;
}

.collapse-toggle {
  cursor: pointer;
  color: #0d6efd;
}

.review-card:hover {
  background-color: #f9f9f9;
}

.progress-label {
  font-weight: 500;
}

.school-btn {
  font-weight: 600;
  border-radius: 30px;
  padding: 0.6rem 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  color: #fff;
}

.school-btn:hover {
  transform: scale(1.1) rotateX(-15deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background-color: #0d6efd;
  /* for primary button */
  color: #fff;
}

.trustpilot-btn {
  background: #2a9d49;
  border: none;
}

.trustpilot-btn:hover {
  background: #21867a;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* Google button */
.google-btn {
  background: #f4b400;
  border: none;
}

.google-btn:hover {
  background: #d99c00;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.rating-stars i {
  color: #ffc107;
  margin-right: 2px;
}

.review-response {
  background-color: #eef6fb;
  border-left: 4px solid #0dcaf0;
  padding: 12px 15px;
  border-radius: 5px;
}

.collapse-toggle {
  cursor: pointer;
  color: #0d6efd;
  font-weight: 500;
}

.review-card:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.progress-label {
  font-weight: 500;
}

.card button {
  font-size: 0.85rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.publication-card {
  background: linear-gradient(135deg, #000000, #627189);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.publication-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.publication-card .btn-primary {
  transition: all 0.3s ease;
}

.publication-card .btn-primary:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}


/* Background shapes */
.bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite linear;
  z-index: -1;
}

.shape1 {
  width: 180px;
  height: 180px;
  background: #007bff;
  top: -60px;
  left: -40px;
  animation-duration: 25s;
}

.shape2 {
  width: 120px;
  height: 120px;
  background: #ffc107;
  bottom: -40px;
  right: -30px;
  animation-duration: 30s;
}

.shape3 {
  width: 100px;
  height: 100px;
  background: #28a745;
  top: 50%;
  left: 85%;
  animation-duration: 28s;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }

  50% {
    transform: translateY(-30px) translateX(15px) rotate(45deg);
  }

  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
}

/* Section Title */
.section-title {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
  font-size: 2.2rem;
  text-align: center;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 4px;
  background: #007bff;
  bottom: 0;
  left: 20%;
  border-radius: 2px;
}

/* Carousel Styling */
#pluginsSlider img {
  height: 350px;
  object-fit: cover;
  transition: transform 1.2s ease;
}

#pluginsSlider .carousel-item:hover img {
  transform: scale(1.05);
}

.carousel-caption {
  bottom: 20px;
  animation: fadeInUp 1s ease-in-out;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  border-radius: 0.5rem;
  padding: 0.8rem;
}

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

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

/* App Cards */
.app-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.app-card:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* App cards styling */
.app-cards {
  position: relative;
  list-style: none;
  padding: 0;
  max-width: 40em;
  margin: 0 auto;
  height: 450px;
}

.app-cards .card {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #fff;
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  transform: translateY(0) rotate(4deg) translateX(25px) scale(1);
  transform-origin: 0 0;
  transition: transform 0.6s cubic-bezier(.8, .2, .1, 0.8), background 0.4s linear;
  cursor: pointer;
  user-select: none;
}

.app-cards .card--next {
  z-index: 5;
  transform: translateY(-25px) rotate(4deg) translateX(25px) scale(1);
}

.app-cards .card--out {
  transform: translateY(-50px) rotate(8deg) translateX(55px) scale(0.95);
  z-index: 1;
  background: #f0f0f0;
}

.app-cards .card--current {
  position: relative;
  z-index: 10;
  background: #fff;
  transform: rotate(-1deg) translateX(0%) scale(1);
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

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

.section-title {
  display: inline-block;
  position: relative;
  padding-bottom: 16px;
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;

  /* Fancy animated gradient text */
  background: linear-gradient(120deg, #ff6ec4, #6fcdff, hsl(302, 36%, 61%), #3bb2b8, #ff6ec4);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: bounceIn 0.6s ease forwards;

  transition: background-position 1s ease;
}

/* Shine gradient on hover */
.section-title:hover {
  background-position: right;
}

/* Underline effect with neon glow and animation */
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 3px;

  background: linear-gradient(90deg, #ff6ec4, #7873f5);
  box-shadow: 0 0 8px rgba(255, 110, 196, 0.7), 0 0 15px rgba(120, 115, 245, 0.5);
  border-radius: 3px;

  transition: transform 0.5s ease;
}

/* Animate the underline from center */
.section-title:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* Carousel images */
#pluginsSlider img {
  height: 100%;
  /* Increased height */
  object-fit: contain;
  /* Show the full image without cropping */
  width: 100%;
  transition: transform 1s ease;
}

#pluginsSlider .carousel-item:hover img {
  transform: scale(1.03);
  /* Slight zoom on hover */
}

/* Ensure captions are not covering images too much */
.carousel-caption {
  bottom: 15px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0.5rem;
  padding: 0.8rem;
}


/* demo cads */
.card-grid {

  max-width: 100%;
  margin: 0 auto;
}

/* Fancy card style */
.fancy-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgb(0 0 0 / 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fancy-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 30px 60px rgba(38, 57, 77, 0.3);
  z-index: 10;
}

/* Image container with overlay */
.card-image {
  position: relative;
  height: 180px;
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38, 57, 77, 0.4), rgba(38, 57, 77, 0.7));
  transition: background 0.4s ease;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.fancy-card:hover .card-image::after {
  background: linear-gradient(180deg, rgba(38, 57, 77, 0.2), rgba(38, 57, 77, 0.4));
}

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

/* Shine effect on hover */
.fancy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0.25),
      rgba(255, 255, 255, 0));
  transform: skewX(-20deg);
  pointer-events: none;
  transition: left 0.6s ease;
  z-index: 5;
  border-radius: 20px;
}

.fancy-card:hover::before {
  left: 125%;
  transition: left 0.6s ease;
}

/* Card content */
.card-content {
  padding: 25px 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-content h3 {
  color: #2575fc;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.card-content p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.4;
  margin: 0;
  font-weight: 500;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');


.title-section {
  position: relative;
  height: 500px;
  background: url('../assets/team/businesspeople-having-good-time-meeting.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.title-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 0.8));
  z-index: 1;
}

.title-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  animation: fadeIn 1.5s ease-in-out;
}

.title-content h1 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.title-content p {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 30px;
  line-height: 1.5;
}

.theme-info-section {
  background: linear-gradient(135deg, #f9fbff, #ffffff);
}

.browser-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border-radius: 30px;
  padding: 8px 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.browser-badge img {
  height: 20px;
  width: 20px;
}

.browser-badge:hover {
  transform: scale(1.1);
  background: #007bff;
  color: white;
}

.theme-preview {
  transition: transform 0.4s ease;
}

.theme-preview:hover {
  transform: scale(1.05) rotate(-1deg);
}

.shortcode-section {
  background-color: #f9f9f9;
}

.shortcode-list {
  list-style: none;
  padding: 0;
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.shortcode-card {
  background: white;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  height: 100%;
  border-top: 4px solid var(--accent-color);
}

.shortcode-card .icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.shortcode-card .title {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.shortcode-card .descr {
  font-size: 0.9rem;
  color: #555;
}

.shortcode-card:hover {
  transform: translateY(-5px);
}

/* QR code section */
  .qr-section.school-management {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-color: white;
  }

  /* Floating shapes */
  .qr-section .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
  }

  .shape-1 {
    width: 300px;
    height: 300px;
    background: #b3d9ff;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
  }

  .shape-2 {
    width: 200px;
    height: 200px;
    background: #80bfff;
    bottom: -80px;
    right: 50px;
    animation-delay: 2s;
  }

  .shape-3 {
    width: 150px;
    height: 150px;
    background: #99ccff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 5s;
  }

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

  .qr-content {
    position: relative;
    z-index: 2;
  }

  .qr-text h2 {
    font-weight: 700;
    font-size: 2.5rem;
    color: #0d1b2a;
  }

  .qr-text p {
    color: #333;
    font-size: 1.1rem;
    margin: 20px 0;
  }

  .btn-primary {
    background: #007bff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
  }

  .btn-primary:hover {
    background: #005ed9;
  }

  .app-badges img {
    width: 150px;
    margin-right: 10px;
    margin-top: 15px;
  }

  .qr-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 15px;
    transition: 0.5s ease;
    /* filter:drop-shadow(0 10px 20px rgba(0, 0, 0, 0.274)); */
  }

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

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

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

    .app-badges img {
      width: 130px;
    }

    .qr-image {
      margin-top: 40px;
    }
  }

   /*title section */
      
   .theme-info-section {
              background: linear-gradient(135deg, #f9fbff, #ffffff);
            }

            .browser-badge {
              display: flex;
              align-items: center;
              gap: 8px;
              background: white;
              border-radius: 30px;
              padding: 8px 14px;
              box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
              font-size: 0.9rem;
              font-weight: 500;
              transition: all 0.3s ease;
            }

            .browser-badge img {
              height: 20px;
              width: 20px;
            }

            .browser-badge:hover {
              transform: scale(1.1);
              background: #007bff;
              color: white;
            }

            .theme-preview {
              transition: transform 0.4s ease;
            }

            .theme-preview:hover {
              transform: scale(1.05) rotate(-1deg);
            }

/* ===========================*/

            .theme-info-section {
              background: linear-gradient(135deg, #f9fbff, #ffffff);
            }

            .browser-badge {
              display: flex;
              align-items: center;
              gap: 8px;
              background: white;
              border-radius: 30px;
              padding: 8px 14px;
              box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
              font-size: 0.9rem;
              font-weight: 500;
              transition: all 0.3s ease;
            }

            .browser-badge img {
              height: 20px;
              width: 20px;
            }

            .browser-badge:hover {
              transform: scale(1.1);
              background: #007bff;
              color: white;
            }

            .theme-preview {
              transition: transform 0.4s ease;
            }

            .theme-preview:hover {
              transform: scale(1.05) rotate(-1deg);
            }
  
/*  shortcode*/

  .shortcode-section {
  background-color: #f9f9f9;
}

.shortcode-list {
  list-style: none;
  padding: 0;
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.shortcode-card {
  background: white;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
  height: 100%;
  border-top: 4px solid var(--accent-color);
}

.shortcode-card .icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.shortcode-card .title {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.shortcode-card .descr {
  font-size: 0.9rem;
  color: #555;
}

.shortcode-card:hover {
  transform: translateY(-5px);
}



/*Main CSS End*/


/*About Us*/

/* Hero Section Background */

#about-hero{
      position: relative;
      min-height: 40vh;
      background: linear-gradient(
          rgba(222, 221, 221, 0.7),
          rgba(185, 228, 246, 0.9)
        ),
        url('./assets/bg1.jpg') center/cover no-repeat;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    
      padding: 60px 20px;
    }

    #about-hero .container {
      position: relative;
      z-index: 2;
    }

    #about-hero h1 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    #about-hero h2 {
      font-size: 1.75rem;
      font-weight: 500;
      margin-bottom: 1.5rem;
    }

    #about-hero p {
      font-size: 1.125rem;
      line-height: 1.7;
    }
.hero-img-wrapper{
    filter: drop-shadow(10px 15px 5px rgba(0, 0, 0, 0.6));
}
    #about-hero .lead {
      font-size: 1.2rem;
      margin-top: 1.5rem;
      color: #f1f1f1;
    }

    @media (max-width: 768px) {
      #about-hero h1 {
        font-size: 2.5rem;
      }
      #about-hero h2 {
        font-size: 1.25rem;
      }
      #about-hero p {
        font-size: 1rem;
      }
    }

/* Profile Image Wrapper */
.circle-img-wrapper {
  border-radius: 50%;
  padding: 10px;
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  display: inline-block;
  max-width: 100%;
}

/* Main Profile Image */
.main-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
}

/* Play Icon */
.play-icon {
  font-size: 1.25rem;
  z-index: 3;
}

/* Floating Mini Card */
.mini-card {
  width: 180px;
  bottom: -20px;
  left: -30px;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

/* Experience Tag */
.experience-tag {
  top: 0;
  left: 0;
  font-size: 0.9rem;
  z-index: 3;
}

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

.circle-border {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  opacity: 0.8;
}

.circle-1 {
  width: 40px;
  height: 40px;
  background: #ffc107;
  top: -20px;
  right: -20px;
}

.circle-2 {
  width: 60px;
  height: 60px;
  background: #0dcaf0;
  bottom: 30px;
  right: 10px;
}

.circle-3 {
  width: 100px;
  height: 100px;
  background: #198754e2;
  top: 0px;
  left: 20px;
}

.circle-4 {
  width: 20px;
  height: 20px;
  background: #e031f4e2;
  bottom: 0px;
  right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .mini-card {
    left: 0;
    bottom: -10px;
    width: 160px;
  }

  .play-icon {
    display: none;
  }

  .main-image {
    max-width: 300px;
  }
}

#mission-vision {
  position: relative;
  overflow: hidden;

}

#mission-vision .mission-img-wrapper {
  position: relative;
}

#mission-vision .mission-img-wrapper img {
  border-radius: 1rem;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

#mission-vision .mission-img-wrapper img:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

#mission-vision .overlay-shape {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 150px;
  height: 150px;
  background: rgba(0, 123, 255, 0.1);
  border-radius: 50%;
  z-index: -1;
}
/* About End */


/*404*/
    /* Background curved shape */
    .bg-curve {
      position: fixed;
      top: 0;
      left: 0;
      width: 150%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      overflow: visible;
    }

    .bg-curve svg {
      width: 100%;
      height: 100%;
      display: block;
      fill: url(#gradient);
      opacity: 0.2;
      filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
    }

    .error-page{
      position: relative;
      z-index: 10;
      max-width: 900px;
      background: rgba(255, 255, 255, 0.1);
      padding: 3rem 4rem;
      border-radius: var(--radius);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(12px);
      display: flex;
      align-items: center;
      gap: 3rem;
      flex-wrap: wrap;
      animation: fadeIn 1s ease forwards;
      user-select: none;
    }

    .text-content {
      flex: 1 1 350px;
      min-width: 280px;
    }

    .error-code {
      font-size: 9rem;
      font-weight: 900;
      letter-spacing: 0.15em;
      margin: 0 0 0.2em;
      position: relative;
      color: var(--text-light);
      text-shadow:
        3px 3px 8px rgba(0, 0, 0, 0.5),
        0 0 20px var(--brand);
      animation: pulse 2.5s infinite;
    }

    .error-code::after {
      content: '!';
      position: absolute;
      top: -0.4em;
      right: -0.6em;
      font-size: 6rem;
      color: var(--btn-red);
      text-shadow:
        2px 2px 8px rgba(0, 0, 0, 0.5),
        0 0 15px var(--btn-red);
      animation: shake 1.5s infinite;
    }

    .message {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #f5f5f5;
      text-shadow: 0 0 8px var(--brand);
    }

    .description {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 2.5rem;
      line-height: 1.4;
      font-weight: 400;
    }

    .btn-home {
      display: inline-block;
      padding: 0.9rem 2.5rem;
      font-weight: 700;
      font-size: 1.1rem;
      text-decoration: none;
      border-radius: var(--radius);
      color: var(--brand-dark);
      background: var(--text-light);
      box-shadow: 0 6px 20px rgba(146, 80, 226, 0.4);
      transition: all 0.3s ease;
      user-select: none;
      cursor: pointer;
      letter-spacing: 0.05em;
    }

    .btn-home:hover {
      background: var(--brand);
      color: var(--text-light);
      box-shadow: 0 8px 25px rgba(146, 80, 226, 0.7);
      transform: translateY(-3px);
    }

    /* Illustration */
    .illustration {
      flex: 1 1 300px;
      min-width: 250px;
      user-select: none;
      filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
      max-height: 400px;
      width: 100%;
      object-fit: contain;
      border-radius: var(--radius);
      transition: transform 0.3s ease;
    }

    .illustration:hover {
     transform: scale(1.05) ;
     /* rotatey(180deg);  */

      
    }

    /* Animations */
    @keyframes pulse {
      0%,
      100% {
        text-shadow:
          3px 3px 8px rgba(0, 0, 0, 0.5),
          0 0 20px var(--brand);
      }
      50% {
        text-shadow:
          3px 3px 12px rgba(0, 0, 0, 0.7),
          0 0 30px var(--brand);
      }
    }

    @keyframes shake {
      0%,
      100% {
        transform: rotate(0deg);
      }
      25% {
        transform: rotate(10deg);
      }
      50% {
        transform: rotate(-10deg);
      }
      75% {
        transform: rotate(7deg);
      }
    }

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

    /* Responsive */
    @media (max-width: 900px) {
      .error-page {
        flex-direction: column;
        padding: 2rem 2.5rem;
      }

      .illustration {
        max-height: 280px;
      }

      .error-code {
        font-size: 6rem;
      }
    }
/*404*/


/*Contact*/
.sec-title-style1 {
    position: relative;
    display: block;
    margin-top: -9px;
    padding-bottom: 50px;
}
.sec-title-style1.max-width{
    position: relative;
    display: block;
    max-width: 770px;
    margin: -9px auto 0;
    padding-bottom: 52px;    
}
.sec-title-style1.pabottom50 {
    padding-bottom: 42px;
}
.sec-title-style1 .title {
    position: relative;
    display: block;
    color: #131313;
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
    text-transform: uppercase;
}
.sec-title-style1 .title.clr-white{
    color: #ffffff;
}
.sec-title-style1 .decor {
    position: relative;
    display: block;
    width: 70px;
    height: 5px;
    margin: 19px 0 0;
}
.sec-title-style1 .decor:before{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: var(--brand-dark);
    border-radius: 50%;
    content: "";
}
.sec-title-style1 .decor:after{
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #FFA500;
    border-radius: 50%;
    content: "";
}
.sec-title-style1 .decor span {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background: #FFA500;
    margin: 2px 0;
}


.sec-title-style1 .text{
    position: relative;
    display: block;
    margin: 7px 0 0;
}
.sec-title-style1 .text p{
    position: relative;
    display: inline-block;
    padding: 0 15px;
    color: #131313;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}
.sec-title-style1 .text.clr-yellow p{
    color: #FFA500;
}
.sec-title-style1 .text .decor-left{
    position: relative;
    top: -2px;
    display: inline-block;
    width: 70px;
    height: 5px;
    background: transparent;
}
.sec-title-style1 .text .decor-left span {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background: #FFA500;
    content: "";
    margin: 2px 0;
}
.sec-title-style1 .text .decor-left:before{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #FFA500;
    border-radius: 50%;
    content: "";
}
.sec-title-style1 .text .decor-left:after{
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #FFA500;
    border-radius: 50%;
    content: "";
}

.sec-title-style1 .text .decor-right{
    position: relative;
    top: -2px;
    display: inline-block;
    width: 70px;
    height: 5px;
    background: transparent;
}
.sec-title-style1 .text .decor-right span {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background: #FFA500;
    content: "";
    margin: 2px 0;
}
.sec-title-style1 .text .decor-right:before{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #FFA500;
    border-radius: 50%;
    content: "";
}
.sec-title-style1 .text .decor-right:after{
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #FFA500;
    border-radius: 50%;
    content: "";
}

.sec-title-style1 .bottom-text{
    position: relative;
    display: block;
    padding-top: 16px;
}
.sec-title-style1 .bottom-text p{
    color: #848484;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin: 0;
}
.sec-title-style1 .bottom-text.clr-gray p{
    color: #cdcdcd;    
}
.contact-address-area{
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 0 120px;
    margin-top:145px;
}
.contact-address-area .sec-title-style1.max-width {
    padding-bottom: 72px;
}
.contact-address-box{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;    
}
.single-contact-address-box {
    position: relative;
    display: block;
    background: #131313;
    padding: 85px 30px 77px;
}
.single-contact-address-box .icon-holder{
    position: relative;
    display: block;
    padding-bottom: 24px;
}
.single-contact-address-box .icon-holder span:before{
    font-size: 75px;
}
.single-contact-address-box h3{
    color: #ffffff;
    margin: 0px 0 9px;
}
.single-contact-address-box h2{
    color: #FFA500;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 19px;
}
.single-contact-address-box a{
    color: #ffffff;
}

.single-contact-address-box.main-branch {
    background: #FFA500;
    padding: 53px 30px 51px;
    margin-top: -20px;
    margin-bottom: -20px;
}
.single-contact-address-box.main-branch h3{
    color: #131313;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 38px;
    text-transform: uppercase;
    text-align: center;
}
.single-contact-address-box.main-branch .inner{
    position: relative;
    display: block;
    
}
.single-contact-address-box.main-branch .inner ul{
    position: relative;
    display: block;
    overflow: hidden;
}
.single-contact-address-box.main-branch .inner ul li{
    position: relative;
    display: block;
    padding-left: 110px;
    border-bottom: 1px solid #737373;
    padding-bottom: 23px;
    margin-bottom: 24px;
}
.single-contact-address-box.main-branch .inner ul li:last-child{
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.single-contact-address-box.main-branch .inner ul li .title{
    position: absolute;
    top: 2px;
    left: 0;
    display: inline-block;
}
.single-contact-address-box.main-branch .inner ul li .title h4{
    color: #131313;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    border-bottom: 2px solid #a5821e;
}

.single-contact-address-box.main-branch .inner ul li .text{
    position: relative;
    display: block;
}
.single-contact-address-box.main-branch .inner ul li .text p{
    color: #131313;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin: 0;
}

.contact-info-area {
    position: relative;
    display: block;
    background: #ffffff;
}
.contact-form {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 60px 80px;
    -webkit-box-shadow: 0px 3px 8px 2px #ededed; 
    box-shadow: 0px 3px 8px 2px #ededed;
    z-index: 3;
}
.contact-form .sec-title-style1{
    position: relative;
    display: block;
    padding-bottom: 51px;
    width: 50%;
}
.contact-form .text-box{
    position: relative;
    display: block;
    margin-top: 19px;
    width: 50%;    
}
.contact-form .text p{
    color: #848484;
    line-height: 26px;
    margin: 0;
}

.contact-form .inner-box{
    position: relative;
    display: block;
    background: #ffffff;
}
.contact-form form{
    position: relative;
    display: block;
}
.contact-form form .input-box{
    position: relative;
    display: block;
}

.contact-form form input[type="text"],
.contact-form form input[type="email"],
.contact-form form textarea{
    position: relative;
    display: block;   
    background: #ffffff;
    border: 1px solid #eeeeee;
    width: 100%;
    height: 55px;
    font-size: 16px;
    padding-left: 19px;
    padding-right: 15px;
    border-radius: 0px;
    margin-bottom: 20px;
    transition: all 500ms ease;
}
.contact-form form textarea {
    height: 130px;
    padding-left: 19px;
    padding-right: 15px;
    padding-top: 14px;
    padding-bottom: 15px;
}
.contact-form form input[type="text"]:focus{
    color: #222222;
    border-color: #d4d4d4; 
}
.contact-form form input[type="email"]:focus{
    color: #222222;
    border-color: #d4d4d4;
}
.contact-form form textarea:focus{
    color: #222222;
    border-color: #d4d4d4;
}
.contact-form form input[type="text"]::-webkit-input-placeholder {
    color: #848484;
}
.contact-form form input[type="text"]:-moz-placeholder {
    color: #848484;
}
.contact-form form input[type="text"]::-moz-placeholder {
    color: #848484;
}
.contact-form form input[type="text"]:-ms-input-placeholder {
    color: #848484;
}
.contact-form form input[type="email"]::-webkit-input-placeholder {
    color: #848484;
}
.contact-form form input[type="email"]:-moz-placeholder {
    color: #848484;
}
.contact-form form input[type="email"]::-moz-placeholder {
    color: #848484;
}
.contact-form form input[type="email"]:-ms-input-placeholder {
    color: #848484;
}
.contact-form form button {
    position: relative;
    display: block;
    width: 100%;
    background: #FFA500;
    border: 1px solid #FFA500;
    color: #131313;
    font-size: 16px;
    line-height: 55px;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    cursor: pointer;
}

.contact-form form button:hover{
    color: #ffffff;
    background: #131313;
}
/*Conatct*/


/*demo*/

/*  .card {
      border-radius: 12px;
      transition: transform 0.3s ease;
    }
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .btn-lg {
      border-radius: 50px;
      padding: 12px 30px;
    }

    .hero-section {
      /* background: linear-gradient(to right, #f8f9fc, #e0f7ff); */
      overflow: hidden;
      background-image: url(./assets/svg/llline.svg);
      background-position: center;
      background-repeat: no-repeat;
      object-fit:fill;
height: 80vh;
    }


    .glass-card {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      transition: transform 0.3s ease;
    }

    .glass-card:hover {
      /* transform: translateY(-5px); */
    }

    .text-gradient {
      background: linear-gradient(to right, #6a11cb, #2575fc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .subtitle {
      font-size: 1.3rem;
      margin: 30px 0px;
    }

    /* promo */
    .promo-section {
      background: linear-gradient(to right, #f8f9fc, #e0f7ff);
      
    }

    .text-gradient {
      background: linear-gradient(to right, #6a11cb, #2575fc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .price-highlight {
      font-size: 1.8rem;
    }

    .glass-card {
      background: rgba(255, 255, 255, 0.15);
      border-radius: 15px;
      backdrop-filter: blur(10px);
    }

    /* demo cards */
    .demo-card {
      background: rgba(0, 0, 0, 0.06);
      border: 3px dashed rgba(66, 65, 67, 0.767);
      border-radius: 16px;
      padding: 1.5rem;
      backdrop-filter: blur(8px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      height: 100%;
      margin: 5px;
      transition: all 0.3s ease-in;
    }

    .demo-card:hover {
      background: rgb(0, 0, 0);
      transform: translateY(-5px);
      color: #fdfdfd;
    }

    .demo-card h5 {
      color: #7fd1ea;
      margin-bottom: 1rem;
    }

    .demo-card p {
      margin: 0.4rem 0;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 18px;
    }

    .demo-card i {
      color: #7fd1ea;
    }

    .fa-copy {
      font-size: 1.5rem;
    }

    .copy-btn {
      position: absolute;
      bottom: 1rem;
      right: 1rem;
      background: #7fd1ea;
      border: none;
      padding: 0.45rem 0.7rem;
      border-radius: 8px;
      font-size: 0.95rem;
      color: #ffffff;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.3rem;
      transition: background 0.5s ease;
    }

    .copy-btn:hover {
      background: #556064;
    }

    .demo-card p,
    .demo-card h5 {
      color: inherit;
      transition: color 0.3s ease;
    }

    .demo-card:hover p,
    .demo-card:hover h5 {
      color: #fdfdfd;
    }

    /* Circle animation */
    .hover-circle {
      position: absolute;
      top: -40px;
      right: -40px;
      width: 80px;
      height: 80px;
      background: #fdfeff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      opacity: 0;
      transform: scale(0.5);
      transition: all 0.5s ease;
      z-index: 10;
    }

    .demo-card:hover .hover-circle {
      opacity: 1;
      transform: scale(1);
      top: -20px;
      right: -20px;
    }

    .role-icon {
      transition: all 0.4s ease-in-out;
      font-size: 2rem;

    }

    /* Hide role icon on hover */
    .demo-card:hover .role-icon {
      display: none;
    }

    @media (max-width: 576px) {
  .hero-section {
    height: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}*/



/*Blog*/
  .blog-header {
  /* background: var(--brand); */
background: linear-gradient(45deg, var(--brand-dark), var(--brand));
  padding: 2rem 1rem;
  border-radius: var(--radius);
  color: var(--text-light);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.blog-header h2 {
  font-weight: 600;
  font-size: 2rem;
  margin: 0;
}

/* === Dark Mode Toggle === */
.dark-toggle {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  font-weight: 500;
  transition: background 0.3s ease;
}

.dark-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* === Blog Post === */
.blog-post {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.blog-post img {
  border-radius: var(--radius);
  max-height: 400px;
  object-fit: cover;
  width: 100%;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.blog-post img:hover {
  transform: scale(1.03);
}

.blog-post h2 {
  color: var(--brand-dark);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

  .blog-post .text-muted {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
  }

  .blog-post p,
  .blog-post ul {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--ink);
  }

  body.dark-mode .blog-post {
    background-color: #1e1e1e;
  }

  /* === Sidebar === */
  .sidebar {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .sidebar h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--brand);
  }

  .category-list {
    padding: 0;
  }

  .category-list li {
    list-style: none;
    margin-bottom: 0.7rem;
  }

  .category-list li a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .category-list li a:hover {
    color: var(--brand-dark);
    text-decoration: underline;
  }

  .recent-posts p {
    margin-bottom: 0.5rem;
  }

  .recent-posts p a {
    color: var(--brand-dark);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .recent-posts p a:hover {
    color: var(--brand-dark);
  }

  /* === Search Box in Sidebar === */
  .sidebar input.form-control {
    border-radius: var(--radius);
    font-size: 1rem;
    box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #ddd;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .sidebar input.form-control:focus {
    border-color: var(--brand);
    box-shadow: 0 0 8px rgba(146, 80, 226, 0.3);
  }

  /* === Comments Section === */
  .comment-section {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-top: 2rem;
  }

  .comment-section h5 {
    color: var(--brand);
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .comment-section .form-control {
    border-radius: var(--radius);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .comment-section .form-control:focus {
    border-color: var(--brand);
    box-shadow: 0 0 6px rgba(146, 80, 226, 0.3);
  }

  /* === Buttons === */
  .btn-primary {
    background-color: var(--brand);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    transition: background-color 0.3s ease;
    box-shadow: 0 6px 15px rgba(146, 80, 226, 0.3);
  }

  .btn-primary:hover {
    background-color: var(--brand-dark);
    box-shadow: 0 8px 18px rgba(146, 80, 226, 0.4);
  }

  .btn-danger {
    background-color: var(--btn-red);
    color: var(--text-light);
    border: none;
    border-radius: var(--radius);
  }

  /* === Pagination === */
  .pagination {
    justify-content: center;
    margin-top: 2rem;
  }

  .page-link {
    color: var(--brand-dark);
    border-radius: var(--radius);
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .page-link:hover {
    background-color: var(--brand-dark);
    color: var(--ink);
  }

  .page-item.active .page-link {
    background-color: var(--brand);
    color: var(--text-light);
    box-shadow: 0 6px 15px rgba(146, 80, 226, 0.4);
  }

  /* === Responsive === */
  @media (max-width: 768px) {
    .blog-header {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }

    .sidebar {
      margin-top: 2rem;
    }

    .dark-toggle {
      margin-top: 1rem;
    }
  }

/* Modern Categories */
.modern-categories {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.modern-categories li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  background: #f0f0ff;
  color: #341f97;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.modern-categories li a i {
  color: #6c5ce7;
  min-width: 20px;
  text-align: center;
  font-size: 1.1rem;
}

.modern-categories li a:hover {
  background: linear-gradient(90deg, #6c5ce7, #341f97);
  color: #fff;
  transform: translateX(5px);
  box-shadow: 0 6px 15px rgba(108, 92, 231, 0.3);
}

.modern-categories li a:hover i {
  color: #fff;
}

/*Blog*/