 body {
            font-family: 'Poppins', sans-serif;
            /* background: linear-gradient(to bottom right, #d7d1f3,); */
            background-color:#d7d1f3;
            color: #1a1a1a;
        }
        /* Remove horizontal scrollbar */
body {  
    overflow-x: hidden;
}

        /* Navbar */
        .navbar{
            background-color:#d7d1f3;
            height: 70px;
            /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
            font-size: 18px !important;
        }
        .nav-link {
            font-weight: 500;
            /* background-color: violet; */

        }
        .nav-links {
  list-style: none;
  display: flex;
  gap: 40px; /* spacing between menu items */
}

.nav-links a {
  text-decoration: none;
  color: #f2e3e3;
  font-size: 18px;
}







        img{
            
            width: 125px;
         }

        /* Hero Section */
        .hero-section {
    /* background-color: #d7d1f3; */
    background-image: url('images/data-removebg-preview.png');
    border-radius: 20px;  
    padding-bottom: 60px; 
}

        .hero-title {
            font-size: 80px;
            font-weight: 650;
            text-align: center;
            margin-top:190px;
            /* background-color: #EDE9FE; */
        }

        .hero-subtitle {
            max-width: 750px;
            margin: 20px auto;
            text-align: center;
            font-size: 18px;
            color: #555;
            margin-top: 30px;
        }

        /* Gradient Button */
        .gradient-btn {
            display: inline-block;
            background: linear-gradient(90deg, #7c3aed, #9333ea);
            padding: 14px 35px;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            font-size: 18px;
            text-decoration: none;
            transition: .3s ease;
            box-shadow: 0px 6px 15px rgba(124, 58, 237, 0.3);
        }

        .gradient-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0px 10px 20px rgba(124, 58, 237, 0.5);
        }

        /* Trusted Brand Section */
        .brand-section {
            background: #7c3aed;
            padding: 50px 0;
            margin-top: 200px;
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
            text-align: center;

        }

        .brand-section h5 {
            color: white;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .brand-logo {
            height: 30px;
            margin: 20px;
            opacity: 0.9;
            transition: 0.3s ease;
            width:60px ;
        }

        .brand-logo:hover {
            opacity: 1;
            transform: scale(1.1);
        }
        .section-title {
    font-size: 36px;
    font-weight: 700;
}

.section-subtitle {
    color: #555;
    margin-top: 10px;
}

/* Work Cards */
.work-card {
    background:rgb(253, 253, 253);
    border-radius: 15px;
    padding: 30px 20px;
    margin: 15px 0;
    transition: .3s ease;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.15);
}

.icon-box {
    font-size: 50px;
    background: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    margin-bottom: 15px;
}
.h5{
    font-weight: 600;
}
/* Demo Button */
.demo-btn {
    display: inline-block;
    background: linear-gradient(90deg, #7c3aed, #9333ea);
    padding: 12px 40px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(124, 58, 237, 0.4);
    transition: .3s ease;
}

.demo-btn:hover {
    transform: translateY(-3px);
}

/* Feature Cards */
.feature-card {
    background: #7c3aed;
    border-radius: 15px;
    padding: 30px 20px;
    margin: 15px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: .3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.section-title {
    font-size: 36px;
    font-weight: 700;
}

.section-subtitle {
    color: #555;
    margin-top: 10px;
}

/* Pricing Card */
.price-card {
    background: #ffffff;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: .3s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-5px);
}

/* Popular Plan Highlight */
.popular-card {
    border: 2px solid #7c3aed;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #7c3aed;
    color: white;
    padding: 5px 15px;
    font-size: 12px;
    border-radius: 15px;
    font-weight: 600;
}

.plan-title {
    font-size: 22px;
    font-weight: 700;
}

.price {
    font-size: 40px;
    font-weight: 800;
    color: #7c3aed;
}

.price span {
    font-size: 16px;
    color: #555;
}

.billing-note {
    color: #777;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    text-align: left;
    padding-left: 0;
    margin-bottom: 20px;
}

.feature-list li {
    font-size: 15px;
    padding: 4px 0;
}

.feature-list li::before {
    font-weight: bold;
}

.add-title {
    font-size: 16px;
    font-weight: 700;
    margin-top: 15px;
}

/* Button */
.price-btn {
    display: block;
    background: #7c3aed;
    color: white;
    padding: 12px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: .3s;
}

.price-btn:hover {
    background: #5b21b6;
}
.feature-scroll {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.feature-scroll::-webkit-scrollbar {
    height: 8px;
}

.feature-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
.feature-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.feature-card {
    min-width: 260px; /* Card size for horizontal scroll */
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

        body {
            background: #f5f5f5;
        }

        .card-slider {
            width: 100%;
            overflow: hidden;
            padding: 40px 0;
        }

        /* Slider track */
        .slider-track {
            display: flex;
            gap: 40px;
            animation: scroll 25s linear infinite;
        }

        /* Each card */
        .theme-card-container {
            /* background-color: ; */
            margin-top: 100px;
        }
        .theme-card {
            width: 280px;
            height: 520px;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
            background: #fff;
        }

        .theme-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Auto-scroll animation */
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Duplicate track for seamless loop */
        .slider-wrapper {
            display: flex;
            gap: 40px;
        }
        /* Auto Scrolling Feature Slider */
.feature-auto-slider {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
}

.feature-track {
    display: flex;
    gap: 25px;
    animation: featureScroll 35s linear infinite;
}

.feature-box {
    min-width: 260px;
    background: #d7d1f3;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

@keyframes featureScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


 /* Section Style */
.trusted-brands {
    background: linear-gradient(90deg, #4b0082, #6a0dad);
    padding: 60px 20px;
    text-align: center;
    color: white;
    margin-top: 200px;
}

.trusted-brands h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Slider Wrapper */
.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Track that moves */
.slide-track {
    display: flex;
    width: calc(200px * 16); /* 16 logos (8 original + 8 duplicates) */
    animation: scroll 22s linear infinite;
}

/* Logo Size */
.brand-logo {
    width: 40px;
    height: 40px;
    margin: 0 40px;
    object-fit: contain;
    filter: brightness(1) drop-shadow(0px 3px 6px rgba(0,0,0,0.2));
}

/* Keyframes */
@keyframes featureScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-80%); }
}

/* Pricing Section Styling */
.price-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;                    
    display: flex;
    flex-direction: column;
}

/* Title */
.plan-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Price */
.price {
    font-size: 36px;
    font-weight: 700;
    color: #6a0dad;
    margin-bottom: 5px;
}

.price span {
    font-size: 16px;
    color: #555;
}

.billing-note {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

/* Features */
.features-section{
    text-align: center;
    margin-bottom: 20px;
    background-color: white;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.feature-list li {
    font-size: 14px;
    padding: 6px 0;
    color: #444;
}

/* Additional Title */
.add-title {
    font-size: 16px;
    font-weight: 600;
    margin: 15px 0 10px;
    color: #6a0dad;
}

/* Button */
.price-btn {
    margin-top: auto;               /* 👈 Pushes button to bottom of box */
    display: inline-block;
     background: linear-gradient(90deg, #9b5cf6, #7a2ef7);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.price-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.3);
}

/* Popular Plan */
.popular-card {
    border: 2px solid #8a2be2;
    transform: scale(1.03);
}

.popular-badge {
    background: #8a2be2;
    color: white;
    font-size: 14px;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}
.service-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    height: 100%;                     /* makes all cards equal height */
    display: flex;
    flex-direction: column;
    transition: 0.3s ease-in-out;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.title {
    font-size: 24px;
    font-weight: 700;
    color: #070707; /* purple */
    margin-bottom: 10px;
}

.price {
    font-size: 40px;
    font-weight: 800;
    color: #5b00d4;
    margin-bottom: 15px;
}

.price span {
    font-size: 18px;
    color: #555;
}

.description {
    font-size: 15px;
    color: #555;
    margin-bottom: 30px;
    flex-grow: 1;                    /* pushes button to bottom */
}

/* Button */
.service-btn {
    display: block;
    background: linear-gradient(90deg, #9b5cf6, #7a2ef7);
    text-align: center;
    padding: 14px 0;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.service-btn:hover {
    box-shadow: 0 6px 20px rgba(106, 10, 214, 0.4);
    transform: translateY(-3px);
}
/* Section background + spacing */
.theme-section {
    background: #ffffff;
    padding: 60px 0;
    /* margin-top: 10px; */
}

/* Slider container */
.card-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 30px;
}

/* Track that moves the cards */
.slider-track {
    display: flex;
    width: calc(300px * 10); /* 10 cards (5 + 5 duplicate) */
    animation: scroll 25s linear infinite;
}

/* Each wrapper contains 5 cards */
.slider-wrapper {
    display: flex;
}

/* Card design */
.theme-card {
    min-width: 260px;
    height: 400
}
.icon-box {
    font-size: 35px;
    color: #6a00ff;
    margin-bottom: 15px;
}
.footer-section {
    /* background: linear-gradient(to right, #3b0b8a, #5315b8, #5817bf);
     */
     background-color: #d7d1f3;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #171414;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #201e1e;
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 22px;
    color: #2d2a2a;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ffd700;
}

hr {
    border-color: rgba(16, 16, 16, 0.3);
}
.brands-section {
    /* background: linear-gradient(to right, #3b0b8a, #5315b8, #5817bf);
     */
    background-color: #7c3aed;    
    overflow: hidden;
    margin-top: -14px;
    height: 200px;
}

.brand-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slide-track {
    display: flex;
    width: calc(200px * 14); /* 7 logos × repeat 2 */
    animation: scroll 25s linear infinite;
}

.slide {
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.slide img {
    width: 48px;
    height: auto;
    filter: brightness(1);
    transition: 0.3s;
}

.slide img:hover {
    transform: scale(1.15);
    filter: brightness(1.2);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 7)); 
    }
}
.footer-section {
    background-color: #D7D1F3 !important;
    color: #000;
}

.footer-links a {
    color: #333;
}

.footer-links a:hover {
    color: #000;
}

hr {
    border-color: rgba(0,0,0,0.3);
}

.social-icons a {
    color: #000;
}

.social-icons a:hover {
    color: #555;
}
section-title {
    color: #121111;
    font-size: x-large;
}
.hero-section {
  background: #dfd6fa;
  padding: 90px 0;
  height:  800px;
}

.hero-title {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
  color: #000;
  margin-top: 200px;
  text-align: center;
}

.hero-desc {
  max-width: 650px;
  margin: 0 auto;
  font-size: 18px;
  color: #3a3a3a;
  line-height: 1.6;
}

.create-btn {
  background: linear-gradient(90deg, #9b5cf6, #7a2ef7);
  color: #fff;
  padding: 12px 35px;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0px 10px 25px rgba(123, 54, 255, 0.4);
  transition: 0.3s ease;
}

.create-btn:hover {
  opacity: 0.9;
}
.work-section .icon-box {
    font-size: 40px;
    width: 60px;
    height: 60px;
}
.works-section {
    background: #e7ddfa;
    padding: 80px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #1d1d1d;
}

.section-subtitle {
    font-size: 18px;
    color: #505050;
}

.work-card {
    margin-top: 40px;
    padding: 10px;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}



.work-title {
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
    color: #1d1d1d;
}

.work-card p {
    font-size: 15px;
    color: #555;
    margin-top: 8px;
}

.demo-btn {
    background: linear-gradient(90deg, #9b5cf6, #7a2ef7);
    color: #fff;
    padding: 12px 45px;
    border-radius: 50px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0px 8px 22px rgba(123, 54, 255, 0.5);
    cursor: pointer;
    transition: .3s;
}

.demo-btn:hover {
    opacity: .9;
}
.slide {
    width: 120px;          /* reduced from 200px */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;         /* reduced from 25px */
}

.slide-track {
    display: flex;
    width: calc(120px * 14);   /* update width accordingly */
    animation: scroll 22s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50px * 7));
    }
}
html {
    scroll-behavior: smooth;
}
 .theme-section {
      padding: 60px 0;
      text-align: center;
      background: #f9f9f9;
      position: relative;
    }

    .theme-section h2 {
      font-weight: 700;
      margin-bottom: 15px;
    }

    .theme-section p {
      font-size: 1rem;
      color: #555;
      max-width: 700px;
      margin: auto;
    }

    /* Swiper Styling */
    .swiper-container {
  padding-top: 30px;
  padding-bottom: 50px;
  width: 70%;
  margin: auto;
  overflow: visible;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.swiper-slide {
  width: 200px;  
  height: 450px; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 500px;
  height: 500px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.swiper-slide img:hover {
  transform: scale(1.05);
}


/* ⭐ FIXED IPHONE FRAME IN CENTER ⭐ */
.iphone-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 270px; 
  z-index: 10;
  pointer-events: none;
}

.iphone-frame img {
  width: 270px; 
  height: 520px; 
  margin-top: 122px;
}
.bg-hero {
  background-image: url('images/your-image.jpg'); /* change your path */
  background-size: cover;       /* full coverage */
  background-position: center;  /* centered */
  background-repeat: no-repeat; /* no repeat */
  padding: 80px 0;              /* adjust height */
}
 .correct {
            color: #28a745;
            font-weight: 600;
        }
        /* ICON COLORING */
.feature-list li {
    list-style: none;
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
    color: #000; /* text stays black */
}

/* ✔ Correct icon (Green) */
.feature-list li.correct::before {
    content: "✔";
    color: green;
    font-weight: bold;
    position: absolute;
    left: 12px;
    top: 7px;
}

/* ✖ Wrong icon (Red) */
.feature-list li.wrong::before {
    content: "✖";
    color: red;
    font-weight: bold;
    position: absolute;
    left: 12px;
    top: 7px;
    
}
img {
    width: 66px;
}
.brand-slider {
    overflow: hidden;
}

.slide-track {
    display: flex;
    align-items: center;
}

.slide {
    width: 180px;        /* same box for all logos */
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.slide img {
    max-width: 100%;
    max-height: 70px;   /* controls logo height */
    object-fit: contain;
}
.slide img {
    transition: 0.3s ease;
}

.slide img:hover {
    transform: scale(1.1);
}
.brand-slider {
    overflow: hidden;
}

.slide-track {
    display: flex;
    align-items: center;
}

/* Logo box */
.slide {
    width: 180px;
    height: 110px;
    margin: 0 10px;
    border: 1.5px solid #ddd;   /* border size */
    border-radius: 10px;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s ease;
}

/* Logo image */
.slide img {
    max-width: 130px;
    max-height: 60px;
    object-fit: contain;
}

/* Hover effect (optional) */
.slide:hover {
    border-color: #7a2ef7;
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.slide img {
    max-width: 100px;   /* reduce logo width */
    max-height: 40px;  /* reduce logo height */
    object-fit: contain;
}
.brand-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slide-track {
    display: flex;
    width: calc(180px * 14); /* total slides */
    animation: scroll 25s linear infinite;
}

.slide {
    width: 180px;
    height: 80px;            /* REDUCED HEIGHT */
    margin: 0 10px;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.slide img {
    max-width: 80px;       /* REDUCED LOGO WIDTH */
    max-height: 50px;      /* REDUCED LOGO HEIGHT */
    object-fit: contain;
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-180px * 7)); /* half slides */
    }
}

/* Pause on hover */
.brand-slider:hover .slide-track {
    animation-play-state: paused;
}

    /* 1. Main Section Styling */
    .process-container {
        background-color: #fcfaff;
        padding: 100px 0;
        overflow: hidden;
    }

    .process-header-box {
        margin-bottom: 60px;
    }

    .process-main-title {
        font-size: 42px;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 15px;
    }

    .process-tagline {
        color: #666;
        font-size: 18px;
        max-width: 600px;
        margin: 0 auto;
    }

    /* 2. The Step Modules (Cards) */
    .step-module {
        background: #ffffff;
        border-radius: 35px;
        padding: 50px 30px;
        height: 100%;
        position: relative;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid rgba(124, 58, 237, 0.08);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 1;
    }

    /* 3. The Visual Number (Replacing Icons) */
    .module-digit {
        font-size: 70px;
        font-weight: 900;
        line-height: 1;
        margin-bottom: 25px;
        background: linear-gradient(180deg, #9b5cf6, #D7D1F3);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transition: 0.5s ease;
    }

    .step-module:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 60px rgba(124, 58, 237, 0.12);
        border-color: #9b5cf6;
    }

    .step-module:hover .module-digit {
        transform: scale(1.2);
        filter: drop-shadow(0 10px 10px rgba(155, 92, 246, 0.3));
    }

    .module-title {
        font-size: 22px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 15px;
    }

    .module-text {
        font-size: 15px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 0;
    }

    /* 4. Connection Line Animation (Desktop only) */
    @media (min-width: 992px) {
        .module-col {
            position: relative;
        }
        .module-col:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 30%;
            right: -15%;
            width: 30%;
            height: 2px;
            background: linear-gradient(90deg, #D7D1F3, transparent);
            z-index: 0;
        }
    }

    /* 5. Custom Button Styling */
    .action-trigger-btn {
        background: linear-gradient(90deg, #7c3aed, #9b5cf6);
        color: white;
        padding: 16px 50px;
        border-radius: 100px;
        font-weight: 700;
        border: none;
        margin-top: 60px;
        box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
        transition: 0.4s;
    }

    .action-trigger-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(124, 58, 237, 0.6);
        color: white;
    }

    /* Animations on Entry */
    [data-aos="reveal-up"] {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease-out;
    }
    
    .module-col.aos-animate [data-aos="reveal-up"] {
        opacity: 1;
        transform: translateY(0);
    }
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

:root {
    --primary-color: #6366f1; /* Modern Indigo */
    --accent-color: #a855f7;
    --text-dark: #1e293b;
    --glass-bg: rgba(255, 255, 255, 0.8);
}

body { font-family: 'Poppins', sans-serif; }

/* Navbar Base Style */
.custom-navbar {
    padding: 15px 0;
    transition: all 0.4s ease-in-out;
    background: transparent;
    backdrop-filter: blur(0px);
}

/* Glassmorphism effect on scroll */
.custom-navbar.scrolled {
    padding: 10px 0;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Logo Animation */
.logo-img {
    height: 45px;
    transition: transform 0.3s ease;
}
.logo-img:hover {
    transform: scale(1.05);
}

/* Navigation Links */
.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

/* Animated Underline Effect */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Creative "Get Cards" Button */
.demo-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.demo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.5);
    color: white;
}

/* Mobile Menu Customization */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        margin-top: 15px;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
}   
.logo-img {
    height: 40px;
    width: 40px;
    transition: transform 0.3s ease;
} 
.slide {
    width: 81px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
} 
.footer-logo {
    width: 70px;
    margin-bottom: 20px;
}
         
.nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            margin: 0 10px;
            position: relative;
}

.nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: var(--primary-grad);
            transition: width 0.3s;
}

.nav-link:hover::after {
            width: 100%;
}
/* ===== Tablet ===== */
@media (max-width: 992px) {
    .phone-frame {
        width: 300px;
    }
}

/* ===== Mobile ===== */
@media (max-width: 576px) {

    .phone-wrapper {
        padding: 25px 10px;
    }

    .phone-frame {
        width: 250px;
        border-radius: 30px;
        padding: 10px;
    }

    .phone-screen {
        border-radius: 22px;
    }
}
.container img{
    width: px;
    height: ;
}