@import url('https://fonts.googleapis.com/css2?family=Allan:wght@400;700&family=Bebas+Neue&family=Caveat:wght@400..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=DM+Serif+Text:ital@0;1&family=Edu+AU+VIC+WA+NT+Pre:wght@400..700&family=Geist+Mono:wght@100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
    --primary-blue: #1046a9;
    --secondary-blue: #0d3a8a;
    --text-dark: #333333;
    --text-light: #ffffff;
    --border-light: #eaeaea;
    --background-light: #f8f8f8;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --success-color: #2e7d32;
    --warning-color: #ff9800;
    --info-color: #0288d1;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--text-light);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background-color: transparent;
    min-height: 60px;
    transition: all 0.3s ease;
    box-shadow: none; /* Remove initial shadow */
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
    background-color: var(--text-light);
}

.navbar-brand {
    color: var(--primary-blue) !important;
    font-weight: bold;
}

.nav-link {
    color: var(--primary-blue) !important;
    margin: 0 10px;
}

.navbar-toggler{
    background-color: var(--primary-blue);
}

.nav-item {
    display: flex;
    align-items: center;
}

.hero {
    position: relative;
    height: auto;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Ensure the video stays behind the overlay */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1); /* Added scale(1.2) for zoom out effect */
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 75px;
    min-height: 40vh;
    color: var(--text-dark);
}

.hero-content h1 {
    font-size: 3rem; /* Default size for larger screens */
    margin-bottom: 1rem;
    color: var(--primary-blue);
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.7);
    margin-top: 80px;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    max-width: 600px;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.7);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border: 0;
    position: relative;
    overflow: hidden;
    border-radius: 10rem;
    transition: all 0.2s;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-light);
    background-color: var(--primary-blue);
    z-index: 0;
    box-shadow: 0 4px 10px rgba(16, 70, 169, 0.3);
    margin-bottom: 40px;
}

.button:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(16, 70, 169, 0.4);
}

.button:active { transform: scale(0.97); }

.navbar-button {
    padding: 8px 20px !important;
    font-size: 14px !important;
    margin: 0 10px !important;
    height: auto !important;
    line-height: normal !important;
    margin-bottom: 0 !important;
}

.hoverEffect {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.hoverEffect div {
    background: linear-gradient(90deg,
        rgba(16, 70, 169, 0.8) 0%,
        rgba(41, 121, 255, 0.8) 50%,
        rgba(16, 70, 169, 0.8) 100%);
    border-radius: 40rem;
    width: 10rem;
    height: 10rem;
    transition: 0.4s;
    filter: blur(20px);
    animation: effect infinite 3s linear;
    opacity: 0.5;
}

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

.devices-container {
    position: relative;
    z-index: 2;
    margin-top: 80px;
    transform-style: preserve-3d;
    perspective: 1000px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}

.mobile-device {
    max-width: 280px;
    width: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
}

.mobile-device.center {
    transform: translateY(-20px) scale(1.1);
    z-index: 5 !important;
}

.mobile-device.left { transform: rotate3d(0, 1, 0, 15deg); }
.mobile-device.right { transform: rotate3d(0, 1, 0, -15deg); }

.devices-container:hover .mobile-device.left {
    transform: rotate3d(0, 1, 0, 0deg) translateX(-20px);
}

.devices-container:hover .mobile-device.right {
    transform: rotate3d(0, 1, 0, 0deg) translateX(20px);
}

.devices-container:hover .mobile-device.center {
    transform: translateY(-40px) scale(1.1);
}

.tablet-bg{
    background: linear-gradient(145deg, black, black);
    transform-style: preserve-3d;
}

.mobile-body {
    background: linear-gradient(145deg, black, black);
    border-radius: 30px;
    padding: 10px;
    position: relative;
    transform-style: preserve-3d;
}

.mobile-screen {
    background-color: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9/19;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
    border: 1px solid #333;
}

.mobile-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: #000;
    border-radius: 0 0 12px 12px;
    z-index: 2;
}

.mobile-video-container,
.mobile-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.mobile-video,
.mobile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.device-status-bar,
.device-nav-bar {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
}

.device-status-bar {
    top: 0;
    height: 44px;
    background-color: black;
    font-family: -apple-system, system-ui, sans-serif;
    color: white;
    font-size: 12px;
}

.device-nav-bar {
    bottom: 0;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    justify-content: space-around;
}

.mobile-device.center .mobile-video-container {
    top: 44px;
    height: calc(100% - 104px);
}

@media (max-width: 768px) {
    .mobile-device.left,
    .mobile-device.right { display: none; }

    .mobile-device.center {
        transform: none;
        max-width: 320px;
    }

    .hero-content {
        padding-top: 120px;
    }

    .hero-content h1 { 
        font-size: 1.8rem; /* Smaller size for mobile devices */
        line-height: 1.3;
    }
    .hero-content p {
        font-size: 1.2rem;
        padding: 0 15px;
    }

    .steps-section{
        margin-top: -400px !important;
    }

    .cta-heading {
        font-size: 1.5rem !important;
    }

    .cta-text{
        font-size: 0.8rem !important;
    }
    
    .cta-container{
        margin-top: 120px !important;
        width: 90% !important;
    }

    .navbar-nav {
        text-align: center;
    }

    .nav-item {
        justify-content: center;
    }

    .navbar-collapse {
        padding: 20px 0;
    }

    /* Center the contact button */
    .nav-item:last-child {
        margin: 10px auto;
    }

    .navbar-button {
        margin: 0 auto !important;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .hero-content { 
    padding-top: 150px;   
    }
    .devices-container { 
        margin-top: -60px;
        margin-bottom: -40px;
    }
    .mobile-device { max-width: 240px; }
}

@media (min-width: 1201px) {
    .devices-container { 
        margin-top: 40px;
        margin-bottom: -40px;
    }
    .mobile-device { max-width: 280px; }
}


.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.hero-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Larger sizes for tablets and up */
@media (min-width: 768px) {
    .hero-image {
        width: 350px;
        height: 350px;
    }
}

/* Even larger for desktops and large screens */
@media (min-width: 1200px) {
    .hero-image {
        width: 450px;
        height: 450px;
    }
    
    .hero-image-container {
        max-width: 600px;
    }
}

.orbit-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotate 30s linear infinite;
}

.orbit-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dot-1 { top: 10%; left: 10%; background-color: #e0cfff; }
.dot-2 { top: 20%; right: 5%; background-color: #ffd6a5; }
.dot-3 { bottom: 15%; right: 15%; background-color: #a5d7ff; }
.dot-4 { bottom: 25%; left: 5%; background-color: #ffb5b5; }
.dot-5 { top: 50%; right: 0; background-color: #c9ffe5; }

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

.cta-section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    width: 100%;
}

.cta-section + section {
    position: relative;
    height: 100vh;
    z-index: 1;
    
}

.cta-section + section spline-viewer {
    width: 100%;
    height: 100%;
    
}

.spline-cta-wrapper {
    position: relative;
    height: 400px !important;
    overflow: hidden;
    margin: 50px auto;
    max-width: 1650px;
    border-radius: 25px;
    padding: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.spline-background {
    position: absolute;
    width: 100%;
    height: 120% !important;
    top: -15%;
}

.spline-background spline-viewer {
    width: 100%;
    height: 130%;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .spline-cta-wrapper {
        height: 300px !important;
        margin: 30px 20px;
    }
    .spline-background {
        height: 140% !important;
    }
    .spline-background spline-viewer {
        height: 140%;
    }
}

@media (max-width: 480px) {
    .spline-cta-wrapper {
        height: 250px !important;
        margin: 20px 15px;
    }
}

.animated-text-wrapper {
    text-align: left;
    padding-left: 5%;
    color: var(--text-light);
}

.main-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    color: var(--text-light);
}

.text-animation {
    font-size: 1.5rem;
    min-height: 2em;
    color: var(--text-light);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .animated-text-wrapper {
        text-align: center;
        padding-left: 0;
    }
    
    .main-title {
        font-size: 2rem;
        color: var(--text-light);
    }
    
    .text-animation {
        font-size: 1.2rem;
        color: var(--text-light);
    }
}


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



.feature-section {
    padding: 3rem 1rem;
    background-color: white;
    color: black;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--primary-blue) !important;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.7);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-dark);
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.feature-card {
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    background: var(--text-light);
    box-shadow: var(--shadow-sm);
}

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

.feature-tag {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--primary-blue);
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.7);
}

.feature-text {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.7);
}

.feature-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 1.5rem;
}

.feature-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.notification-bubble {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    position: absolute;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.chat-bubble {
    background-color: white;
    padding: 0.75rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    font-size: 0.8rem;
    position: absolute;
    max-width: 160px;
    z-index: 3;
    border: 1px solid #eee;
}

.dashboard-popup {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.75rem;
    position: absolute;
    z-index: 2;
    border: 1px solid #eee;
}

.btn-feature {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.btn-feature:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    .feature-section {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .notification-bubble,
    .chat-bubble,
    .dashboard-popup {
        display: none !important;
    }

   
}

@media (min-width: 768px) {
    .feature-section {
        padding: 4rem 2rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    .feature-section {
        padding: 5rem 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .feature-image {
        margin-top: 0;
    }
}

.avatar-1{
    background-image: url('https://empirewebvideos.s3.us-east-1.amazonaws.com/websites/engagenet/asset/avatar_1.webp');
}

.avatar-2{
    background-image: url('https://empirewebvideos.s3.us-east-1.amazonaws.com/websites/engagenet/asset/avatar_2.webp');
}

.avatar-3{
    background-image: url('https://empirewebvideos.s3.us-east-1.amazonaws.com/websites/engagenet/asset/avatar_3.webp');
}

.avatar-4{
    background-image: url('https://empirewebvideos.s3.us-east-1.amazonaws.com/websites/engagenet/asset/avatar_4.webp');
}

.avatar-5{
    background-image: url('https://empirewebvideos.s3.us-east-1.amazonaws.com/websites/engagenet/asset/avatar_2.webp');
}

.badge{
    top: 15px; 
    right: 15px;
}

.tooltip-1{
    top: 60%; left: 72%;
    width: 160px;
}

.badge-2{
    background-color: rgba(255, 152, 0, 0.1);
    color: var(--warning-color);
}

.tooltip-2{
    bottom: 10px; 
    right: 10px;
}

.engage-image{
    width: 24px;
    height: 24px; 
    overflow: hidden; 
    border-radius: 50%; 
    margin-right: 8px; 
    background-color: #ddd;
}

.badge-3{
    background-color: rgba(46, 125, 50, 0.1); 
    color: var(--success-color);
}

.monetize-image{
    width: 30px; 
    height: 30px; 
    overflow: hidden; 
    border-radius: 50%; 
    margin-right: 8px; 
    background-color: #ddd;
}

.badge-4{
    background-color: rgba(2, 136, 209, 0.1); 
    color: var(--info-color);
}

.tooltip-3{
    bottom: 0; 
    right: 0; 
    background-color: var(--background-light); 
    width: 160px; 
    margin-bottom: 30px; 
    margin-right: 20px;
}

.navbar-logo {
    height: 30px;
    margin-right: 8px;
}

.spline-cta-wrapper {
    position: relative;
    height: 100vh;
}

.spline-background {
    position: absolute;
    width: 100%;
    height: 60%;
    z-index: 1;
    padding: 70px;
}

.cta-section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.feature-image.mt-2 {
    margin-top: 0.5rem;
}

.small.mb-1 {
    margin-bottom: 0.25rem;
}

.small.fw-bold.mb-1 {
    margin-bottom: 0.25rem;
    font-weight: bold;
}

.d-flex.align-items-center.mb-2 {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.brand-container {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-logo {
    height: 35px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-title {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.brand-subtitle {
    font-size: 0.50rem;
    color: rgba(121, 121, 121, 0.8);
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 30px;
    }
    
    .brand-title {
        font-size: 1.1rem;
    }
    
    .brand-subtitle {
        font-size: 0.65rem;
    }
}

.engagement-section {
    position: relative;
    height: 75vh;
    width: 100%;
    overflow: hidden;
  }
  
  .wave-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .wave {
    fill: none;
    stroke: #1a4dc0;;
    stroke-width: 15px;
    stroke-linecap: round;
  }
  
  .avatar {
    position: absolute;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0 , 0, 0, 0.1);
    z-index: 2;
    background-size: cover;
    background-position: center;
  }
  
  .avatar-large {
    width: 120px;
    height: 120px;
    border: 5px solid var(--primary-blue);
  }
  
  .avatar-medium {
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-blue);
  }
  
  .avatar-small {
    width: 60px;
    height: 60px;
  }
  
  .icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #e9ecef;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0 , 0, 0, 0.1);
    z-index: 2;
    transform: rotate(10deg);
  }
  
  .icon svg {
    width: 20px;
    height: 20px;
    color: #495057;
  }
  
  .content-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
  }
  
  .content-container h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #212529;
    margin-bottom: 2.5rem;
  }
  
  .engage-btn {
    background-color: #e9ecef;
    color: var(--primary-blue);
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
  }
  
  .engage-btn:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0 , 0, 0, 0.2);
  }
  
  .floating-element {
    transition: transform 10s ease;
  }
  
  .floating-element:hover {
    transform: translateY(-5px) rotate(5deg);
  }

  .cta-container {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    padding: 3rem;
    max-width: 600px;
    margin: 8% auto;
    text-align: center;
    position: relative;
    z-index: 100;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
  
  .cta-heading {
    font-size: 2.5rem;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #3a7bd5, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .cta-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 2rem;
  }

  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    border: 1px solid #3a7bd5;
    padding: 8px 0px;
    border-radius: 25px;
  }

  .cta-buttons:hover{
   font-weight: bold;
  }

  .pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
}

.pricing-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Mobile devices (up to 767px) */
@media (max-width: 767px) {
    .pricing-card {
        margin-bottom: 1rem;
    }
    
    .pricing-card .card-body {
        padding: 1.5rem !important;
    }
}

/* Tablets (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .row-cols-md-3 > * {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
}

/* Large tablets and desktops (992px and up) */
@media (min-width: 992px) {
    .row-cols-md-3 > * {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
    .pricing-card {
        margin: 1rem;
        max-width: 400px;
    }
    
    .pricing-card .card-body {
        padding: 2.5rem !important;
    }
}

/* Price value and features styling */
.price-value {
    font-size: 1.8rem;
    font-weight: bold;
}

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

.feature-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

/* Card hover effect */
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-section {
    padding: 80px 0;
    background: var(--primary-blue);
    color: #e5e5e5 !important;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: #333;
}

.contact-info {
    padding: 20px;
}

.contact-info-item {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0; 
  }
  
  .contact-info-icon i {
    font-size: 20px;
    color: white;
    line-height: 1;
  }
  

.section-title2 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
    color: white;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #fff;
}

.form-control {
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.form-control:focus {
    box-shadow: none;
    border-color: #6c63ff;
}

.send-btn {
    background-color: blue;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.send-btn:hover {
    background-color: rgb(0, 0, 195);
    transform: translateY(-3px);
}

.required-field {
    color: #ff6b6b;
}

.success-message {
    display: none;
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: -15px;
    margin-bottom: 10px;
    display: none;
}

.footer {
    padding: 4rem 0 2rem;
    background-color: var(--text-light);
    border-top: 1px solid var(--border-light);
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

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

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

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #36f;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: black;
}


.tagline {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.copyright {
    color: #888;
    font-size: 0.85rem;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.language-selector {
    display: flex;
    align-items: center;
}

.language-selector select {
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.globe-icon {
    margin-right: 0.5rem;
}


/*steps section updated*/

        .step-item {
            background: rgba(16, 70, 169, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px 0 rgba(16, 70, 169, 0.1);
            border-radius: 15px;
            padding: 20px;
            height: auto;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .step-item:hover {
            background: rgba(16, 70, 169, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 15px 40px rgba(16, 70, 169, 0.2);
            transform: translateX(5px) scale(1.01);
        }

        .step-item.active {
            background: rgba(16, 70, 169, 0.2);
            border-color: rgba(0, 72, 255, 0.4);
            box-shadow: 0 20px 50px rgba(16, 70, 169, 0.3);
            transform: translateX(5px) scale(1.02);
        }

        .step-number {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(16, 70, 169, 0.2);
            color: #000;
            font-weight: 700;
            padding: 4px 8px;
            border-radius: 4px;
        }

        .center-image {
            max-height: 400px;
            width: auto;
            object-fit: contain;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scale-wrapper {
        transform: scale(0.85);
        transform-origin: top center;
        transition: transform 0.3s ease-in-out;
        z-index: 1000 !important;
        }

        .feature-circles {
            background-color: var(--primary-blue);
        }

        .use-case-title{
            color: var(--primary-blue);
        }

        .suite{
             width: 70px; 
             height: 70px;
        }