:root {
  --primary: #4f46e5;
  --primary-dark: #3730a3;
  --primary-light: #818cf8;
  --secondary: #ec4899;
  --secondary-dark: #db2777;
  --secondary-light: #f472b6;
  --accent: #10b981;
  --dark: #1e293b;
  --darker: #0f172a;
  --light: #f8fafc;
  --white: #ffffff;
  --gray: #64748b;
  --light-gray: #e2e8f0;
  --border-radius: 12px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

  /* Unique from other roots */
  --primary-color: #4e73df;
  --secondary-color: #f8f9fc;
  --accent-color: #2e59d9;
  --text-color: #5a5c69;
  --border-color: #e3e6f0;
  --light-text: #64748b;
  --success: #198754;
  --warning: #ffc107;
  --danger: #dc3545;
  --border: #dee2e6;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
}


body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}
.swal-center-label {
    display: block;
    text-align: center !important;
    width: 100%;
    font-weight: 500;
}

.section-padding {
    padding: 7rem 0;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.bg-gradient-accent {
    background: linear-gradient(135deg, var(--accent), #0d9488);
}

.bg-light-custom {
    background-color: var(--light);
}

.bg-white-custom {
    background-color: var(--white);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.text-gradient-green {
    background: linear-gradient(135deg, var(--accent), #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.free-trial-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), #34d399);
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    font-size: 20px;
    text-decoration: none;
}

.free-trial-float:hover {
    transform: scale(1.1);
}
.btn {
    border-radius: var(--border-radius);
    padding: 0.8rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    text-decoration:none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn1 {
    border-radius: var(--border-radius);
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    text-decoration:none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.btn-secondary-custom {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    border: none;
}

.btn-secondary-custom:hover {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.3);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--dark);
    border: 2px solid rgba(30, 41, 59, 0.2);
}

.btn-outline-custom:hover {
    background-color: rgba(30, 41, 59, 0.05);
    color: var(--dark);
    border-color: rgba(30, 41, 59, 0.3);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-accent-custom {
    background: linear-gradient(135deg, var(--accent), #0d9488);
    color: var(--white);
    border: none;
}

.btn-accent-custom:hover {
    background: linear-gradient(135deg, #0d9488, var(--accent));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

/* Comman CSS */

/* Contact Section */
.help-section {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.help-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.help-title {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.help-text {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Page Container */

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

.domain-hero-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 4rem 2rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.domain-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.domain-hero-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 80%;
  height: 80%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.domain-hero-title {
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.domain-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 700px;
  position: relative;
  z-index: 1;
}



/* Navbar */
.navbar {
    padding: 1.5rem 0;
    transition: var(--transition);
    z-index: 1000;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--dark) !important;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    margin: 0 0.75rem;
    padding: 0.5rem 0 !important;
    position: relative;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

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

.fa.fa-bars {
    width: 24px;
    height: 17px;
    position: relative;
    transition: var(--transition);
}

.fa.fa-bars::before,
.fa.fa-bars::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--dark);
    left: 0;
    transition: var(--transition);
}

.fa.fa-bars::before {
    top: 0;
}

.fa.fa-bars::after {
    bottom: 0;
}

.fa.fa-bars span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--dark);
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.navbar-toggler[aria-expanded="true"] .fa.fa-bars::before {
    transform: translateY(7.5px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .fa.fa-bars::after {
    transform: translateY(-7.5px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .fa.fa-bars span {
    opacity: 0;
}

/* ===== Dropdown visuals ===== */
.navbar-nav .dropdown {
    position: relative; /* ensure the hover works for the whole item */
}

/* hide bootstrap default caret */
.navbar-nav .dropdown-toggle::after {
    display: none;
}

/* custom caret */
.navbar-nav .dropdown-toggle {
    padding-right: 1.25rem; /* room for caret */
    position: relative;
}
.navbar-nav .dropdown-toggle::before {
   display: none;
    /* make caret darker on scrolled/light background */
}

/* Dropdown menu style */
.navbar-nav .dropdown-menu {
    border: none;
    border-radius: 10px;
    padding: 0.4rem;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(18, 25, 40, 0.12);
    transition: opacity 180ms ease, transform 180ms ease;
    opacity: 0;                /* we'll animate in for hover */
    transform: translateY(8px);
    visibility: hidden;
    margin-top: 0.5rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,250,0.98));
}

/* each item */
.navbar-nav .dropdown-item {
    padding: 0.6rem 1rem;
    font-size: 0.92rem;
    color: var(--dark);
    border-radius: 6px;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
    white-space: nowrap;
}

.navbar-nav .dropdown-item:hover {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    transform: translateX(4px);
}

/* keep dropdown visible when parent hovered (desktop) */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu,
    .navbar-nav .dropdown.show > .dropdown-menu {
        display: block; 
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    .navbar-nav .dropdown-toggle {
        cursor: pointer;
    }
}

/* Mobile: use Bootstrap default stacking but keep menu style */
@media (max-width: 991.98px) {
    .navbar-nav .dropdown-menu {
        box-shadow: 0 8px 20px rgba(18,25,40,0.08);
        background: #fff;
        opacity: 1;
        transform: none;
        visibility: visible;
    }

    /* keep caret look smaller on mobile */
    .navbar-nav .dropdown-toggle::before {
        right: 0.75rem;
        width: 0.5rem;
        height: 0.5rem;
        border-width: 2px;
    }
}


/* ensure the dropdown doesn't overflow the viewport on small screens */
.dropdown-menu {
    max-width: calc(100vw - 40px);
}

/* Make sure active underline effect doesn't conflict with dropdown */
.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link:hover {
    color: var(--dark);
}


/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--white);
    padding-top: 80px;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    padding: 6rem 0;
}

.company_section {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 1.5rem;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 30px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.company_section i {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 4.2rem !important;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-span-title{
    font-size: 2rem !important;
    color: var(--gray);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--gray);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.floating-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.5;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(79, 70, 229, 0) 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    bottom: 10%;
    right: 5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, rgba(236, 72, 153, 0) 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.shape-3 {
    top: 40%;
    right: 15%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0) 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

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

/* Builder Mockup */
.builder-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    perspective: 1000px;
}

.builder-mockup {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s ease;
    border: 1px solid var(--light-gray);
}

.builder-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.builder-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--light);
    border-bottom: 1px solid var(--light-gray);
}

.builder-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.builder-logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.builder-logo-text {
    font-weight: 600;
    font-size: 16px;
    color: var(--dark);
}

.builder-actions {
    display: flex;
    gap: 10px;
}

.builder-action-btn {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    background: var(--light);
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.builder-action-btn:hover {
    background: var(--light-gray);
}

.builder-action-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
}

.builder-action-btn.primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.builder-content {
    display: flex;
    height: 400px;
}

.builder-sidebar {
    width: 220px;
    background: var(--light);
    padding: 15px;
    border-right: 1px solid var(--light-gray);
    overflow-y: auto;
}

.sidebar-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--light-gray);
}

.element-category {
    margin-bottom: 20px;
}

.category-title {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.element-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.element-item:hover {
    background: var(--light-gray);
}

.element-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
}

.element-name {
    font-size: 12px;
    color: var(--dark);
}

.builder-canvas {
    flex: 1;
    position: relative;
    background: #f0f2f5;
    overflow: hidden;
}

.canvas-container {
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 20px;
}

.website-preview {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.preview-logo {
    font-weight: 600;
    color: #333;
}

.preview-nav {
    display: flex;
    gap: 15px;
}

.preview-nav-item {
    font-size: 14px;
    color: #6c757d;
    cursor: pointer;
}

.preview-nav-item.active {
    color: var(--primary);
    font-weight: 500;
}

.preview-hero {
    display: flex;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.hero-content {
    flex: 1;
    padding-right: 20px;
}

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

.hero-button {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.hero-image {
    width: 40%;
}

.hero-img-placeholder {
    width: 100%;
    height: 120px;
    background: #dee2e6;
    border-radius: 8px;
}

.preview-features {
    display: flex;
    padding: 20px;
    gap: 15px;
}

.feature-card {
    flex: 1;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.feature-desc {
    font-size: 12px;
    color: #6c757d;
}

/* Editor Elements */
.cursor {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(79, 70, 229, 0.5);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: none;
}

.dragging-element {
    position: absolute;
    padding: 8px 12px;
    background: var(--primary);
    color: white;
    border-radius: 4px;
    font-size: 12px;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: none;
}

.highlight-effect {
    position: absolute;
    border: 2px dashed var(--primary);
    border-radius: 4px;
    pointer-events: none;
    z-index: 5;
    display: none;
}

.property-panel {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 240px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 20;
    display: none;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #e9ecef;
}

.panel-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.panel-close {
    cursor: pointer;
    color: #6c757d;
}

.panel-section {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
}

.section-title {
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.property-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.property-label {
    width: 40%;
    font-size: 12px;
    color: #333;
}

.property-input {
    width: 60%;
    padding: 4px 8px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 12px;
}

/* Award Section */
.award-container {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
}

.award-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.award-icon {
    width: 60px;
    height: 60px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    flex-shrink: 0;
}

.award-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--dark);
}

.award-details label {
    font-size: 0.85rem;
    color: var(--gray);
}


.about_section {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 30px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.about_us_subheading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.about_us_description {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

.image-wrapper {
    position: relative;
    padding: 1rem;
}

.main-image {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.small-image {
    position: absolute;
    width: 60%;
    bottom: -2rem;
    left: -2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--white);
}

.experience-badge {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
    max-width: 200px;
    animation: pulse 2s infinite;
}
.experience-badge:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.experience-badge h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.experience-badge p {
    font-size: 0.85rem;
    margin-bottom: 0;
    opacity: 0.9;
}


/* About Us Features */
.about-feature-card {
    transition: all 0.3s ease !important;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    height: 100%;
    border: none !important;
    margin: 15px 10px;
}

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

.about-feature-card:hover .about-feature-icon {
    transform: scale(1.1);
}

.about-feature-icon {
    transition: all 0.3s ease;
     min-width: 60px !important; 
    min-height: 60px !important; 
    max-width: 60px  !important; 
    max-height: 60px !important; 
}

.about-badge {
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.7rem;
    padding:10px 15px;
}

/* Owl Carousel Custom Navigation */
.owl-nav {
    position: relative;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center !important;
    margin-top:30px !important;
    pointer-events: none;
    padding: 0 -30px;
}

.owl-prev, .owl-next {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 24px !important;
    position: static !important;
    margin: 0 10px !important;
    box-shadow: 0 10px 20px rgba(78, 115, 223, 0.3) !important;
    opacity: 0.9 !important;
    transition: all 0.3s ease !important;
    pointer-events: auto !important;
}

.owl-prev:hover, .owl-next:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color)) !important;
    opacity: 1 !important;
    transform: scale(1.1) !important;
}

.owl-prev span, .owl-next span {
    font-size: 30px !important;
    line-height: 0 !important;
    position: relative !important;
    top: -3px !important;
}

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

.owl-item.active .feature-card {
    animation: fadeInUp 0.5s ease forwards;
}

/* Separator animation */
.separator {
    position: relative;
    overflow: hidden;
}

.separator::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to {
        left: 100%;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .owl-nav {
        position: relative;
        margin-top: 20px;
        justify-content: center;
        gap: 20px;
    }
    
    .owl-prev, .owl-next {
        position: static !important;
        margin: 0 10px !important;
        transform: none !important;
    }
    
    .feature-card {
        margin: 10px 5px;
    }
}

/* Features Section */
.features_section {
    background-color: var(--light);
    padding: 3rem;
}

.features_heading {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
    text-align: center;
}

.features_heading::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px; /* Space below heading */
    transform: translateX(-50%);
    width: 60px; /* Line width */
    height: 4px; /* Line thickness */
    background-color: var(--primary);
    border-radius: 2px;
}

.features_paragraph {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.features_section_container {
    margin-top: 4rem;
    background-color: var(--light);
}

.features_section_container_row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.features_section_container_row_icon {
    width: 50px;
    height: 50px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.features_section_container_row_heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.features_section_container_row_details {
    flex: 1;
}

.features_boxes{
    margin-top:20px;
}
.features_boxes .row {
    display: flex;
    flex-wrap: wrap; 
}
.features_row_column {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%; 
}
.features_column{
    padding: 40px 30px;
    border-radius: 10px;
}
.features_column.orange{
    background-color: #fff3e2;
}
.features_column.orange i{
    color: #edb86e;
    font-size:45px;
}
.features_column.blue{
    background-color: #deedfd;
}
.features_column.blue i{
    color: #20a5f8;
    font-size:45px;
}
.features_column.green{
    background-color: #d5f1e4;
}
.features_column.green i{
    color: #48c88a;
    font-size:45px;
}
.features_column.red{
    background-color: #fdeded;
}
.features_column.red i{
    color: #f28484;
    font-size:45px;
}
.feature_box_heading{
    color: #333333;
    font-size:20px;
    font-weight:600;
}
.feature_box_subdescription{
    color: #000;
    font-weight:500;
}


.custom-container {
    position: relative;
    z-index: 2;
    padding: 5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
}

.custom-call-to-action1 {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(236, 72, 153, 0.05));
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.custom-btn-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.custom-btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
    color: var(--white);
}

.custom-shape {
    position: absolute;
    opacity: 0.1;
}

.custom-shape-1 {
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
}

.custom-shape-2 {
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
}

.custom-shape-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    opacity: 0.05;
}

.custom-shape svg {
    width: 100%;
    height: 100%;
    fill: var(--primary);
}

.custom-dots {
    position: absolute;
    opacity: 0.1;
    z-index: 1;
}

.custom-dots-1 {
    top: 20%;
    right: 10%;
    width: 150px;
    height: 150px;
}

.custom-dots-2 {
    bottom: 20%;
    left: 10%;
    width: 150px;
    height: 150px;
}

.custom-dots svg {
    width: 100%;
    height: 100%;
    color: var(--dark);
}

/* Stats Section */
.unique-stat-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(236, 72, 153, 0.05));
    border-top: 1px solid rgba(79, 70, 229, 0.1);
    border-bottom: 1px solid rgba(79, 70, 229, 0.1);
}

.unique-stat-item {
    padding: 2rem;
}

.unique-stat-counter {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: block;
    margin-bottom: 1rem;
}

.unique-stat-item p {
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 0;
}

/* Services Section */
.service_section {
    padding: 7rem 0;
    background-color: var(--light);
}

.row_services_section {
    margin-top: 3rem;
}
.purchage_section{
    margin-top:80px !important;
}

.services_row {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.services_row_icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.services_row.cyan{
    background: linear-gradient(135deg, #00bcd4, #03a9f4);
}
.services_row.orangee{
    background: linear-gradient(135deg, #ff9800, #ff5722);
}
.services_row.teal{
    background: linear-gradient(135deg, #009688, #4caf50);
}
.services_row.redd{
    background: linear-gradient(135deg, #f44336, #e91e63);
}
.services_row.indigo{
    background: linear-gradient(135deg, #3f51b5, #673ab7);
}
.services_row.pink{
    background: linear-gradient(135deg, #e91e63, #9c27b0);
}

.services_row.cyan .services_row_icon {
    color: #00bcd4;
}

.services_row.orangee .services_row_icon {
    color: #ff9800;
}

.services_row.teal .services_row_icon {
    color: #009688;
}

.services_row.redd .services_row_icon {
    color: #f44336;
}

.services_row.indigo .services_row_icon {
    color: #3f51b5;
}

.services_row.pink .services_row_icon {
    color: #e91e63;
}

.services_row_heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    display: block;
}

.services_row_subdescription {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    display: block;
    margin-bottom: 1.5rem;
}



/* Pricing Section */
.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    border: 1px solid var(--light-gray);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); 
    border-color: rgba(79, 70, 229, 0.3);
}
.pricing-card2{
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--light-gray);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.pricing-card2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(79, 70, 229, 0.3);
}
.pricing-card2 .row .col-lg-8{
    padding-top:20px;
}
@media screen and (max-width: 1048px) {
    .pricing-card2 .row .col-lg-8{
        padding:10px 20px 20px 30px !important;
    }    
}

.pricing-card1{
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem 2rem;
    border: 1px solid var(--light-gray);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.pricing-card1:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(79, 70, 229, 0.3);
}
.pricing-card.popular-plan {
    border-color: rgba(79, 70, 229, 0.3);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.popular-plan:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: 15px;
    right: -40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 0.5rem 3rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top:20px;
    transform: rotate(45deg);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.pricing-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.pricing-card h2 span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

.pricing-card p {
    color: var(--gray);
    font-weight:bold;
    margin-bottom: 1rem;
}

.pricing-card h4 {
    font-size: 1.2rem;
    color: var(--dark);
    font-weight:400;
    margin-bottom: 1rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-card ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size:1rem;
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.pricing-card ul li i {
    color: var(--accent);
    font-size: 1rem;
}

.pricingbtn {
    width: 100%;
    padding: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

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

/* FAQ Section */
.faq_section {
    padding: 7rem 0;
    background-color: var(--light);
}

.faq_section_heading {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.faq_section_description {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.faq-arrow {
    max-width: 150px;
    height: auto;
    margin-top: 2rem;
    color: var(--primary);
    opacity: 0.5;
}

.custom-collapse {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--light-gray);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.custom-collapse:hover {
    border-color: rgba(79, 70, 229, 0.3);
}

.collapse-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.collapse-header span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
}

.custom-collapse.open .collapse-header i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.custom-collapse.open .collapse-header span{
    color: var(--primary);
}
.custom-collapse.open .collapse-header i {
    transform: rotate(90deg);
}

.collapse-content {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.custom-collapse.open .collapse-content {
    padding: 0 2rem 1.5rem;
    max-height: 500px;
}

.collapse-content p {
    color: var(--gray);
    margin-bottom: 0;
}

/* Contact Section */
.contact_section{
    background-color: var(--light);
}
.contact_row {
    margin-top: 3rem;
    margin-bottom: 5rem; /* Added more space before footer */
}

.contact_row_left {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    height: 100%;
    border: 1px solid var(--light-gray);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact_row_left_heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    display: block;
}

.contact_row_left_description {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    display: block;
    margin-bottom: 2rem;
}
.btn-primary-custom {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  transition: var(--transition);
  border-radius: var(--border-radius);
}

.btn-primary-custom:hover {
  background-color: var(--primary-dark);
}

.input {
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  padding: 0.75rem;
  font-size: 1rem;
  transition: var(--transition);
}

.input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}
.contact_icon {
    width: 50px;
    height: 50px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact_row_right {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    height: 100%;
    border: 1px solid var(--light-gray);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact_row_right_heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    display: block;
}

.contact_row_right_subheading {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    display: block;
    margin-bottom: 1.5rem;
}

.input {
    background: var(--white);
    border: 1px solid var(--light-gray);
    color: var(--dark);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.input:focus {
    border-color: rgba(79, 70, 229, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.25);
    color: var(--primary); /* focus hone par jo color chahiye */
}
.input::placeholder {
    color: var(--gray);
}

.free_trial_button{
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}
.free_trial_button:hover {
    color:#fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}
.contact_button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    width: 100%;
}

.contact_button:hover {
    color:#fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg,#0f172a,#1e293b);
    padding: 5rem 0 0;
    position: relative;
    color: var(--light);
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--light);
    margin-bottom: 2rem;
    font-size:0.9rem;
}

.footer-title {
    color: var(--light);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(5px);
}

textarea{
    resize:none;
}
.footer-newsletter .btn {
    width: 100%;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 4rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e6f0ff; /* light blue bg */
    color: #007bff; /* Bootstrap primary blue */
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.footer-social a:nth-child(1) { color: #FF0000; } /* Youtube */
.footer-social a:nth-child(2) { color: #000000; } /* Twitter */
.footer-social a:nth-child(3) { color: #1da1f2; } /* LinkedIn */
.footer-social a:nth-child(4) { color: #e1306c; } /* Instagram pinkish */

.footer-social a:hover {
    background-color: #007bff;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}


/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

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

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

/* Responsive */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.7rem !important;
    }
    
    .features_heading {
        font-size: 2.5rem;
    }
    
    .faq_section_heading {
        font-size: 2.5rem;
    }
    .custom-shape-1{
        display: none;
    }
    .custom-shape-2{
        display: none;
    }
    .custom-shape-3{
        display: none;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem !important;
    }
    
    .hero-image {
        margin-top: 3rem;
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 1.5rem;
        border-radius: var(--border-radius);
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .about_us_right_container {
        margin-top: 3rem;
    }
    
    .pricing-card.popular-plan {
        transform: scale(1);
    }
    
    .pricing-card.popular-plan:hover {
        transform: translateY(-10px);
    }
    
    .contact_row_right {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 3.2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .features_heading {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .custom-container {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 575px) {
    .navbar-toggler{
        margin-right:20px !important;
    }
    .left_hero_section{
        margin-left:10px !important;
    }
    .hero-title {
        font-size: 3rem !important;
    }
    .hero-span-title{
        font-size:1.7rem !important;
        margin-bottom:20px !important;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .section-padding {
        padding: 5rem 0;
    }
    
    .features_heading {
        font-size: 1.75rem;
    }
    
    .faq_section_heading {
        font-size: 1.75rem;
    }
    
    .contact_row_left, 
    .contact_row_right {
        padding: 2rem 1.5rem;
    }
    .experience-badge{
        display: none;
    }
    .unique-stat-counter{
        font-size: 2rem;
    }
    .small-image{
        display: none;
    }
    .page-container{
        margin-top:20px;
        padding:10px !important;
    }
    .navbar-brand {
        font-size: 1.5rem;
    }
    .features_section {
        background-color: var(--light);
        padding:0.5rem;
    }

}
@media (max-width: 500px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
}
@media (max-width: 350px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
}
@media (max-width: 300px) {
    .navbar-brand {
        font-size: 1rem;
    }
}


/* Pagination */
.pagination-container {
    margin-top: 40px;
}
.pagination {
    flex-wrap: wrap;
}
.pagination .page-item {
    margin: 4px;
}
.pagination .page-link {
    border: 1px solid var(--primary);
    color: var(--primary);
    background-color: #fff;
    border-radius: 6px;
    padding: 8px 14px;
    font-weight: 500;
}
.pagination .page-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}
.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
}


.original-price {
    font-size: 22px !important;    
    text-decoration: line-through;  
    color:  #888;
    margin-right: 10px;        /* Optional: space from discounted price */
}




/* */



/* E-commerce Spotlight Section */
.ecommerce-spotlight-section {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.02), rgba(236, 72, 153, 0.02));
    position: relative;
}

.spotlight-content {
    padding: 2rem 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 1.5rem;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 30px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.spotlight-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
    line-height: 1.2;
}

.spotlight-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.feature-highlights {
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(79, 70, 229, 0.3);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: var(--gray);
    margin: 0;
    font-size: 0.9rem;
}

.spotlight-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* E-commerce Mockup */
.spotlight-visual {
    position: relative;
    padding: 2rem;
}

.ecommerce-mockup {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.mockup-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.mockup-nav {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.mockup-nav span {
    opacity: 0.9;
    cursor: pointer;
}

.mockup-content {
    padding: 1.5rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-card {
    background: var(--light);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, var(--light-gray), #cbd5e1);
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.product-info h4 {
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.price {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.add-to-cart {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart:hover {
    background: var(--primary-dark);
}

.features-banner {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.features-banner .feature-badge {
    flex: 1;
    justify-content: center;
    padding: 0.5rem;
    font-size: 0.7rem;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.element-2 {
    bottom: 30%;
    left: -10%;
    animation-delay: 1s;
}

.element-3 {
    top: 60%;
    right: -5%;
    animation-delay: 2s;
}

.notification, .analytics, .customer {
    background: var(--white);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--dark);
    border: 1px solid var(--light-gray);
}

.notification i {
    color: #f59e0b;
}

.analytics i {
    color: var(--accent);
}

.customer i {
    color: var(--primary);
}

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

/* Testimonials Section Styles */
.testimonials-section {
    background: var(--light);
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.testimonials-grid {
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--light-gray);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(79, 70, 229, 0.3);
}

.testimonial-card.featured {
    border-color: rgba(79, 70, 229, 0.3);
    transform: scale(1.02);
}

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

.featured-badge {
    position: absolute;
    top: 15px;
    right: -40px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: var(--white);
    padding: 0.5rem 3rem;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.quote-icon {
    font-size: 1.5rem;
    color: rgba(79, 70, 229, 0.3);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: var(--dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.user-info p {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.location {
    color: var(--gray);
    font-size: 0.8rem;
}

.business-stats {
    display: flex;
    gap: 1.5rem;
}

.business-stats .stat {
    text-align: center;
    flex: 1;
}

.business-stats .stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.3rem;
}

.business-stats .stat-label {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Success Stats */
.success-stats {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
}

.success-stats .stat-item {
    padding: 1.5rem;
}

.success-stats .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 1rem;
}

.success-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: block;
    margin-bottom: 0.5rem;
}

.success-stats .stat-label {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 991px) {
    .spotlight-title {
        font-size: 2.5rem;
    }
    
    .spotlight-visual {
        margin-top: 2rem;
        padding:1rem;
    }
    
    .ecommerce-mockup {
        transform: scale(0.9);
    }
    
    .testimonial-card.featured {
        transform: scale(1);
    }
    
    .testimonial-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 767px) {
    
    
    .spotlight-title {
        font-size: 2rem;
    }
    
    .spotlight-cta {
        flex-direction: column;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .features-banner {
        flex-direction: column;
    }
    
    .business-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .success-stats .stat-number {
        font-size: 2rem;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 575px) {
    .spotlight-title {
        font-size: 1.75rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .ecommerce-mockup {
        transform: scale(0.8);
    }
}


.whatsapp-fixed-button {
    position: fixed;
    bottom: 20px; 
    right: 20px;
    z-index: 1000; 
}

.whatsapp-icon {
    background-color: #25D366; 
    color: white;
    font-size: 30px; 
    padding: 10px;
    border-radius: 50%; 
    display: block;
    animation: shine 2s infinite ease-in-out;
    transition: transform 0.3s ease;
}
.whatsapp-fixed-button a {
    text-decoration: none; /* This removes the underline */
}
.whatsapp-icon:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
}

@keyframes shine {
    0% {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(37, 211, 102, 0.8), 0 0 30px rgba(37, 211, 102, 0.6); /* Green glowing effect */
    }
    100% {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
}


/* 500 Rupee Offer */
.professional-modal {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #27ae60;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
}

.professional-modal .modal-content {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.professional-modal .modal-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 0;
    border: none;
    position: relative;
}

.professional-modal .brand-header {
    padding: 25px 30px;
    text-align: center;
    color: white;
    position: relative;
}

.professional-modal .brand-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
    letter-spacing: 1px;
}

.professional-modal .btn-close {
    position: absolute;
    top: 15px;
    right: 20px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    opacity: 1;
}

.professional-modal .modal-body {
    padding: 20px 15px;
}

.professional-modal .referral-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid #e9ecef;
}

.professional-modal .referral-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.professional-modal .referral-title {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.professional-modal .referral-amount {
    color: var(--accent-color);
    font-weight: 800;
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(39, 174, 96, 0.2);
}

.professional-modal .referral-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.professional-modal .referral-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 576px) {
    .professional-modal .modal-body {
        padding: 25px 20px;
    }
    
    .professional-modal .referral-card {
        padding: 20px;
    }
}